1
0
Fork 0

Expose the time of the last change to the LED state (#17222)

This commit is contained in:
Jouke Witteveen 2022-07-02 13:57:05 +02:00 committed by GitHub
parent 2af2c5e109
commit 0112938140
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View file

@ -61,6 +61,9 @@ void led_set_kb(uint8_t usb_led);
bool led_update_user(led_t led_state);
bool led_update_kb(led_t led_state);
uint32_t last_led_activity_time(void); // Timestamp of the LED activity
uint32_t last_led_activity_elapsed(void); // Number of milliseconds since the last LED activity
#ifdef __cplusplus
}
#endif