Це відео не доступне.
Перепрошуємо.

Controlling Servo motor with Arduino and python

Поділитися
Вставка
  • Опубліковано 18 сер 2024
  • In this tutorial i will show you how to control servo motor with arduino and python
    subscribe to our newsletter : forms.gle/K4nd...
    download arduino ide : www.arduino.cc...
    links to products
    servo motor : amzn.to/3DfjYht
    jumper wires : amzn.to/3A97OVW
    arduino uno : amzn.to/3npniBL (this is a bit expensive but i have used it for many project so i trust it if you want to go for a cheaper alternative go for this : amzn.to/3nr2Fp0)
    codetribe Channel : / channel
    dynamic programming Playlist Link :- / playlist
    list=PLwj0XzmRlS9kjnQng6jQE9WwJPJ4qrBIr
    our merchandises : bit.ly/merch_st...
    my setup and gadgets
    laptop Dell G3 3500 Gaming 15.6-inch Laptop (10th Gen Core i5-10300H/8GB/1TB + 256GB SSD/Win 10/4GB NVIDIA1650 Ti Graphics), : amzn.to/3ku8exN
    microphone Maono AU-A03 Condenser Microphone Kit : amzn.to/2UpW6Dq
    keyboard Amkette Evo Fox Fireblade Gaming Wired Keyboard : amzn.to/38IRTmq
    mouse Dell Wireless Mouse WM118 : amzn.to/3knMxiI
    SMS Autoamtion using python and twilio : bit.ly/sms_twil...
    Telegram Automation : bit.ly/telegram...
    github for beginners : bit.ly/github_f...
    machine learning playlist : bit.ly/machine_...
    python basics playlis : bit.ly/python_b...
    instagram automation with python : bit.ly/instagra...
    social media automation with python : bit.ly/social_m...

КОМЕНТАРІ • 41

  • @techbuddyfromindia1630
    @techbuddyfromindia1630 Рік тому

    i am making one voice input command using python now i can control motor easily through voice thankyou

  • @7iqps726
    @7iqps726 Рік тому +2

    Hi, thanks for the video! I understand you control the servo speed by inserting a little sleep time between each little step. Is there a way to control the speed directly by specifying an angle and a rotation speed rather than slicing up the movement into many tiny micro steps? I am afraid that stopping and starting puts some strain on the motor and the circuits.
    Thanks a lot in advance!
    7IQPs

  • @roushanrajthakur9144
    @roushanrajthakur9144 Рік тому +1

    Which python version u used for pyfirmata

  • @--CHYASWANTHKUMAR
    @--CHYASWANTHKUMAR Рік тому +1

    9:41 which is this ide you are using to run the code

  • @animelegendsxy9278
    @animelegendsxy9278 Рік тому +1

    Can I use vscode or pycharm to write the python code after finishing the aurdino ide part ?
    Please reply

    • @ShriramRMaiya
      @ShriramRMaiya Рік тому

      yes, you can

    • @animelegendsxy9278
      @animelegendsxy9278 Рік тому

      @@ShriramRMaiya thank you so much
      Btw will it accutully work same if i follow the video
      Cuz there are many fake videos in UA-cam
      So i am scared to try it

    • @animelegendsxy9278
      @animelegendsxy9278 Рік тому

      @@jogeshwormundi thanks bro for your time

  • @pranitrajendramagdum5378
    @pranitrajendramagdum5378 Рік тому

    very good video... Lernt something new. Sir can you make video on controlling stepper motor using arduino and python.

  • @adhilstark1327
    @adhilstark1327 2 роки тому

    u are amazing bro thank u

  • @muddymkamba352
    @muddymkamba352 Рік тому

    can you do Arduino atmega 2560(with built in WIFI) how to use its WIFI module connect it to the internet using Python

  • @waleedaiad3411
    @waleedaiad3411 2 роки тому

    How can i use hc-12 with arduino using python language?.

  • @PYTRICKS113
    @PYTRICKS113 Рік тому

    Sir I want you to do a python program for -
    For after a particular time the light should be on
    Please

  • @animelegendsxy9278
    @animelegendsxy9278 Рік тому

    how can we make it wireless?
    I want to control it from pc using but wirelessly
    Please reply

  • @adeddy8138
    @adeddy8138 2 роки тому

    I want to make a servo controlled by serial monitor only 2 movements taking 90 degree as base position
    for eg for serial command 135 servo will move from 90 to 180 clockwise
    and for serial command suppose 235 servo will move 90 to 180 degrees anticlockwise
    plzz help if you know I am having a project and I suck at coding
    actually I am making a code that sends binary input to arduino from 0-255 to serial monitor from python and based on particular input the servo will move as told above

  • @animeshsarkar1422
    @animeshsarkar1422 2 роки тому

    Can you tell me how can I write on 16x2 lcd display using python and standard pyfirmata as arduino sketches ?

    • @Braincain007
      @Braincain007 2 роки тому

      Hey I am trying to do something with an LCD as well, did ever found out how to do it? any advice would be great

    • @animeshsarkar1422
      @animeshsarkar1422 2 роки тому

      @@Braincain007 I have modified Standard Firmata code for 16x2 LCD display.

  • @mukulvagh3904
    @mukulvagh3904 2 роки тому

    Can we use node mcu?

  • @emrevurgun8328
    @emrevurgun8328 Рік тому

    What is the util package used for? it shows unused import in my ide

  • @adambeedle
    @adambeedle 2 роки тому

    Awesome!

  • @hfhtuyf
    @hfhtuyf 2 роки тому +1

    Dear, share the code, please. It is impossible to rewrite the code from the screen.

    • @KING4SNIPR
      @KING4SNIPR 2 роки тому +1

      nothing is impossible bro

    • @ansh9545
      @ansh9545 2 роки тому +2

      @@KING4SNIPR
      from pyfirmata import Arduino ,SERVO,util
      from time import sleep
      port ='COM3'
      pin=10
      board=Arduino(port)
      board.digital[pin].mode=SERVO
      def rotateservo(pin,angle):
      board.digital[pin].write(angle)
      sleep(0.015)
      while True:
      x=input("imput : ")
      if x=="1":
      for i in range(0,180):
      rotateservo(pin,i)
      elif x=="2":
      for i in range(0,90):
      rotateservo(pin,i)
      elif x=="3":
      for i in range(0,270):
      rotateservo(pin,i)

  • @aivanacequizon6283
    @aivanacequizon6283 2 роки тому +1

    Wow this is awesome, can you do object sorting using arduino and web cam?

    • @animelegendsxy9278
      @animelegendsxy9278 Рік тому +1

      how can we make it wireless?
      I want to control it from pc using but wirelessly
      Please reply

    • @dudedave490
      @dudedave490 Рік тому

      @@animelegendsxy9278 use a transmitter and reciever

  • @bazgamingyt5860
    @bazgamingyt5860 11 місяців тому

    hello friends i wanna work on robots but i confused from where i starte

  • @rohannikale
    @rohannikale Рік тому

    gsm module sim900a

  • @axelblaze9915
    @axelblaze9915 Рік тому

    Can I know the way to contact you, it’s little urgent

  • @windgod9442
    @windgod9442 Рік тому

    code tribe channel doesnt exist... :(

    • @Iknowpython
      @Iknowpython  Рік тому

      They sponsored me a long time back 😅😅

  • @ansh9545
    @ansh9545 2 роки тому +2

    9:41 which is this ide you are using to run the code

  • @waleedaiad3411
    @waleedaiad3411 2 роки тому

    How can i use hc-12 with arduino using python language?