blob: 63c06d268051df76e02467c23aabb14d838377e7 [file] [log] [blame]
Damien Georgebc08c882016-12-06 12:20:10 +11001/*
2 * This file is part of the MicroPython project, http://micropython.org/
3 *
4 * The MIT License (MIT)
5 *
6 * Copyright (c) 2017 Nick Moore
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 * THE SOFTWARE.
25 */
26
27
28#include <stdio.h>
29
30#include "esp_log.h"
31
32#include "driver/gpio.h"
33#include "driver/touch_pad.h"
34
35#include "py/runtime.h"
36#include "py/mphal.h"
37#include "modmachine.h"
38
39typedef struct _mtp_obj_t {
40 mp_obj_base_t base;
41 gpio_num_t gpio_id;
42 touch_pad_t touchpad_id;
43} mtp_obj_t;
44
45STATIC const mtp_obj_t touchpad_obj[] = {
46 {{&machine_touchpad_type}, GPIO_NUM_4, TOUCH_PAD_NUM0},
47 {{&machine_touchpad_type}, GPIO_NUM_0, TOUCH_PAD_NUM1},
48 {{&machine_touchpad_type}, GPIO_NUM_2, TOUCH_PAD_NUM2},
49 {{&machine_touchpad_type}, GPIO_NUM_15, TOUCH_PAD_NUM3},
50 {{&machine_touchpad_type}, GPIO_NUM_13, TOUCH_PAD_NUM4},
51 {{&machine_touchpad_type}, GPIO_NUM_12, TOUCH_PAD_NUM5},
52 {{&machine_touchpad_type}, GPIO_NUM_14, TOUCH_PAD_NUM6},
53 {{&machine_touchpad_type}, GPIO_NUM_27, TOUCH_PAD_NUM7},
Damien Georged4470af2018-03-05 14:06:45 +110054 {{&machine_touchpad_type}, GPIO_NUM_33, TOUCH_PAD_NUM8},
55 {{&machine_touchpad_type}, GPIO_NUM_32, TOUCH_PAD_NUM9},
Damien Georgebc08c882016-12-06 12:20:10 +110056};
57
58STATIC mp_obj_t mtp_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw,
Damien George69661f32020-02-27 15:36:53 +110059 const mp_obj_t *args) {
Damien Georgebc08c882016-12-06 12:20:10 +110060
61 mp_arg_check_num(n_args, n_kw, 1, 1, true);
62 gpio_num_t pin_id = machine_pin_get_id(args[0]);
63 const mtp_obj_t *self = NULL;
64 for (int i = 0; i < MP_ARRAY_SIZE(touchpad_obj); i++) {
Damien George69661f32020-02-27 15:36:53 +110065 if (pin_id == touchpad_obj[i].gpio_id) {
66 self = &touchpad_obj[i];
67 break;
68 }
Damien Georgebc08c882016-12-06 12:20:10 +110069 }
Damien George69661f32020-02-27 15:36:53 +110070 if (!self) {
71 mp_raise_ValueError("invalid pin for touchpad");
72 }
Damien Georgebc08c882016-12-06 12:20:10 +110073
74 static int initialized = 0;
75 if (!initialized) {
76 touch_pad_init();
Tom Manning887a6712019-05-15 05:50:53 -040077 touch_pad_set_fsm_mode(TOUCH_FSM_MODE_TIMER);
Damien Georgebc08c882016-12-06 12:20:10 +110078 initialized = 1;
79 }
80 esp_err_t err = touch_pad_config(self->touchpad_id, 0);
Damien George69661f32020-02-27 15:36:53 +110081 if (err == ESP_OK) {
82 return MP_OBJ_FROM_PTR(self);
83 }
Damien Georgebc08c882016-12-06 12:20:10 +110084 mp_raise_ValueError("Touch pad error");
85}
86
87STATIC mp_obj_t mtp_config(mp_obj_t self_in, mp_obj_t value_in) {
88 mtp_obj_t *self = self_in;
89 uint16_t value = mp_obj_get_int(value_in);
90 esp_err_t err = touch_pad_config(self->touchpad_id, value);
Damien George69661f32020-02-27 15:36:53 +110091 if (err == ESP_OK) {
92 return mp_const_none;
93 }
Damien Georgebc08c882016-12-06 12:20:10 +110094 mp_raise_ValueError("Touch pad error");
95}
96MP_DEFINE_CONST_FUN_OBJ_2(mtp_config_obj, mtp_config);
97
98STATIC mp_obj_t mtp_read(mp_obj_t self_in) {
99 mtp_obj_t *self = self_in;
100 uint16_t value;
101 esp_err_t err = touch_pad_read(self->touchpad_id, &value);
Damien George69661f32020-02-27 15:36:53 +1100102 if (err == ESP_OK) {
103 return MP_OBJ_NEW_SMALL_INT(value);
104 }
Damien Georgebc08c882016-12-06 12:20:10 +1100105 mp_raise_ValueError("Touch pad error");
106}
107MP_DEFINE_CONST_FUN_OBJ_1(mtp_read_obj, mtp_read);
108
109STATIC const mp_rom_map_elem_t mtp_locals_dict_table[] = {
110 // instance methods
111 { MP_ROM_QSTR(MP_QSTR_config), MP_ROM_PTR(&mtp_config_obj) },
112 { MP_ROM_QSTR(MP_QSTR_read), MP_ROM_PTR(&mtp_read_obj) },
113};
114
115STATIC MP_DEFINE_CONST_DICT(mtp_locals_dict, mtp_locals_dict_table);
116
117const mp_obj_type_t machine_touchpad_type = {
118 { &mp_type_type },
119 .name = MP_QSTR_TouchPad,
120 .make_new = mtp_make_new,
121 .locals_dict = (mp_obj_t)&mtp_locals_dict,
122};