/ examples / esp_atcontrol_secrets.py
esp_atcontrol_secrets.py
 1  # This file is where you keep secret settings, passwords, and tokens!
 2  # If you put them in the code you risk committing that info or sharing it
 3  
 4  secrets = {
 5      "ssid": "my access point",
 6      "password": "my password",
 7      "timezone": -5,  # this is offset from UTC
 8      "github_token": "abcdefghij0123456789",
 9      "adafruit_io_user": "myusername",
10      "adafruit_io_key": "abcdefghij0123456789",
11  }