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