We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I stream the emg data? When I call the event "emg_data", it prints the data just once
The text was updated successfully, but these errors were encountered:
Try this:
import dongleless import time def emg_data(myo, emg): print("Current POSIX time: ", time.time()) print("New EMG sample: ", emg) print(" ") function_dict = { # "imu_data":imu_data, #printing these gets really crowded, uncomment them if you want to use them. "emg_data":emg_data } dongleless.run(function_dict)
Sorry, something went wrong.
No branches or pull requests
How do I stream the emg data? When I call the event "emg_data", it prints the data just once
The text was updated successfully, but these errors were encountered: