#pragma once #include struct NetInfo { const char *ssid; const char *password; }; const std::array NETWORKS { NetInfo{"SomeNetwork", "ThePassword"}, NetInfo{"SomeOtherNetwork", "TheOtherPassword"} };