diff --git a/nudelmaschine/esp/config.h b/nudelmaschine/esp/config.h new file mode 100644 index 0000000..c94ce49 --- /dev/null +++ b/nudelmaschine/esp/config.h @@ -0,0 +1,12 @@ +#pragma once +#include + +const char* ssid = "SSID"; +const char* password = "WPA2PSK"; + +const char* host = "Host"; +const uint16_t port = 1234; + +IPAddress ip(192,168,1,2); +IPAddress gateway(192,168,1,1); +IPAddress subnet(255,255,255,0);