Last active
October 30, 2024 11:46
-
-
Save RyoKosaka/17254ff56365443eb42a4e2f900421c7 to your computer and use it in GitHub Desktop.
プロダクトデザイン応用実習サンプルコード - Lチカのようにステッピングモーターをテストするコード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//プロダクトデザイン応用実習サンプルコード - Lチカのようにステッピングモーターをテストするコード | |
#include <Stepper.h> //Stepperライブラリを使いますよという宣言 | |
Stepper myStepper(2048, 8, 10, 9, 11); //2048はステッピングモーターの分解能(28BYJ-48の場合) | |
void setup() { | |
myStepper.setSpeed(18); //myStepperの速度を18に指定。(このモーターでは18が最大) | |
} | |
void loop() { | |
myStepper.step(2048); //2048ステップ回す。このモーターの分解能は2048なので1回転を意味する。 | |
delay(500); | |
myStepper.step(-2048); //逆回転の場合はーを付ければいい。 | |
delay(500); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment