# -*- coding: utf-8 -*- """Configuration File This file is where you keep secret settings, passwords, and tokens! If you put them in the code you risk committing that info or sharing it you need to upload that file also on the Pico, even if you are just testing your scripts. """ ### Board Configuration ### ## Status LED ## # LED can show you the status of the running scripts # e.g. Wifi Connection Status Code ledstatus = True ## LightSleep Mode ## # Using LightSleep mode of Pico W to save power (True) just a Loop when "False" usinglightsleep = True ## Wifi ## # Wifi Connection Settings wifissid = "" wifipassword = "" # Set a hostname wifihostname = "" # Which Wifi Country Code? wificountrycode = "" # "DE" for example # Wifi Access Point Settings wifiapssid = "" wifiappassword = "" ### MQTT Broker ### mqttbroker = "" mqttport = 1883 # 8883 for TLS mqttusername = "" mqttpassword = "