Skip to content

Commit 029a29a

Browse files
committed
fix failing test
1 parent fdb38cc commit 029a29a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ports/espressif/boards/m5stack_cardputer/cardputer_keyboard.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ void cardputer_keyboard_init(void) {
110110
row_addr_pins, // row_addr_pins
111111
7, // num_column_pins
112112
column_pins, // column_pins
113+
true, // columns_to_anodes
114+
false, // transpose
113115
0.01f, // interval
114116
20, // max_events
115117
2 // debounce_threshold

shared-bindings/keypad_demux/DemuxKeyMatrix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
extern const mp_obj_type_t keypad_demux_demuxkeymatrix_type;
1313

14-
void common_hal_keypad_demux_demuxkeymatrix_construct(keypad_demux_demuxkeymatrix_obj_t *self, mp_uint_t num_row_addr_pins, const mcu_pin_obj_t *row_addr_pins[], mp_uint_t num_column_pins, const mcu_pin_obj_t *column_pins[], bool columns_to_anodes, bool transpose, mp_float_t interval, size_t max_events, uint8_t debounce_threshold);
14+
void common_hal_keypad_demux_demuxkeymatrix_construct(keypad_demux_demuxkeymatrix_obj_t *self, mp_uint_t num_row_addr_pins, const mcu_pin_obj_t *row_addr_pins[], mp_uint_t num_column_pins, const mcu_pin_obj_t *column_pins[], bool columns_to_anodes, bool transpose, mp_float_t interval, size_t max_events, uint8_t debounce_threshold);
1515

1616
void common_hal_keypad_demux_demuxkeymatrix_deinit(keypad_demux_demuxkeymatrix_obj_t *self);
1717

0 commit comments

Comments
 (0)