change wifi credentials

This commit is contained in:
Joe Tretter
2022-03-29 09:44:16 -05:00
parent 0589bcbf91
commit 7b5b83e199
3 changed files with 13 additions and 10 deletions

View File

@@ -1,7 +1,10 @@
{ {
// See http://go.microsoft.com/fwlink/?LinkId=827846 // See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format // for the documentation about the extensions.json format
"recommendations": [ "recommendations": [
"platformio.platformio-ide" "platformio.platformio-ide"
] ],
} "unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}

View File

@@ -32,10 +32,10 @@ decode_results results; // Somewhere to store the results
// Update these with values suitable for your network. // Update these with values suitable for your network.
const char* ssid = "JoeNelsDarlings"; const char* ssid = "JoNelsDarlings";
const char* password = "Paris2016"; const char* password = "Paris2016";
const char* mqtt_server = "mqtt.ddns.kawomi.com"; const char* mqtt_server = "mqtt.ddns.kawomi.com";
const String room_name = "IRBedroom"; const String room_name = "IRLivingroom";
//const String room_name = "IRBedroom"; //const String room_name = "IRBedroom";
WiFiClient espClient; WiFiClient espClient;

View File

@@ -11,7 +11,7 @@ Send the DHT11 Measured Temperature via MQTT
// Update these with values suitable for your network. // Update these with values suitable for your network.
const char* ssid = "Jnd-Front"; const char* ssid = "JoNelsDarlings";
const char* password = "Paris2016"; const char* password = "Paris2016";
const char* mqtt_server = "mqtt.ddns.kawomi.com"; const char* mqtt_server = "mqtt.ddns.kawomi.com";