added config

This commit is contained in:
mrbesen 2019-01-04 12:02:57 +01:00
parent e161c16f35
commit e64628c7c5
Signed by: MrBesen
GPG Key ID: 596B2350DCD67504
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#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);