-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
23 lines (20 loc) · 1.29 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Weather configuration parameters. See: https://openweathermap.org/current
weather_config = {
'appid': 'YOUR_OPENWEATHERMAP_API_KEY',
'units': 'imperial', # 'imperial' or 'metric'
'zip': '44094', # zip code
# If in a region without a zip code, comment the zip line above and uncomment one of the following:
# 'q': 'Willoughby, OH, USA',
# 'lat': '41.63', 'lon': '-81.41',
}
# Control which temperatures will be displayed cold (blue) and hot (red).
cold_temperature = 32 # If Celsius, 0 is a decent choice. If Fahrenheit, 32.
hot_tempertature = 99 # If Celsius, 38 is a decent choice. If Fahrenheit, 99.
weather_update_time = 300.0 # Seconds until refreshing weather data.
condition_show_time = 10.0 # Seconds to display the condition icon.
temperature_show_time = 15.0 # Seconds to display the temperature icon.
retry_time = 15.0 # Seconds to wait before retrying when there's an error.
image_brightness = .02 # Brightness to display the images. 0.0 to 1.0
image_orientation = 0 # Rotates the image so the device can be mounted in a rotated orientation. Values: 0, 1, 2, or 3.
hat_device = 'Unicorn HAT' # Which LED matrix is connected. Options: 'Unicorn HAT' or 'Unicorn HAT HD'
cache_dir = './temperature_images/' # Define an image cache that will be used to keep from re-generating gifs.