Oops, bad calculation in comment

This commit is contained in:
Neale Pickett 2023-12-31 16:44:34 -07:00
parent deec112aee
commit a0a2b9dde5
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ void loop() {
// Send an update
HID().SendReport(0, (uint8_t *)&buttonState, 27);
// don't report more frequently than 1kHz
// don't report more frequently than 100Hz
// this doubles as debouncing logic
delay(10);
}