diff options
-rw-r--r-- | Cart_Reader/Cart_Reader.ino | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Cart_Reader/Cart_Reader.ino b/Cart_Reader/Cart_Reader.ino index f83ea2d..8ff5c1c 100644 --- a/Cart_Reader/Cart_Reader.ino +++ b/Cart_Reader/Cart_Reader.ino @@ -3210,6 +3210,11 @@ uint8_t checkButton() { return 3;
}
+ //Long Press (simulate)
+ else if ((incomingByte == 'l') || (incomingByte == 'L')) {
+ return 4;
+ }
+
return 0;
}
|