14 lines
231 B
Plaintext
14 lines
231 B
Plaintext
|
#pragma once
|
||
|
|
||
|
#include <array>
|
||
|
|
||
|
struct NetInfo {
|
||
|
const char *ssid;
|
||
|
const char *password;
|
||
|
};
|
||
|
|
||
|
const std::array<NetInfo, 2> NETWORKS {
|
||
|
NetInfo{"SomeNetwork", "ThePassword"},
|
||
|
NetInfo{"SomeOtherNetwork", "TheOtherPassword"}
|
||
|
};
|