0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Arduinoで筋電センサを使う

Posted at

この記事は、arduinoで筋電センサ(MyoWare)を使うためのものです。1個当たり5500円以下で購入出来ます。直下に筋肉がある程度ないと、反応しません。また、アースとして、肘など筋肉のないところを基準点として使います。
https://www.switch-science.com/catalog/2682/

接続方法

_ + <->5V
_ - <->GND
_ SIG <->A0
MYO.JPG

プログラム

A0端子の値を表示するシリアルプロッタで表示するプログラムです。

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

void loop() {
  int value = analogRead(0);
  Serial.println(value);
  delay(20);
}


0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?