mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-19 08:17:26 +00:00
changed ordering of constructor
This commit is contained in:
parent
35b13847e6
commit
8d5afc0b00
@ -146,12 +146,14 @@ unsigned char TCA8418LongPressMap[_TCA8418_NUM_KEYS] = {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
TCA8418Keyboard::TCA8418Keyboard() : m_wire(nullptr), m_addr(0), readCallback(nullptr), writeCallback(nullptr), tap_interval(0), backlight_on(true)
|
TCA8418Keyboard::TCA8418Keyboard() : m_wire(nullptr), m_addr(0), readCallback(nullptr), writeCallback(nullptr)
|
||||||
{
|
{
|
||||||
state = Init;
|
state = Init;
|
||||||
last_key = -1;
|
last_key = -1;
|
||||||
last_tap = 0L;
|
last_tap = 0L;
|
||||||
char_idx = 0;
|
char_idx = 0;
|
||||||
|
tap_interval = 0;
|
||||||
|
backlight_on = true;
|
||||||
queue = "";
|
queue = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user