From f7cab978dcc2ddf8ba7be173538c79e9e608377f Mon Sep 17 00:00:00 2001
From: Dennis Eisold <de@itstall.de>
Date: Wed, 5 Feb 2020 15:14:26 +0100
Subject: [PATCH] Update settings.h

---
 wetterstation/settings.h | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/wetterstation/settings.h b/wetterstation/settings.h
index c54f4fe..638b330 100644
--- a/wetterstation/settings.h
+++ b/wetterstation/settings.h
@@ -1,24 +1,24 @@
 //
 // settings for WiFi connection
 //
-char * ssid     = "Sensors";                      // WiFi SSID
-char * password = "mySensorNetz";             // WiFi password
+char * ssid     = "YOUR_SSID";                      // WiFi SSID
+char * password = "YOUR_WLAN_PASSWORD";             // WiFi password
 
 //
 // MQTT Server
 //
 String frontendId = String(ESP.getChipId());          // Set chipId as frontendId
-const char* mqttHost = "mqtt.itstall.de";                   // Adresse des MQTT Servers
-const char* mqttUser = "wetterstation";                   // MQTT Username
-const char* mqttPass = "wetterstation";                   // MQTT Password
+const char* mqttHost = "MQTT_HOST";                   // Adresse des MQTT Servers
+const char* mqttUser = "MQTT_USER";                   // MQTT Username
+const char* mqttPass = "MQTT_PASS";                   // MQTT Password
 int mqttPort = 1883;                                  // 1883 - Ist der Standard TCP Port
 
 //
 // Settings for Backend
 //
-String backendPlz = "97453";
-String backendLngCode = "de";
-String backendCity = "Schonungen";
+String backendPlz = "YOUT_PLZ";
+String backendLngCode = "YOUT_LANDUAGE_CODE";
+String backendCity = "YOUR_CITY";
 
 //
 // settings
-- 
GitLab