mirror of
https://github.com/ft-NotArt/ShyEye.git
synced 2025-10-29 20:35:59 +00:00
+ | Trying Servo Motors
This commit is contained in:
commit
9effcc9347
15
Servo_test/Servo_test.ino
Normal file
15
Servo_test/Servo_test.ino
Normal file
@ -0,0 +1,15 @@
|
||||
#include "Servo.h"
|
||||
|
||||
Servo servo1 ;
|
||||
Servo servo2 ;
|
||||
|
||||
void setup() {
|
||||
servo1.attach(9); // attache le servo1 au pin 9
|
||||
servo2.attach(10); // attache le servo2 au pin 10
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
servo1.write(0) ;
|
||||
servo2.write(0) ;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user