Python RGB Matrix games and animations https://www.xythobuz.de/ledmatrix_v2.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.py 717B

123456789101112131415161718192021
  1. #!/usr/bin/env python3
  2. # ----------------------------------------------------------------------------
  3. # "THE BEER-WARE LICENSE" (Revision 42):
  4. # <xythobuz@xythobuz.de> wrote this file. As long as you retain this notice
  5. # you can do whatever you want with this stuff. If we meet some day, and you
  6. # think this stuff is worth it, you can buy me a beer in return. Thomas Buck
  7. # ----------------------------------------------------------------------------
  8. class Config:
  9. networks = [
  10. ("SSID_1", "PASS_1"),
  11. ("SSID_2", "USER_2", "PASS_2"),
  12. ]
  13. telegram_key = "API_KEY_HERE"
  14. telegram_whitelist = [
  15. "ALLOWED_CHAT_ID_HERE",
  16. ]
  17. weather_latlon = (YOUR_LAT_HERE, YOUR_LON_HERE)