don't retain volatile values

This commit is contained in:
2016-04-23 01:44:56 +02:00
parent 9b9e8db96a
commit 99ce953de3
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ void DeviceLdr::deviceLoop() {
float ldr_float = map(ldr, 0, 1023, 0, 10000) / 100.0;
Serial.print("LDR: ");
Serial.println(ldr_float);
if (!Homie.setNodeProperty(ldrNode, "value", String(ldr_float), true)) {
if (!Homie.setNodeProperty(ldrNode, "value", String(ldr_float), false)) {
Serial.println("Sending failed");
}
} else {