EMG Sensor Integration @HEBIRobotics
EMG Sensor Integration  @HEBIRobotics
Uploaded October 2020 | Updated September 2026, 39 minutes ago
Velocity control of a module based on the signal from an EMG sensor connected to a HEBI I/O Board using the HEBI Matlab API.

The entirety of the code running in this video is below:

========================================

% Demo using an EMG sensor (Advancer Tech "MyoWare Muscle Sensor") to
% control the velocity of a module
%
% Dave Rollinson
% HEBI Robotics
% Jun 2018

clear *;
close all;

emgSensorGroup = HebiLookup.newGroupFromNames('Dave','ioBoard');
cmdGroup = HebiLookup.newGroupFromNames('Dave','testModule');

cmd = CommandStruct();

emgSensorGain = 2;
emgSensorOffset = 0.5;

while true
fbk = emgSensorGroup.getNextFeedbackIO();

cmd.velocity = max( emgSensorGain * (fbk.a1-emgSensorOffset), 0 );
cmdGroup.send(cmd);
end
EMG Sensor IntegrationSEA Arm - LunchHEBI Robotics - H-Series Actuator OverviewSEA Arm - Safety ReflexesHEBI Robotics Webinar Series: Introduction to the HEBI PlatformROSIE: Mobile Manipulator Kit from HEBI RoboticsTeleop Taxi - HEBI Robotics23 Minute Robotic Arm with Mobile Manipulator - HEBI Robotics
HEBI Robotics |

EMG Sensor Integration

SHARE TO X SHARE TO REDDIT SHARE TO FACEBOOK WALLPAPER