Controlling Servo motor with Arduino and python

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ต.ค. 2024

ความคิดเห็น • 41

  • @techbuddyfromindia1630
    @techbuddyfromindia1630 ปีที่แล้ว

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

  • @roushanrajthakur9144
    @roushanrajthakur9144 ปีที่แล้ว +1

    Which python version u used for pyfirmata

  • @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

  • @animelegendsxy9278
    @animelegendsxy9278 2 ปีที่แล้ว +1

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

    • @ShriramRMaiya
      @ShriramRMaiya 2 ปีที่แล้ว

      yes, you can

    • @animelegendsxy9278
      @animelegendsxy9278 2 ปีที่แล้ว

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

    • @animelegendsxy9278
      @animelegendsxy9278 ปีที่แล้ว

      @Jogeshwor Mundi 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.

  • @--CHYASWANTHKUMAR
    @--CHYASWANTHKUMAR ปีที่แล้ว +1

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

  • @animelegendsxy9278
    @animelegendsxy9278 2 ปีที่แล้ว

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

  • @muddymkamba352
    @muddymkamba352 2 ปีที่แล้ว

    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?.

  • @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.

  • @PYTRICKS113
    @PYTRICKS113 ปีที่แล้ว

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

  • @adhilstark1327
    @adhilstark1327 2 ปีที่แล้ว

    u are amazing bro thank u

  • @mukulvagh3904
    @mukulvagh3904 2 ปีที่แล้ว

    Can we use node mcu?

  • @adeddy8138
    @adeddy8138 3 ปีที่แล้ว

    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

  • @aivanacequizon6283
    @aivanacequizon6283 2 ปีที่แล้ว +1

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

    • @animelegendsxy9278
      @animelegendsxy9278 2 ปีที่แล้ว +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

  • @emrevurgun8328
    @emrevurgun8328 ปีที่แล้ว

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

  • @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)

  • @bazgamingyt5860
    @bazgamingyt5860 ปีที่แล้ว

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

  • @axelblaze9915
    @axelblaze9915 ปีที่แล้ว

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

    • @Iknowpython
      @Iknowpython  ปีที่แล้ว

      DM me on insta @i_know_python

  • @adambeedle
    @adambeedle 3 ปีที่แล้ว

    Awesome!

  • @windgod9442
    @windgod9442 ปีที่แล้ว

    code tribe channel doesnt exist... :(

    • @Iknowpython
      @Iknowpython  ปีที่แล้ว

      They sponsored me a long time back 😅😅

  • @rohannikale
    @rohannikale ปีที่แล้ว

    gsm module sim900a

  • @ansh9545
    @ansh9545 2 ปีที่แล้ว +2

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

    • @--CHYASWANTHKUMAR
      @--CHYASWANTHKUMAR ปีที่แล้ว

      same doubt...can anyone clarify?

    • @Theoneyanger
      @Theoneyanger 4 หลายเดือนก่อน

      Sublime text editor i believe

  • @waleedaiad3411
    @waleedaiad3411 2 ปีที่แล้ว

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