diff --git a/es/blatt2/uebung2-1/uebung2-1.ino b/es/blatt2/uebung2-1/uebung2-1.ino index 2bf6bc6..3e4f130 100644 --- a/es/blatt2/uebung2-1/uebung2-1.ino +++ b/es/blatt2/uebung2-1/uebung2-1.ino @@ -60,8 +60,8 @@ void decrement() { void TC0_Handler() { TC_GetStatus(TC0, 0); - boolean tasteGedruecktPlus = (digitalRead(buttonPlusPin) == LOW); - boolean tasteGedruecktMinus = (digitalRead(buttonMinusPin) == LOW); + bool tasteGedruecktPlus = (digitalRead(buttonPlusPin) == LOW); + bool tasteGedruecktMinus = (digitalRead(buttonMinusPin) == LOW); if (tasteGedruecktPlus){ ++timesPressedPlus;