1
0
mirror of https://github.com/xtacocorex/CHIP_IO synced 2025-07-20 04:43:21 +00:00

GPIO able to be controlled by pin sysfs number like RPi.GPIO, close #65

This commit is contained in:
Robert Wolterman
2017-09-13 10:35:32 -05:00
parent e3a077bf82
commit e7db735a2f
9 changed files with 231 additions and 40 deletions

View File

@ -85,6 +85,6 @@ void define_constants(PyObject *module)
bcm = Py_BuildValue("i", BCM);
PyModule_AddObject(module, "BCM", bcm);
version = Py_BuildValue("s", "0.6.2");
version = Py_BuildValue("s", "0.7");
PyModule_AddObject(module, "VERSION", version);
}