• 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 » Dc Motor की Speed कैसे Control करें ? Arduino

Dc Motor की Speed कैसे Control करें ? Arduino

December 25, 2023 by admin Leave a Comment

3
(2)

Dc motor की speed हम आसानी से Potentiometer से Control कर सकते है आपको बस Potentiometer की knob को rotate करना है जिससे आप Dc motor की speed को increase और Decrease कर सकते है Potentiometer एक Adjustable resistance होता है जिसे आप Arduino से Connect कर सकते है और ट्रांजिस्टर से दोनों तरीको से हमने बताया है

Arduino से L293D को Connect कर दो Dc motors की Speed को Control कर सकते है Dc motor को हम जब Arduino से Connect करते है तो उसे 5v तक का Voltage मिलता है पर हम अपने Project में Potentiometer का use करने से हम इसे Adjust करके Dc Motor तक Send करेगा इस system के लिए सबसे पहले हम जो चीज़े इसमें लगनी है उसकी list नीचे है और फिर इन्हें assemble करे यानि Circuit बनाएं आयर फिर Programing करेंगें आप इस Project का use करके Dc motor Fan बना सकते है या remote Control car की speed भी Control कर सकते है let’s Go-

बहुत आसान तरीका | ट्रांजिस्टर से

  • Robot कैसे बनाएं ?

Arduino के उपयोग से स्पीड कण्ट्रोल

Using Material

  • Arduino uno
  • Dc Motor
  • L293D
  • Potentiometer
  • Jumper Wire

Dc motor speed control circuit

Dc motor Speed Controller Circuit Image में दिया है आप इसे बनाएं L293D Dual Dc motor Driver है अभी हम इससे एक Dc motor control करेंगें मेने इसे Power देने के लिए External Source का use किया है जिससे आप 12v तक use कर सकते है आप एक Potentiometer का Use कर सकते है इस Circuit को मेने Fritzing में बनाया है  Power bank कैसे बनाएं ?

Arduino Coding

इस Program को copy करें और Arduino IDE Software को launch करें और इस program को Paste करें Arduino uno में Upload करें फिर आप dc motor की Speed control कर सकेंगें और आपका Project तैयार हो जायेगा Friends इस Project को आप share जरूर करे Program केसे upload करें

int sensorPin = A1;  
int sensorValue = 0;
//Motor A
const int motorPin1  = 5;  
const int motorPin2  = 6;  
void setup(){
    pinMode(sensorPin,INPUT);
    Serial.begin(9600);
    pinMode(motorPin1, OUTPUT);
    pinMode(motorPin2, OUTPUT);
}

void loop(){
  sensorValue = analogRead(sensorPin);
  analogWrite(motorPin1,sensorValue/4);
  analogWrite(motorPin2,0);
  Serial.print(sensorValue/4);

}

Sketch upload करने के बाद आप Dc motors Speed Control करने के लिए बने Project सही काम करेगा आप Potentiometer को Rotate करेंगें तो Dc motor की speed कम ज्यादा होगी 

Read करने के लिए thanks इस page को एक click में facebook पर share कर सकते है आप जरूर share करें और हमारी website को subscribe करें जिससे आप new Article direct message से पा सकते है नीचे subscription box है email fill कर करें Comment कर सकते है आप Comment करें

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

Average rating 3 / 5. Vote count: 2

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, Videos, इलेक्ट्रॉनिक कॉम्पोनेन्ट

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