• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
Mechanic37

Mechanic37

इंजीनियरिंग और फिजिक्स,केमिस्ट्री

  • My account
  • Cart
  • Products
  • Blog
  • Contact Us
Home » 2 servo Sweep wtih Arduino Uno pwm pin

2 servo Sweep wtih Arduino Uno pwm pin

April 12, 2022 by admin Leave a Comment

0
(0)

Circuit-
connect yallow wire-pin4,pin9
red wire +5v
black or brown Gnd

Programming-

/* Sweep2
by mechanic37
https://www.mechanic37.com
*/

#include <Servo.h>

Servo A;  // create servo object to control a servo
Servo B;           // twelve servo objects can be created on most boards

int pos = 0;    // variable to store the servo position

void setup()
{
B.attach(4);
A.attach(9);  // attaches the servo on pin 9 to the servo object
}

void loop()
{
for(pos = 0; pos <= 180; pos += 1) // goes from 0 degrees to 180 degrees
{                                  // in steps of 1 degree
A.write(pos);              // tell servo to go to position in variable ‘pos’
B.write(pos);
delay(15);                       // waits 15ms for the servo to reach the position
}
for(pos = 180; pos>=0; pos-=1)     // goes from 180 degrees to 0 degrees
{
A.write(pos);              // tell servo to go to position in variable ‘pos’
B.write(pos);
delay(15);                       // waits 15ms for the servo to reach the position
}
}

यह पेज आपको कैसा लगा ?

Average rating 0 / 5. Vote count: 0

Share this:

  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to print (Opens in new window) Print

Filed Under: Arduino, Engineering Project

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

विषय

  • भौतिक विज्ञान
  • मैकेनिकल इंजीनियरिंग
  • इलेक्ट्रॉनिक्स इंजीनियरिंग
  • इलेक्ट्रिकल इंजीनियरिंग
  • रसायन विज्ञान
  • जीव विज्ञान 
  • कंप्यूटर 
  • इंजीनियरिंग प्रोजेक्ट्स

Footer

Social Media

  • Facebook
  • Twitter
  • Instagram
  • Youtube

Learn How To Make

  • Drone
  • DIY Robot
  • Website
  • Android Apps?

Policies

  • Shipping and Delivery
  • Refund and Cancellation Policy
  • Privacy Policy
  • Terms and Conditions

Shop

  • Shop
  • My account
  • Checkout
  • Cart

Mechanic37 2015 - 2024

  • Sitemap
  • Contact Us
  • About Us
  • Advertise
  • Mechanical Notes
  • Electrical Notes
  • Electronic Notes
  • Engineering Projects
  • Physics
  • Chemistry
  • Biology
  • Learn Computer
  • Autocad Tutorial