Skip to content

Commit f5a9840

Browse files
committed
Update Inkplate5_Crypto_Currency_Tracker.ino
1 parent 19669b3 commit f5a9840

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

examples/Inkplate5/Projects/Inkplate5_Crypto_Currency_Tracker/Inkplate5_Crypto_Currency_Tracker.ino

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,17 @@
3232
int timeZone = 2;
3333

3434
// Put in your ssid and password
35-
char ssid[] = "Soldered";
36-
char pass[] = "dasduino";
35+
char ssid[] = "";
36+
char pass[] = "";
3737

3838
// Delay between API calls in miliseconds (first 60 represents minutes so you can change to your need)
3939
#define DELAY_MS 3 * 60 * 1000
4040

4141
// OPTIONAL:
42-
// change to a different currency
43-
char currency[] = "stellar";
44-
char currencyAbbr[] = "XLM";
42+
// Change to a different currency
43+
// Use lowercase letters
44+
char currency[] = "bitcoin";
45+
char currencyAbbr[] = "BTC";
4546

4647
// You can find your currency id here:
4748
// https://www.coingecko.com/en/all-cryptocurrencies

0 commit comments

Comments
 (0)