-
Notifications
You must be signed in to change notification settings - Fork 793
Secrets Cleanup: C and E #2991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Secrets Cleanup: C and E #2991
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. removed and turned into settings.toml per discord convo |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # SPDX-FileCopyrightText: 2020 Limor Fried for Adafruit Industries | ||
| # | ||
| # SPDX-License-Identifier: MIT | ||
|
|
||
| # This file is where you keep private settings, passwords, and tokens! | ||
| # If you put them in the code you risk committing that info or sharing it | ||
|
|
||
|
|
||
| CIRCUITPY_WIFI_SSID="your-wifi-ssid" | ||
| CIRCUITPY_WIFI_PASSWORD="your-wifi-password" | ||
| timezone="America/New_York" # http://worldtimeapi.org/timezones | ||
| openweather_token="putYourOpenWeatherTokenHere" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,8 +4,7 @@ | |
|
|
||
| """ | ||
| This demo is designed for the Kaluga development kit version 1.3 with the | ||
| ILI9341 display. Your secrets.py must be populated with your wifi credentials | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this one doesn't use wifi or AIO |
||
| and your Adafruit IO credentials. | ||
| ILI9341 display. | ||
| """ | ||
|
|
||
| from ulab import numpy as np | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # SPDX-FileCopyrightText: 2020 Limor Fried for Adafruit Industries | ||
| # | ||
| # SPDX-License-Identifier: MIT | ||
|
|
||
| # This file is where you keep private settings, passwords, and tokens! | ||
| # If you put them in the code you risk committing that info or sharing it | ||
|
|
||
| CIRCUITPY_WIFI_SSID="your-wifi-ssid" | ||
| CIRCUITPY_WIFI_PASSWORD="your-wifi-password" | ||
| timezone="America/New_York" # http://worldtimeapi.org/timezones | ||
| alphavantage_key="GRABAFREEKEYONLINE" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
much simpler with using defaults