From 00038748dc809d2cc82b03481cb3fb602518444b Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Wed, 22 Apr 2015 18:54:43 +0200 Subject: [PATCH] [ES] Fixed type (the second) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-óff-by: Jim Martens --- es/blatt2/uebung2-1/uebung2-1.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;