11 lines
208 B
C
11 lines
208 B
C
#ifndef WIFI_CREDENTIALS_H
|
|
#define WIFI_CREDENTIALS_H
|
|
|
|
// TODO: make this a config.h
|
|
|
|
#define SSID "your_wifi_ssid"
|
|
#define PASSWORD "your_wifi_password"
|
|
#define AUTH_MODE WIFI_AUTH_WPA2_PSK
|
|
|
|
#endif
|