10 lines
221 B
Plaintext
10 lines
221 B
Plaintext
device airConditioner = "d0";
|
|
device gasSensor = "d1";
|
|
|
|
loop {
|
|
yield();
|
|
let indoorTemp = loadFromDevice(gasSensor, "Temperature");
|
|
let shouldSet = indoorTemp > 30c;
|
|
setOnDevice(airConditioner, "On", shouldSet);
|
|
}
|