Close

Testing MyoWare with Arduino

A project log for HelpMe! Trigger using EMG

Discretely broadcast an emergency alert to trusted friends via an EMG trigger activated by clenching fist

neil-k-sheridanNeil K. Sheridan 04/18/2018 at 20:080 Comments

First of all, the MyoWare Muscle Sensor can be connected to an Arduino, and the Arduino connected to a laptop (which is not connected to the mains electrical grid). So, we can see the data acquired from EMG in real-time, using serial monitor (see https://www.arduino.cc/reference/en/language/functions/analog-io/analogread/ )

void setup() {
Serial.begin(9600);
}

void loop() {
Serial.println(analogRead(pin));
}

Discussions