diff --git a/ArduinoProps.zip b/ArduinoProps.zip index f756167..4552d39 100644 Binary files a/ArduinoProps.zip and b/ArduinoProps.zip differ diff --git a/examples/BlinkOnWifiProps/BlinkOnWifiProps.ino b/examples/BlinkOnWifiProps/BlinkOnWifiProps.ino index 39e4052..11fabbb 100644 --- a/examples/BlinkOnWifiProps/BlinkOnWifiProps.ino +++ b/examples/BlinkOnWifiProps/BlinkOnWifiProps.ino @@ -17,10 +17,6 @@ const char* ssid = ""; const char *passphrase = ""; -// Builtin led is not available with the shield -#undef LED_BUILTIN -#define LED_BUILTIN 8 - // If you're running xcape.io Room software you have to respect props inbox/outbox // topicw syntax: Room/[escape room name]/Props/[propsname]/inbox|outbox // https://xcape.io/go/room @@ -31,6 +27,10 @@ WifiProps props(u8"Arduino Blink", // as MQTT client id, should be unique per cl "192.168.1.53", // your MQTT server IP address 1883); // your MQTT server port; +// Builtin led is not available with the shield +#undef LED_BUILTIN +#define LED_BUILTIN 8 + PropsDataLogical clignoter(u8"clignote", u8"oui", u8"non", true); PropsDataLogical led(u8"led"); PropsDataText rssi(u8"rssi");