We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7f1aba + 77a633b commit d6361c1Copy full SHA for d6361c1
IoT_Party_Parrot/code.py
@@ -18,7 +18,7 @@
18
bear = secrets['bearer_token']
19
20
# query URL for tweets. looking for hashtag partyparrot sent to a specific username
21
-DATA_SOURCE = ('https://api.twitter.com/2/tweets/search/recent?query=#partyparrot to:blitzcitydiy')
+DATA_SOURCE = 'https://api.twitter.com/2/tweets/search/recent?query=#partyparrot to:blitzcitydiy'
22
# json data path to get most recent tweet's ID number
23
DATA_LOCATION = ["meta", "newest_id"]
24
@@ -33,7 +33,7 @@
33
matrix = Matrix(width=32, height=32)
34
display = matrix.display
35
36
-group = displayio.Group(max_size=20)
+group = displayio.Group()
37
38
# load in party parrot bitmap
39
parrot_bit, parrot_pal = adafruit_imageload.load("/partyParrotsTweet.bmp",
0 commit comments