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 8797452 + c3c354a commit ccba317Copy full SHA for ccba317
EInk_Bonnet_Weather_Station/weather.py
@@ -9,7 +9,6 @@
9
import digitalio
10
import busio
11
import board
12
-from adafruit_epd.epd import Adafruit_EPD
13
from adafruit_epd.ssd1675 import Adafruit_SSD1675
14
from weather_graphics import Weather_Graphics
15
@@ -22,6 +21,9 @@
22
21
# You'll need to get a token from openweathermap.org, looks like:
23
# 'b6907d289e10d714a6e88b30761fae22'
24
OPEN_WEATHER_TOKEN = ""
+
25
+# Use cityname, country code where countrycode is ISO3166 format.
26
+# E.g. "New York, US" or "London, GB"
27
LOCATION = "Manhattan, US"
28
DATA_SOURCE_URL = "http://api.openweathermap.org/data/2.5/weather"
29
0 commit comments