Posts

diy projects ss

Image
  Blog article archive ▼   2022 (4) ▼   August (1)     Learn to create automatic robots... ►   February (3) ►   2021 (11) ►   2019 (10)   Learn to create automatic robots                        Download Arduino IDE                               Download Driver     Pot Com                                               Program code  1.1.aLine-following robot ------------------------------------------------------------------------ const int MotorL = 2; const int MotorR = 3; #define SensorL 4 #define SensorR 5 void setup() { pinMode(SensorL, INPUT); pinMode(SensorR, INPUT); pinMode(MotorL, OUTPUT); pinMode(MotorR, OUTPUT); } void loop() {   if(di...