Initial commit

This commit is contained in:
2023-12-20 22:52:04 +01:00
commit 678b65c9f8
12 changed files with 558 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include <stdint.h>
namespace NetworkConfig
{
const char ssid[] = "LebennigHuus";
const char password[] = "Punica-699";
}
namespace MqttConfig
{
const char server[] = "192.168.1.7";
const uint16_t port = 1883;
const char user[] = "kleiax";
const char password[] = "p?{$_~5%hBM7wrcFkr55KWr#";
}