Last active
October 24, 2024 05:34
-
-
Save RyoKosaka/e8834fb7ef2be8803ab55f55550c8da3 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 <Servo.h> //ライブラリを使いますという宣言 | |
Servo myservo; // サーボにmyservoと名前をつける | |
void setup() { //電源をつけた時に一回だけ行われる | |
myservo.attach(9); //サーボを9番ピンに接続しますという宣言 | |
} | |
void loop() { | |
myservo.write(0); //myservoを0度まで動かすという指定 | |
delay(300); | |
myservo.write(45); //myservoを45度まで動かすという指定 | |
delay(300); | |
myservo.write(90); //myservoを90度まで動かすという指定 | |
delay(300); | |
myservo.write(135); //myservoを135度まで動かすという指定 | |
delay(300); | |
myservo.write(180); //myservoを180度まで動かすという指定 | |
delay(300); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment