├── .codedocs ├── .gitignore ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md └── src ├── bleapi.h ├── bleapi.xml ├── bled112client.h ├── buffer.h ├── firstargument.h ├── gattclient.cpp ├── gattclient.h ├── generator.py ├── main.cpp ├── myoapi.h ├── myoapi_p.h ├── myoclient.cpp ├── myoclient.h ├── myolinux.h ├── serial.cpp └── serial.h /.codedocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/.codedocs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/README.md -------------------------------------------------------------------------------- /src/bleapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/bleapi.h -------------------------------------------------------------------------------- /src/bleapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/bleapi.xml -------------------------------------------------------------------------------- /src/bled112client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/bled112client.h -------------------------------------------------------------------------------- /src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/buffer.h -------------------------------------------------------------------------------- /src/firstargument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/firstargument.h -------------------------------------------------------------------------------- /src/gattclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/gattclient.cpp -------------------------------------------------------------------------------- /src/gattclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/gattclient.h -------------------------------------------------------------------------------- /src/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/generator.py -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/myoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/myoapi.h -------------------------------------------------------------------------------- /src/myoapi_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/myoapi_p.h -------------------------------------------------------------------------------- /src/myoclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/myoclient.cpp -------------------------------------------------------------------------------- /src/myoclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/myoclient.h -------------------------------------------------------------------------------- /src/myolinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/myolinux.h -------------------------------------------------------------------------------- /src/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/serial.cpp -------------------------------------------------------------------------------- /src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brokenpylons/MyoLinux/HEAD/src/serial.h --------------------------------------------------------------------------------