9 lines
186 B
C
9 lines
186 B
C
#ifndef THESECRETS_H
|
|
#define THESECRETS_H
|
|
|
|
const char *ssid = "Wifi";
|
|
const char *psk = "password";
|
|
const char *api_username = "username";
|
|
const char *api_password = "password";
|
|
|
|
#endif
|