mirror of
https://github.com/xtacocorex/CHIP_IO
synced 2025-07-20 04:43:21 +00:00
Initial commit, working GPIO for all available CHIP GPIO pins, have not tested edge detection and callbacks
This commit is contained in:
14
source/constants.h
Normal file
14
source/constants.h
Normal file
@ -0,0 +1,14 @@
|
||||
PyObject *high;
|
||||
PyObject *low;
|
||||
PyObject *input;
|
||||
PyObject *output;
|
||||
PyObject *alt0;
|
||||
PyObject *pud_off;
|
||||
PyObject *pud_up;
|
||||
PyObject *pud_down;
|
||||
PyObject *rising_edge;
|
||||
PyObject *falling_edge;
|
||||
PyObject *both_edge;
|
||||
PyObject *version;
|
||||
|
||||
void define_constants(PyObject *module);
|
Reference in New Issue
Block a user