8 lines
157 B
C
8 lines
157 B
C
#ifndef WIFI_CREDENTIALS_H
|
|
#define WIFI_CREDENTIALS_H
|
|
|
|
const char WIFI_SSID[] = "your-wifi-name";
|
|
const char WIFI_PASSWORD[] = "your-wifi-password";
|
|
|
|
#endif
|