12 lines
330 B
Plaintext
12 lines
330 B
Plaintext
#pragma once
|
|
#include <KlubhausCore.h>
|
|
|
|
// Copy this file to secrets.h and fill in your credentials.
|
|
// secrets.h is gitignored.
|
|
|
|
static const WiFiCred wifiNetworks[] = {
|
|
{ "Your_SSID_1", "password1" },
|
|
{ "Your_SSID_2", "password2" },
|
|
};
|
|
static const int wifiNetworkCount = sizeof(wifiNetworks) / sizeof(wifiNetworks[0]);
|