Skip to content

Commit fd6379d

Browse files
committed
Add DJ turntable ticks per revolution comment
1 parent 0a0cf9c commit fd6379d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/DJ/DJ_Demo/DJ_Demo.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void loop() {
4848
delay(1000);
4949
}
5050
else {
51-
// Read the turntable, basic (-30-29. Clockwise = positive, faster = larger)
51+
// Read the turntable, basic (-30-29. Clockwise = positive, faster = larger). ~900 ticks per revolution.
5252
int turntable = dj.turntable();
5353

5454
Serial.print("The turntable is ");

src/controllers/DJTurntable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ namespace NintendoExtensionCtrl {
6868
Both,
6969
};
7070

71-
int8_t turntable() const; // 6 bits, -30-29. Clockwise = positive, faster = larger.
71+
int8_t turntable() const; // 6 bits, -30-29. Clockwise = positive, faster = larger. ~900 ticks per revolution.
7272

7373
boolean buttonGreen() const;
7474
boolean buttonRed() const;

0 commit comments

Comments
 (0)