Fixed behaviour in the falling phase PJ03 StarterKit

According to #2585 there was a "glitch" in the falling phase because of a
missing +2 in the first condition
This commit is contained in:
Arturo Guadalupi 2015-06-12 13:10:49 +02:00
parent b1a5038c69
commit 1d7bdb5050
1 changed files with 1 additions and 1 deletions

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);