1
0
mirror of https://github.com/2martens/uni.git synced 2026-05-06 19:36:26 +02:00

[ES] Fixed type (the second)

Signed-óff-by: Jim Martens <github@2martens.de>
This commit is contained in:
2015-04-22 18:54:43 +02:00
parent acfbc6cb30
commit 00038748dc

View File

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