Arduino/nudelmaschine/esp/config.h

13 lines
253 B
C

#pragma once
#include <ESP8266WiFi.h>
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);