14 lines
394 B
C
14 lines
394 B
C
#include <stdbool.h>
|
|
|
|
// Copy this file to secrets.h and fill out the values
|
|
|
|
const bool wifi_enterprise = false;
|
|
const char *wifi_ssid = "Wifi-name";
|
|
const char *wifi_username = ""; // Only used if wifi_enterprise = true
|
|
const char *wifi_password = "password";
|
|
|
|
const char *mqtt_server = "example.hivemq.cloud";
|
|
const char *mqtt_username = "username";
|
|
const char *mqtt_password = "password";
|
|
|