mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 11:26:25 +02:00
[ES] Fixed type (the second)
Signed-óff-by: Jim Martens <github@2martens.de>
This commit is contained in:
@ -60,8 +60,8 @@ void decrement() {
|
|||||||
void TC0_Handler()
|
void TC0_Handler()
|
||||||
{
|
{
|
||||||
TC_GetStatus(TC0, 0);
|
TC_GetStatus(TC0, 0);
|
||||||
boolean tasteGedruecktPlus = (digitalRead(buttonPlusPin) == LOW);
|
bool tasteGedruecktPlus = (digitalRead(buttonPlusPin) == LOW);
|
||||||
boolean tasteGedruecktMinus = (digitalRead(buttonMinusPin) == LOW);
|
bool tasteGedruecktMinus = (digitalRead(buttonMinusPin) == LOW);
|
||||||
|
|
||||||
if (tasteGedruecktPlus){
|
if (tasteGedruecktPlus){
|
||||||
++timesPressedPlus;
|
++timesPressedPlus;
|
||||||
|
|||||||
Reference in New Issue
Block a user