main: Fix 'N' clear new notification flag documentation
The documentation for the 'N' key wrongly stated it clears all notifications. But in the code we see that just the new notification flag is reset.
This commit is contained in:
2
main.cpp
2
main.cpp
@@ -773,7 +773,7 @@ public:
|
||||
private:
|
||||
bool key_handled_r = false; // r ... enable ringing, R ... disable ringing
|
||||
bool key_handled_m = false; // m ... let motor run, M ... stop motor
|
||||
bool key_handled_n = false; // n ... send notification, N ... clear all notifications
|
||||
bool key_handled_n = false; // n ... send notification, N ... clear new notification flag
|
||||
bool key_handled_b = false; // b ... connect Bluetooth, B ... disconnect Bluetooth
|
||||
bool key_handled_v = false; // battery Voltage and percentage, v ... increase, V ... decrease
|
||||
bool key_handled_c = false; // c ... charging, C ... not charging
|
||||
|
Reference in New Issue
Block a user