How to Make Wall Climbing Robot Car using Arduino by XiLiR, Engineering/Innovation Project

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ม.ค. 2025

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

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

    Great work sir.. Loved it❤

  • @XiLiRTechnologies
    @XiLiRTechnologies  10 หลายเดือนก่อน

    Guys you can buy from here thank you.. Contact us for details/ Modification
    +91-9910715202
    xilirprojects.com/product/wall-climbing-car/

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

    Awesome project, video effects are too classy👌🏻✌🏻

  • @mohamedmadbouly1890
    @mohamedmadbouly1890 2 หลายเดือนก่อน

    just a question, what the nature frequency for this model ?

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

    Good use to grab on the wall .

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

    bro i want the model bro how much this robot

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

      yes u can buy this,,,msg on 9910715202 whatsapp or call

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

    I made the same setup still it's not sticking to wall can you help

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

    Awesome🥶🙌🏻🙌🏻

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

    Connections and schematic can you plz tell from where can we get

  • @xxsnsk
    @xxsnsk 10 หลายเดือนก่อน

    how many kg can it hold

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

    How can I get coading

  • @sumalinogabramm.6715
    @sumalinogabramm.6715 2 ปีที่แล้ว

    what material did you use for the base?

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

      g10 u can use or any other hhard , dnt use ply wood or mdf

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

    Superb ❤️

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

    Good work brother

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

    I want code, application and circuit diagram ... please.. give me..the code, application and circuit diagram

  • @NoOne-br7bl
    @NoOne-br7bl 2 ปีที่แล้ว +2

    Hello, thank you for the interesting project. From where can get the code for this project???

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

      //Arduino Bluetooth Controlled Car//
      //// Before uploading the code you have to install the necessary library//
      //AFMotor Library learn.adafruit.com/adafruit-motor-shield/library-install //
      #include
      //initial motors pin
      AF_DCMotor motor1(1);
      AF_DCMotor motor2(2);
      AF_DCMotor motor3(3);
      AF_DCMotor motor4(4);
      char command;
      void setup()
      {
      Serial.begin(9600); //Set the baud rate to your Bluetooth module.
      }
      void loop(){
      if(Serial.available() > 0){
      command = Serial.read();
      Stop(); //initialize with motors stoped
      //Change pin mode only if new command is different from previous.
      //Serial.println(command);
      switch(command){
      case 'F':
      forward();
      break;
      case 'B':
      back();
      break;
      case 'L':
      left();
      break;
      case 'R':
      right();
      break;
      }
      }
      }
      void forward()
      {
      motor1.setSpeed(255); //Define maximum velocity
      motor1.run(FORWARD); //rotate the motor clockwise
      motor2.setSpeed(255); //Define maximum velocity
      motor2.run(FORWARD); //rotate the motor clockwise
      motor3.setSpeed(255);//Define maximum velocity
      motor3.run(FORWARD); //rotate the motor clockwise
      motor4.setSpeed(255);//Define maximum velocity
      motor4.run(FORWARD); //rotate the motor clockwise
      }
      void back()
      {
      motor1.setSpeed(255); //Define maximum velocity
      motor1.run(BACKWARD); //rotate the motor anti-clockwise
      motor2.setSpeed(255); //Define maximum velocity
      motor2.run(BACKWARD); //rotate the motor anti-clockwise
      motor3.setSpeed(255); //Define maximum velocity
      motor3.run(BACKWARD); //rotate the motor anti-clockwise
      motor4.setSpeed(255); //Define maximum velocity
      motor4.run(BACKWARD); //rotate the motor anti-clockwise
      }
      void left()
      {
      motor1.setSpeed(255); //Define maximum velocity
      motor1.run(BACKWARD); //rotate the motor anti-clockwise
      motor2.setSpeed(255); //Define maximum velocity
      motor2.run(BACKWARD); //rotate the motor anti-clockwise
      motor3.setSpeed(255); //Define maximum velocity
      motor3.run(FORWARD); //rotate the motor clockwise
      motor4.setSpeed(255); //Define maximum velocity
      motor4.run(FORWARD); //rotate the motor clockwise
      }
      void right()
      {
      motor1.setSpeed(255); //Define maximum velocity
      motor1.run(FORWARD); //rotate the motor clockwise
      motor2.setSpeed(255); //Define maximum velocity
      motor2.run(FORWARD); //rotate the motor clockwise
      motor3.setSpeed(255); //Define maximum velocity
      motor3.run(BACKWARD); //rotate the motor anti-clockwise
      motor4.setSpeed(255); //Define maximum velocity
      motor4.run(BACKWARD); //rotate the motor anti-clockwise
      }
      void Stop()
      {
      motor1.setSpeed(0); //Define minimum velocity
      motor1.run(RELEASE); //stop the motor when release the button
      motor2.setSpeed(0); //Define minimum velocity
      motor2.run(RELEASE); //rotate the motor clockwise
      motor3.setSpeed(0); //Define minimum velocity
      motor3.run(RELEASE); //stop the motor when release the button
      motor4.setSpeed(0); //Define minimum velocity
      motor4.run(RELEASE); //stop the motor when release the button
      }

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

      U can use any basic bluetooth car controlled from internet

    • @NoOne-br7bl
      @NoOne-br7bl 2 ปีที่แล้ว +1

      @@XiLiRTechnologies
      Thank you very much 💙

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

    Amazing ❤️

  • @sumalinogabramm.6715
    @sumalinogabramm.6715 ปีที่แล้ว

    is it okay to use 30a esc?

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

    hey can u plz explain the construction of this robotic car really looking forward to this project as my semester project

  • @santoshkumar-dx2oc
    @santoshkumar-dx2oc 9 หลายเดือนก่อน

    Sir i want code, application. please give me the code, application.

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

    5.17 IRON MAN HANGED TILL DEATH............

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

    Please reply.......