Python Opensource Myo library
Project description
PyoMyo
Python Open-source Myo library
This library was made from a fork of the MIT licensed dhzu/myo-raw. Bug fixes from Alvipe/myo-raw were also added to stop crashes and also add essential features.
This code was then updated to Python3, multithreading support was added then more bug fixes and other features were added, including support for all 3 EMG modes the Myo can use.
Note that sEMG data, the same kind gathered by the Myo is thought to be uniquely identifiable. Do not share this data without careful consideration of the future implications.
Also note, the Myo is outdated hardware, over the last year I have noticed a steady incline in the cost of second hand Myos. Both of my Myo's were bought for under £100, I do not recommend spending more than that to acquire one. Instead of buying one you should join the discord to create an open hardware alternative!
The Basics
myo_serial.py
Prints sEMG readings at 200Hz by starting the Myo in 0x03 mode (raw=True, filtered=False).
Each EMG readings is between -128 and 127, it is the most "raw" the Myo can provide, however it's unlikely to be useful without extra processing.
This file is also where the Myo driver is implimented, which uses Serial commands which are then sent over BlueTooth to interact with the Myo.
plot_emgs.py
Starts the Myo in mode 0x01 which provides data that's already preprocessed (bandpass filter + rectified).
This data is then plotted in pygame and is a good first step to see how the Myo works.
Sliding your finger under each sensor on the Myo will help identify which plot is for sensor.
With the terminal selected press Ctrl + C to kill the processes.
simple_classifier.py
Uses a simple nearest neighbour classifier and predicts gestures live.
Make a gesture with one hand then press a number key to label the incoming EMG values that class.
Once two classes have been made new data is automatically classified.
Labelled data is stored as a numpy array in the data directory.
myo_multithreading_examp.py
Devs start here.
This file shows how to use the library and get Myo data in a seperate thread.
Myo Modes Explained
To communicate with the Myo, I used dzhu's myo-raw. Then added some functions from Alvipe to allow changing of the Myo's LED.
(0x01, raw=False)
By default myo-raw sends 50Hz data that has been rectified and filtered, using a hidden 0x01 mode.
(0x02, raw=True, filtering=True)
Alvipe added the ability to also get filtered non-rectified sEMG (thanks Alvipe).
(0x03, raw=True, filtering=False)
Then I futher added the ability to get true raw non-filtered data at 200Hz.
This data is unrectified but scales from -128 and 127.
Sample data and a comparison between data captured in these modes can be found in MyoEMGPreprocessing.ipynb
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyomyo-0.0.1.tar.gz
.
File metadata
- Download URL: pyomyo-0.0.1.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12750b1dd5dca5040ad9256b1221548bb75043636f86e200660c7570122d5c47 |
|
MD5 | e15354525d0153c548378a0cf4e9d2f8 |
|
BLAKE2b-256 | d3906ea9dec5fb987ad44572a99f69c9d832e8fcce90e466be31bca8345fbf22 |
File details
Details for the file pyomyo-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: pyomyo-0.0.1-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbdc037da8808719082c49ad02156ff75e014379aadc70bd1eba3765fb3f1e60 |
|
MD5 | a6a9e2d4d5db816da9df3a5c35f0df69 |
|
BLAKE2b-256 | 94dd9705dcd96e52975860a96fe632c3ace5778603a58516e465385d5ca7e87a |