mirror of
https://github.com/equant/apple2idiot.git
synced 2024-11-15 06:09:03 +00:00
13 lines
304 B
Plaintext
13 lines
304 B
Plaintext
#ifndef CREDENTIALS_H
|
|
#define CREDENTIALS_H
|
|
|
|
#include "credentials.h"
|
|
// copy credentials.h.sample to credentials.h and edit
|
|
// so it contains your passwords and tokens.
|
|
|
|
#define WIFI_SSID "XXXXXXXXXXXXXXX";
|
|
#define WIFI_PASSWORD "XXXXXXXXXXXXXXX";
|
|
#define WEATHER_ACCESS_TOKEN "XXXXXXXXXXXXXXX"
|
|
|
|
#endif
|