Skip to content
Snippets Groups Projects
Commit b203c177 authored by Damien George's avatar Damien George
Browse files

esp8266: Fix reading of pin object for GPIO16.

Pin(16) now works as an input.
parent 2146cdab
No related branches found
No related tags found
No related merge requests found
...@@ -301,7 +301,7 @@ STATIC mp_obj_t pyb_pin_call(mp_obj_t self_in, mp_uint_t n_args, mp_uint_t n_kw, ...@@ -301,7 +301,7 @@ STATIC mp_obj_t pyb_pin_call(mp_obj_t self_in, mp_uint_t n_args, mp_uint_t n_kw,
pyb_pin_obj_t *self = self_in; pyb_pin_obj_t *self = self_in;
if (n_args == 0) { if (n_args == 0) {
// get pin // get pin
return MP_OBJ_NEW_SMALL_INT(GPIO_INPUT_GET(self->phys_port)); return MP_OBJ_NEW_SMALL_INT(pin_get(self->phys_port));
} else { } else {
// set pin // set pin
pin_set(self->phys_port, mp_obj_is_true(args[0])); pin_set(self->phys_port, mp_obj_is_true(args[0]));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment