2021-06-14 20:54:43 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2021 Dan Halbert for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lib/utils/context_manager_helpers.h"
|
2021-06-17 12:02:54 -04:00
|
|
|
#include "py/binary.h"
|
2021-06-16 15:27:59 -04:00
|
|
|
#include "py/objproperty.h"
|
2021-06-14 20:54:43 -04:00
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "shared-bindings/keypad/Event.h"
|
|
|
|
#include "shared-bindings/keypad/KeyMatrix.h"
|
|
|
|
#include "shared-bindings/microcontroller/Pin.h"
|
|
|
|
#include "shared-bindings/util.h"
|
|
|
|
|
|
|
|
//| class KeyMatrix:
|
|
|
|
//| """Manage a 2D matrix of keys with row and column pins."""
|
|
|
|
//|
|
2021-06-23 09:18:40 -04:00
|
|
|
//| def __init__(self, row_pins: Sequence[microcontroller.Pin], column_pins: Sequence[microcontroller.Pin], columns_to_anodes: bool = True, interval: float = 0.020, max_events: int = 64) -> None:
|
2021-06-14 20:54:43 -04:00
|
|
|
//| """
|
2021-06-15 11:15:09 -04:00
|
|
|
//| Create a `Keys` object that will scan the key matrix attached to the given row and column pins.
|
2021-06-23 09:18:40 -04:00
|
|
|
//| There should not be any external pull-ups or pull-downs on the matrix:
|
|
|
|
//| ``KeyMatrix`` enables internal pull-ups or pull-downs on the pins as necessary.
|
2021-06-14 20:54:43 -04:00
|
|
|
//|
|
|
|
|
//| The keys are numbered sequentially from zero. A key number can be computed
|
2021-06-23 09:18:40 -04:00
|
|
|
//| by ``row * len(column_pins) + column``.
|
2021-06-14 20:54:43 -04:00
|
|
|
//|
|
2021-06-16 15:27:59 -04:00
|
|
|
//| An `EventQueue` is created when this object is created and is available in the `events` attribute.
|
|
|
|
//|
|
2021-06-15 11:15:09 -04:00
|
|
|
//| :param Sequence[microcontroller.Pin] row_pins: The pins attached to the rows.
|
2021-06-23 09:18:40 -04:00
|
|
|
//| :param Sequence[microcontroller.Pin] column_pins: The pins attached to the colums.
|
2021-06-18 12:03:47 -04:00
|
|
|
//| :param bool columns_to_anodes: Default ``True``.
|
|
|
|
//| If the matrix uses diodes, the diode anodes are typically connected to the column pins,
|
|
|
|
//| and the cathodes should be connected to the row pins. If your diodes are reversed,
|
|
|
|
//| set ``columns_to_anodes`` to ``False``.
|
2021-06-23 09:18:40 -04:00
|
|
|
//| :param float interval: Scan keys no more often than ``interval`` to allow for debouncing.
|
|
|
|
//| ``interval`` is in float seconds. The default is 0.020 (20 msecs).
|
2021-06-16 15:27:59 -04:00
|
|
|
//| :param int max_events: maximum size of `events` `EventQueue`:
|
2021-06-14 20:54:43 -04:00
|
|
|
//| maximum number of key transition events that are saved.
|
|
|
|
//| Must be >= 1.
|
|
|
|
//| If a new event arrives when the queue is full, the oldest event is discarded.
|
|
|
|
//| """
|
|
|
|
//| ...
|
|
|
|
|
|
|
|
STATIC mp_obj_t keypad_keymatrix_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
|
|
|
|
keypad_keymatrix_obj_t *self = m_new_obj(keypad_keymatrix_obj_t);
|
|
|
|
self->base.type = &keypad_keymatrix_type;
|
2021-06-23 09:18:40 -04:00
|
|
|
enum { ARG_row_pins, ARG_column_pins, ARG_columns_to_anodes, ARG_interval, ARG_max_events };
|
2021-06-14 20:54:43 -04:00
|
|
|
static const mp_arg_t allowed_args[] = {
|
|
|
|
{ MP_QSTR_row_pins, MP_ARG_REQUIRED | MP_ARG_OBJ },
|
2021-06-23 09:18:40 -04:00
|
|
|
{ MP_QSTR_column_pins, MP_ARG_REQUIRED | MP_ARG_OBJ },
|
2021-06-18 12:03:47 -04:00
|
|
|
{ MP_QSTR_columns_to_anodes, MP_ARG_KW_ONLY | MP_ARG_BOOL, {.u_bool = true} },
|
2021-06-21 12:13:39 -04:00
|
|
|
{ MP_QSTR_interval, MP_ARG_KW_ONLY | MP_ARG_OBJ, {.u_obj = MP_OBJ_NULL} },
|
2021-06-15 11:15:09 -04:00
|
|
|
{ MP_QSTR_max_events, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = 64} },
|
2021-06-14 20:54:43 -04:00
|
|
|
};
|
|
|
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
|
|
|
mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
|
|
|
|
|
|
|
mp_obj_t row_pins = args[ARG_row_pins].u_obj;
|
|
|
|
// mp_obj_len() will be >= 0.
|
|
|
|
const size_t num_row_pins = (size_t)MP_OBJ_SMALL_INT_VALUE(mp_obj_len(row_pins));
|
|
|
|
|
2021-06-23 09:18:40 -04:00
|
|
|
mp_obj_t column_pins = args[ARG_column_pins].u_obj;
|
|
|
|
const size_t num_column_pins = (size_t)MP_OBJ_SMALL_INT_VALUE(mp_obj_len(column_pins));
|
2021-06-14 20:54:43 -04:00
|
|
|
|
2021-06-21 12:13:39 -04:00
|
|
|
const mp_float_t interval =
|
|
|
|
mp_arg_validate_obj_float_non_negative(args[ARG_interval].u_obj, 0.020f, MP_QSTR_interval);
|
|
|
|
const size_t max_events = (size_t)mp_arg_validate_int_min(args[ARG_max_events].u_int, 1, MP_QSTR_max_events);
|
2021-06-14 20:54:43 -04:00
|
|
|
|
|
|
|
mcu_pin_obj_t *row_pins_array[num_row_pins];
|
2021-06-23 09:18:40 -04:00
|
|
|
mcu_pin_obj_t *column_pins_array[num_column_pins];
|
2021-06-14 20:54:43 -04:00
|
|
|
|
2021-06-15 11:15:09 -04:00
|
|
|
for (size_t row = 0; row < num_row_pins; row++) {
|
2021-06-14 20:54:43 -04:00
|
|
|
mcu_pin_obj_t *pin =
|
2021-06-15 11:15:09 -04:00
|
|
|
validate_obj_is_free_pin(mp_obj_subscr(row_pins, MP_OBJ_NEW_SMALL_INT(row), MP_OBJ_SENTINEL));
|
|
|
|
row_pins_array[row] = pin;
|
2021-06-14 20:54:43 -04:00
|
|
|
}
|
|
|
|
|
2021-06-23 09:18:40 -04:00
|
|
|
for (size_t column = 0; column < num_column_pins; column++) {
|
2021-06-14 20:54:43 -04:00
|
|
|
mcu_pin_obj_t *pin =
|
2021-06-23 09:18:40 -04:00
|
|
|
validate_obj_is_free_pin(mp_obj_subscr(column_pins, MP_OBJ_NEW_SMALL_INT(column), MP_OBJ_SENTINEL));
|
|
|
|
column_pins_array[column] = pin;
|
2021-06-14 20:54:43 -04:00
|
|
|
}
|
|
|
|
|
2021-08-10 19:18:21 -04:00
|
|
|
for (size_t row = 0; row < num_row_pins; row++) {
|
|
|
|
for (size_t row2 = row + 1; row2 < num_row_pins; row2++) {
|
|
|
|
if (row_pins_array[row] == row_pins_array[row2]) {
|
|
|
|
mp_raise_ValueError(translate("Row or Column pin duplicated"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t column = 0; column < num_column_pins; column++) {
|
|
|
|
if (row_pins_array[row] == column_pins_array[column]) {
|
|
|
|
mp_raise_ValueError(translate("Row or Column pin duplicated"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t column = 0; column < num_column_pins; column++) {
|
|
|
|
for (size_t column2 = column + 1; column2 < num_column_pins; column2++) {
|
|
|
|
if (column_pins_array[column] == column_pins_array[column2]) {
|
|
|
|
mp_raise_ValueError(translate("Row or Column pin duplicated"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-23 09:18:40 -04:00
|
|
|
common_hal_keypad_keymatrix_construct(self, num_row_pins, row_pins_array, num_column_pins, column_pins_array, args[ARG_columns_to_anodes].u_bool, interval, max_events);
|
2021-06-14 20:54:43 -04:00
|
|
|
return MP_OBJ_FROM_PTR(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
//| def deinit(self) -> None:
|
|
|
|
//| """Stop scanning and release the pins."""
|
|
|
|
//| ...
|
|
|
|
//|
|
|
|
|
STATIC mp_obj_t keypad_keymatrix_deinit(mp_obj_t self_in) {
|
|
|
|
keypad_keymatrix_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
common_hal_keypad_keymatrix_deinit(self);
|
|
|
|
return MP_ROM_NONE;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(keypad_keymatrix_deinit_obj, keypad_keymatrix_deinit);
|
|
|
|
|
|
|
|
//| def __enter__(self) -> KeyMatrix:
|
|
|
|
//| """No-op used by Context Managers."""
|
|
|
|
//| ...
|
|
|
|
//|
|
|
|
|
// Provided by context manager helper.
|
|
|
|
|
|
|
|
//| def __exit__(self) -> None:
|
|
|
|
//| """Automatically deinitializes when exiting a context. See
|
|
|
|
//| :ref:`lifetime-and-contextmanagers` for more info."""
|
|
|
|
//| ...
|
|
|
|
//|
|
|
|
|
STATIC mp_obj_t keypad_keymatrix___exit__(size_t n_args, const mp_obj_t *args) {
|
|
|
|
(void)n_args;
|
|
|
|
common_hal_keypad_keymatrix_deinit(args[0]);
|
|
|
|
return MP_ROM_NONE;
|
|
|
|
}
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(keypad_keymatrix___exit___obj, 4, 4, keypad_keymatrix___exit__);
|
|
|
|
|
|
|
|
STATIC void check_for_deinit(keypad_keymatrix_obj_t *self) {
|
|
|
|
if (common_hal_keypad_keymatrix_deinited(self)) {
|
|
|
|
raise_deinited_error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-23 14:54:52 -04:00
|
|
|
//| def reset(self) -> None:
|
|
|
|
//| """Reset the internal state of the scanner to assume that all keys are now released.
|
|
|
|
//| Any key that is already pressed at the time of this call will therefore immediately cause
|
|
|
|
//| a new key-pressed event to occur.
|
|
|
|
//| """
|
|
|
|
//| ...
|
|
|
|
//|
|
|
|
|
STATIC mp_obj_t keypad_keymatrix_reset(mp_obj_t self_in) {
|
|
|
|
keypad_keymatrix_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
2021-06-23 15:42:31 -04:00
|
|
|
check_for_deinit(self);
|
2021-06-23 14:54:52 -04:00
|
|
|
|
|
|
|
common_hal_keypad_keymatrix_reset(self);
|
|
|
|
return MP_ROM_NONE;
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(keypad_keymatrix_reset_obj, keypad_keymatrix_reset);
|
|
|
|
|
2021-06-23 09:18:40 -04:00
|
|
|
//| key_count: int
|
2021-06-17 12:02:54 -04:00
|
|
|
//| """The number of keys that are being scanned. (read-only)
|
|
|
|
//| """
|
|
|
|
//|
|
2021-06-23 09:18:40 -04:00
|
|
|
STATIC mp_obj_t keypad_keymatrix_get_key_count(mp_obj_t self_in) {
|
2021-06-17 12:02:54 -04:00
|
|
|
keypad_keymatrix_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
2021-06-23 15:42:31 -04:00
|
|
|
check_for_deinit(self);
|
|
|
|
|
2021-06-23 09:18:40 -04:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(common_hal_keypad_keymatrix_get_key_count(self));
|
2021-06-17 12:02:54 -04:00
|
|
|
}
|
2021-06-23 09:18:40 -04:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(keypad_keymatrix_get_key_count_obj, keypad_keymatrix_get_key_count);
|
2021-06-17 12:02:54 -04:00
|
|
|
|
2021-06-23 09:18:40 -04:00
|
|
|
const mp_obj_property_t keypad_keymatrix_key_count_obj = {
|
2021-06-17 12:02:54 -04:00
|
|
|
.base.type = &mp_type_property,
|
2021-06-23 09:18:40 -04:00
|
|
|
.proxy = {(mp_obj_t)&keypad_keymatrix_get_key_count_obj,
|
2021-06-17 12:02:54 -04:00
|
|
|
MP_ROM_NONE,
|
|
|
|
MP_ROM_NONE},
|
|
|
|
};
|
|
|
|
|
2021-06-23 09:18:40 -04:00
|
|
|
//| def key_number_to_row_column(self, row: int, column: int) -> Tuple[int]:
|
|
|
|
//| """Return the row and column for the given key number.
|
|
|
|
//| The row is ``key_number // len(column_pins)``.
|
|
|
|
//| The column is ``key_number % len(column_pins)``.
|
|
|
|
//|
|
|
|
|
//| :return: ``(row, column)``
|
|
|
|
//| :rtype: Tuple[int]
|
|
|
|
//| """
|
|
|
|
//| ...
|
|
|
|
//|
|
|
|
|
STATIC mp_obj_t keypad_keymatrix_key_number_to_row_column(mp_obj_t self_in, mp_obj_t key_number_in) {
|
|
|
|
keypad_keymatrix_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
check_for_deinit(self);
|
|
|
|
|
|
|
|
const mp_uint_t key_number = (mp_uint_t)mp_arg_validate_int_range(
|
|
|
|
mp_obj_get_int(key_number_in),
|
|
|
|
0, (mp_int_t)common_hal_keypad_keymatrix_get_key_count(self),
|
|
|
|
MP_QSTR_key_number);
|
|
|
|
|
|
|
|
mp_uint_t row;
|
|
|
|
mp_uint_t column;
|
|
|
|
common_hal_keypad_keymatrix_key_number_to_row_column(self, key_number, &row, &column);
|
|
|
|
|
|
|
|
mp_obj_t row_column[2];
|
|
|
|
row_column[0] = MP_OBJ_NEW_SMALL_INT(row);
|
|
|
|
row_column[1] = MP_OBJ_NEW_SMALL_INT(column);
|
|
|
|
|
|
|
|
return mp_obj_new_tuple(2, row_column);
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_2(keypad_keymatrix_key_number_to_row_column_obj, keypad_keymatrix_key_number_to_row_column);
|
|
|
|
|
|
|
|
//| def row_column_to_key_number(self, row: int, column: int) -> int:
|
2021-06-17 12:02:54 -04:00
|
|
|
//| """Return the key number for a given row and column.
|
2021-06-23 09:18:40 -04:00
|
|
|
//| The key number is ``row * len(column_pins) + column``.
|
2021-06-17 12:02:54 -04:00
|
|
|
//| """
|
|
|
|
//| ...
|
|
|
|
//|
|
2021-06-23 09:18:40 -04:00
|
|
|
STATIC mp_obj_t keypad_keymatrix_row_column_to_key_number(mp_obj_t self_in, mp_obj_t row_in, mp_obj_t column_in) {
|
2021-06-17 12:02:54 -04:00
|
|
|
keypad_keymatrix_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
check_for_deinit(self);
|
|
|
|
|
2021-06-21 12:13:39 -04:00
|
|
|
const mp_uint_t row = (mp_uint_t)mp_arg_validate_int_range(
|
2021-06-23 09:18:40 -04:00
|
|
|
mp_obj_get_int(row_in), 0, (mp_int_t)common_hal_keypad_keymatrix_get_row_count(self), MP_QSTR_row);
|
2021-06-17 12:02:54 -04:00
|
|
|
|
2021-06-23 09:18:40 -04:00
|
|
|
const mp_int_t column = (mp_uint_t)mp_arg_validate_int_range(
|
|
|
|
mp_obj_get_int(column_in), 0, (mp_int_t)common_hal_keypad_keymatrix_get_column_count(self), MP_QSTR_column);
|
2021-06-17 12:02:54 -04:00
|
|
|
|
|
|
|
return MP_OBJ_NEW_SMALL_INT(
|
2021-06-23 09:18:40 -04:00
|
|
|
(mp_int_t)common_hal_keypad_keymatrix_row_column_to_key_number(self, row, column));
|
2021-06-17 12:02:54 -04:00
|
|
|
}
|
2021-06-23 09:18:40 -04:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_3(keypad_keymatrix_row_column_to_key_number_obj, keypad_keymatrix_row_column_to_key_number);
|
2021-06-14 20:54:43 -04:00
|
|
|
|
2021-06-16 15:27:59 -04:00
|
|
|
//| events: EventQueue
|
|
|
|
//| """The `EventQueue` associated with this `Keys` object. (read-only)
|
|
|
|
//| """
|
|
|
|
//|
|
|
|
|
STATIC mp_obj_t keypad_keymatrix_get_events(mp_obj_t self_in) {
|
|
|
|
keypad_keymatrix_obj_t *self = MP_OBJ_TO_PTR(self_in);
|
2021-06-23 15:42:31 -04:00
|
|
|
check_for_deinit(self);
|
|
|
|
|
2021-06-16 15:27:59 -04:00
|
|
|
return common_hal_keypad_keymatrix_get_events(self);
|
|
|
|
}
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(keypad_keymatrix_get_events_obj, keypad_keymatrix_get_events);
|
|
|
|
|
|
|
|
const mp_obj_property_t keypad_keymatrix_events_obj = {
|
|
|
|
.base.type = &mp_type_property,
|
|
|
|
.proxy = {(mp_obj_t)&keypad_keymatrix_get_events_obj,
|
|
|
|
MP_ROM_NONE,
|
|
|
|
MP_ROM_NONE},
|
|
|
|
};
|
|
|
|
|
2021-06-14 20:54:43 -04:00
|
|
|
STATIC const mp_rom_map_elem_t keypad_keymatrix_locals_dict_table[] = {
|
2021-06-23 09:18:40 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_deinit), MP_ROM_PTR(&keypad_keymatrix_deinit_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___enter__), MP_ROM_PTR(&default___enter___obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___exit__), MP_ROM_PTR(&keypad_keymatrix___exit___obj) },
|
|
|
|
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_events), MP_ROM_PTR(&keypad_keymatrix_events_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_key_count), MP_ROM_PTR(&keypad_keymatrix_key_count_obj) },
|
2021-06-23 14:54:52 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_reset), MP_ROM_PTR(&keypad_keymatrix_reset_obj) },
|
2021-06-23 15:10:38 -04:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR_key_number_to_row_column), MP_ROM_PTR(&keypad_keymatrix_key_number_to_row_column_obj) },
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR_row_column_to_key_number), MP_ROM_PTR(&keypad_keymatrix_row_column_to_key_number_obj) },
|
2021-06-14 20:54:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(keypad_keymatrix_locals_dict, keypad_keymatrix_locals_dict_table);
|
|
|
|
|
|
|
|
const mp_obj_type_t keypad_keymatrix_type = {
|
|
|
|
{ &mp_type_type },
|
2021-06-16 15:27:59 -04:00
|
|
|
.name = MP_QSTR_KeyMatrix,
|
2021-06-14 20:54:43 -04:00
|
|
|
.make_new = keypad_keymatrix_make_new,
|
|
|
|
.locals_dict = (mp_obj_t)&keypad_keymatrix_locals_dict,
|
|
|
|
};
|