Arduino and Python record and playback the servo motor's steps and using a text file

preview_player
Показать описание
Arduino and Python record and playback the servo motor's steps and using a text file:
the code :
Рекомендации по теме
Комментарии
Автор

Very useful project thank you soo much sir

munnasera
Автор

You have no idea how helpful this is. thanks!

adamt
Автор

Thanks very much for sharing this video, you give so much idea to create servo movement from python to >arduino
At this time, i work in a project Com Serial Python and Arduino, I would know if you can make a video about most Servos controlled by Python to arduino!Your explanation seems to be very clear for me

ravelonjatovoherman
Автор

Cool, it will one of my next project!

pythongui
Автор

// arduino code....
#include <Servo.h>
Servo servo;
void setup() {
Serial.begin(9600);
servo.attach(4);
}

void loop() {
if(Serial.available()>0){
int val =Serial.parseInt();
servo.write(val);
}

}

azutechnology
Автор

Hello!how create XLS file for Four Servos Please? I already see the next Video of Two Servos!

ravelonjatovoherman
join shbcf.ru