10 lines
184 B
C
10 lines
184 B
C
|
#ifndef _THE_SECRETS_H_
|
||
|
#define _THE_SECRETS_H_
|
||
|
|
||
|
const char *ssid = "Wifi";
|
||
|
const char *psk = "password";
|
||
|
const char *username = "username";
|
||
|
const char *password = "password";
|
||
|
|
||
|
#endif
|