diff options
| author | Tait Berlette <54515877+taitberlette@users.noreply.github.com> | 2021-03-30 23:10:24 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2021-06-03 20:43:38 (GMT) |
| commit | 9ded8e28a69df48fe02e82caed7cd48e4be02b8d (patch) | |
| tree | f8667e189faa19935063e3e034acfbb8d7738a93 /wasp/boards/simulator/main.py | |
| parent | e76a4afd8550145d4c43b3f1513b2fd209af8dd1 (diff) | |
Added weather application.
Signed-off-by: Tait Berlette <54515877+taitberlette@users.noreply.github.com>
Diffstat (limited to 'wasp/boards/simulator/main.py')
| -rw-r--r-- | wasp/boards/simulator/main.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/wasp/boards/simulator/main.py b/wasp/boards/simulator/main.py index 78a1168..618fae5 100644 --- a/wasp/boards/simulator/main.py +++ b/wasp/boards/simulator/main.py @@ -13,6 +13,14 @@ wasp.system.set_music_info({ 'artist': 'Dreams of Bamboo', }) +wasp.system.set_weather_info({ + 'temp': '22', + 'hum': '100%', + 'txt': 'Cloudy', + 'wind': '25km/h', + 'loc': 'Toronto' +}) + # Increase the display blanking time to avoid spamming the console # with backlight activations. |
