This commit is contained in:
Manuel Weiser 2018-07-09 08:46:09 +02:00
parent a7511316b1
commit c89c5d8352
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
.piolibdeps
.clang_complete
.gcc-flags.json
replacements.txt

View File

@ -14,4 +14,4 @@ board = esp12e
framework = arduino
upload_port = esp_filwage.local ;192.168.1.134
upload_flags = --auth=***REMOVED***
upload_flags = --auth=druffmann77

View File

@ -19,9 +19,9 @@ const int spule = 150; // Gewicht Spule in g !! setze auf 0 zum Eichen !!
const int ausgleich = 4462 + spule; // Grundgewicht für Eichung
const char* ssid = "iApfel";
const char* password = "***REMOVED***";
const char* password = "***PASSWORD***";
const char* mqtt_server = "192.168.1.5";
const char* ota_password = "***REMOVED***";
const char* ota_password = "***PASSWORD***";
String esp = "esp_" + String(esp_id);
char* esp_name = &esp[0u];