fixed leap year error

This commit is contained in:
Erik
2019-08-13 16:38:37 +02:00
committed by GitHub
parent fe2abf0495
commit d63e5e58e0

View File

@@ -1710,7 +1710,7 @@ void displayData(void)
} }
// display Leap Year LED // display Leap Year LED
if (leapYear = 1) if (leapYear == 1)
{ {
digitalWrite(LED_LEAPYEAR, HIGH); digitalWrite(LED_LEAPYEAR, HIGH);
} }