Skip to content

Commit 7f4172a

Browse files
committed
feat: added play and stop via joystick
1 parent d2aff07 commit 7f4172a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

dk-tiny/dk-tiny.ino

+4-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ void loop() {
127127
blockInput = 1;
128128
}
129129

130-
if (checkButton(TAButton1) && currentFileNum) {
130+
if ((joystickB.press || checkButton(TAButton1)) && currentFileNum) {
131131
if (doVideo)
132132
playVideo();
133133
}
@@ -561,8 +561,9 @@ void playVideo() {
561561
}
562562
debounce1 = 10;
563563
}
564-
if (!debounce2 && checkButton(TAButton2)) {
565-
break;
564+
joystickB.getPosition();
565+
if (!debounce2 && (checkButton(TAButton2) || joystickB.left)) {
566+
break; // stop video playback
566567
}
567568
if (showBar) {
568569
currentFrame = (long)(vidFile.curPosition() / ((96 * 64 * 2) + (1024 * 2)));

0 commit comments

Comments
 (0)