From 8e7ea527fcdc5e4c0cf1a8a6ca0a8e5d3a73ae03 Mon Sep 17 00:00:00 2001 From: Richard Genoud Date: Sun, 6 Oct 2019 18:49:29 +0200 Subject: [PATCH] underscores shoudn't be in hostnames --- .../kitchen_pilot_wire_control/kitchen_pilot_wire_control.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/soft/kitchen/kitchen_pilot_wire_control/kitchen_pilot_wire_control.ino b/soft/kitchen/kitchen_pilot_wire_control/kitchen_pilot_wire_control.ino index e9090af..72ed63d 100644 --- a/soft/kitchen/kitchen_pilot_wire_control/kitchen_pilot_wire_control.ino +++ b/soft/kitchen/kitchen_pilot_wire_control/kitchen_pilot_wire_control.ino @@ -6,12 +6,12 @@ #include "EspMQTTClient.h" EspMQTTClient client( - "rico2", + "rico", "xxxxxx", - "192.168.1.3", // MQTT Broker server ip + "192.168.1.2", // MQTT Broker server ip "MQTTUsername", // Can be omitted if not needed "MQTTPassword", // Can be omitted if not needed - "pilote_cuisine", // Client name that uniquely identify your device + "pilote-cuisine", // Client name that uniquely identify your device 1883 // The MQTT port, default to 1883. this line can be omitted );