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