This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Wire.h> | |
| #include <Adafruit_AMG88xx.h> | |
| Adafruit_AMG88xx amg; | |
| float pixels[AMG88xx_PIXEL_ARRAY_SIZE]; | |
| void setup() { | |
| Serial.begin(9600); | |
| Serial.println(F("AMG88xx pixels")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from random import randint, choice | |
| import time | |
| import music | |
| import speech | |
| import radio | |
| from microbit import * | |
| from neopixel import NeoPixel | |
| class NeoPixelLight: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| from pandas import DataFrame | |
| from bs4 import BeautifulSoup | |
| result = [] | |
| query = 'site%3Amorningbrew.com%2Fdaily%2Fissues+%22Three+Headlines+and+a+Lie' | |
| def get_page(url): | |
| response = requests.get(url) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| letters = list("abcdefghijklmnopqrstuvwxyz") | |
| # Main function | |
| def caesar_shift(text, amount): | |
| result = [] | |
| for character in text: | |
| # char not in letters, retain punctuation | |
| if character.lower() not in letters: | |
| result.append(character) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #### Issue description | |
| #### Steps to reproduce the issue | |
| 1. | |
| 2. | |
| 3. |