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

added logging to inform user of 1s retry if set_direction fails on the first try, updating to v0.7.1

This commit is contained in:
Robert Wolterman
2017-11-12 08:06:35 -06:00
parent 906beb0257
commit 84df4376f8
6 changed files with 33 additions and 15 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.7");
version = Py_BuildValue("s", "0.7.1");
PyModule_AddObject(module, "VERSION", version);
}