• 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 » Servo motor + Arduino Control Programming pwm pin

Servo motor + Arduino Control Programming pwm pin

January 15, 2022 by admin Leave a Comment

0
(0)
Servo motor Control Programming Arduino uno

Servo motor Control Programming Arduino uno

servo motor & control – servo motor एक ऐसी motor है जो motor और potentiometer का combo है यह angle के साथ घूमती है जैसे की 180,360 degree servo motor इन servo का उससे CNC machine,Robotic और कई जगह होता है servo motors को arduino microcontroller से आसानी से control किया जा सकता है  servomotor में तीन input wire होते है जिनमे दो dc power supply और तीसरा PWM(pulse width modulation के लिए होता है जो की servo motor को time और voltage से angle देता है  Servo motor को Arduino microcontroller से control करने के लिए ये programing 

Circuit-

Servo के Red wire को 5v+ pin से connect करें 
Brown या Black wire को Gnd pin से
Servo motor के yellow wire को arduino के किसी भी Pwm pin से connect करें जैसे की pin4,pin9 

Programming-

#include <Servo.h> 

Servo ServoA;  // create servo object to control a servo             

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

void loop() 
{ 
  myservo.write(90); //servo 90 degree घूमेगी 
delay(100);//100 ms delay
myservo.write(30); //30 degree
}

ये servo motor के लिए sweep करने के लिए arduino looping program है इसे Arduino bord में upload करें

#include <Servo.h> 

Servo ServoA;  // create servo object to control a servo             
int pos = 0;    // variable to store the servo position 

void setup() 
{ 
  myservo.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 
    myservo.write(pos);              // tell servo to go to position in variable ‘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 
  {                                
    myservo.write(pos);              // tell servo to go to position in variable ‘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)
  • Click to share on Facebook (Opens in new window)
  • Click to print (Opens in new window)

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