GR-ADZUKIでKXSC7-2050を使おう
GR-ADZUKIは、標準でKXSC7-2050を使用したAE-KXSC7-2050を使用出来るようになっています。
AE-KXSC7-2050のピンヘッダーをはんだ付けしましょう。
GR-ADZUKIのピンソケットにピンヘッダーを取り付けて状態でAE-KXSC7-2050の基板を置いた状態ではんだ付けします
コードは取り出すだけです。
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);//シリアルポートを初期化
}
void loop() {
// put your main code here, to run repeatedly:
float x = (analogRead(A3));//A3ポートはX軸
float y = (analogRead(A4));//A4ポートはY軸
float z = (analogRead(A5));//A5ポートはZ軸
Serial.print("X: ");
Serial.print(x);
Serial.print("Y: ");
Serial.print(y);
Serial.print("Z: ");
Serial.print(z);
Serial.print("\n");
delay(100);
}
後で気づいたのですが、IDE for GRの中にサンプルがありましたw
Author And Source
この問題について(GR-ADZUKIでKXSC7-2050を使おう), 我々は、より多くの情報をここで見つけました https://qiita.com/usashirou/items/b96135d2a4d903d4ab82著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .