FUTABA S3010 Sevo Control with ARDUINO


#include

Servo FUTABAservo; //Servo Objesi oluştutulur

void setup()
 {
 FUTABAservo.attach(9); // Servonun sinyali Arduinoda 9 nolu pine bağlanır
 }

void loop()
 {
 FUTABAservo.write(0); // 0 derece ye git
 delay(2000); // 2 saniye bekle
 FUTABAservo.write(90); // 90 dereceye git
 delay(1000); // 1 saniye bekle
 }
 

Published by

Unknown's avatar

BeMelaB

"A passionate and enthusiastic engineer among many engineers."

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.