1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Merge pull request #3326 from agdl/StarterKitPJ03_fix

Fixed behaviour in the falling phase PJ03 StarterKit
This commit is contained in:
Federico Fissore
2015-06-12 14:20:00 +02:00

View File

@ -60,7 +60,7 @@ void loop() {
// if the current temperature is lower than the baseline
// turn off all LEDs
if (temperature < baselineTemp) {
if (temperature < baselineTemp + 2) {
digitalWrite(2, LOW);
digitalWrite(3, LOW);
digitalWrite(4, LOW);