/ examples / esp32spi_secrets.py
esp32spi_secrets.py
 1  # SPDX-FileCopyrightText: 2019 ladyada for Adafruit Industries
 2  # SPDX-License-Identifier: MIT
 3  
 4  # This file is where you keep secret settings, passwords, and tokens!
 5  # If you put them in the code you risk committing that info or sharing it
 6  
 7  secrets = {
 8      "ssid": "yourssid",
 9      "password": "yourpassword",
10      "timezone": "America/New_York",  # Check http://worldtimeapi.org/timezones
11      "aio_username": "youraiousername",
12      "aio_key": "youraiokey",
13  }