10 lines
186 B
C
10 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
|