DIY sumo robot. How to make Sumo robot? / Sumo robot yasash

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • Skech sumo robot - disk.yandex.ru...
    Sxema Photo - disk.yandex.ru...
    2-canal • DIY sumo robot. How to...

Комментарии • 31

  • @teclem8156
    @teclem8156 10 месяцев назад

    What happens is that I am doing a sumo that knocks down cans but I have that doubt if the sumo will not go out of the circuit

  • @teclem8156
    @teclem8156 10 месяцев назад

    hey i have a doubt, won't sumo go out of the loop?

  • @ЖамшидСатторов-ы4ъ
    @ЖамшидСатторов-ы4ъ 2 года назад +1

    🥇👍

  • @CeballosgarratacheaJosedeJesus
    @CeballosgarratacheaJosedeJesus 3 месяца назад

    Como descargo la libreria AFMotor?

  • @boi.motovlog
    @boi.motovlog 2 года назад +1

    Hello i like your design. What is the name of the white board thing.

  • @fawazabdalruzzak4739
    @fawazabdalruzzak4739 2 года назад +1

    Wow this is Nice

  • @pheetha06
    @pheetha06 Год назад

    Why does my robot run away from objects?

  • @leonskie3178
    @leonskie3178 Год назад

    Excellent work, may I know the unit you had used for measurement? specially the base or the board kindly tell us the measurement in cm/inch? thank you so much

  • @friendshipvlogs9854
    @friendshipvlogs9854 7 месяцев назад

    what is the exact name of the iron sheet

  • @markjohnduran5784
    @markjohnduran5784 Год назад +1

    nce design can i get a copy of all the materials neeaded? (with names)

  • @scankomp241
    @scankomp241 2 месяца назад

    Зачем делаете без линейного датчика?

  • @johnmichaelpenafiel9653
    @johnmichaelpenafiel9653 6 месяцев назад

    Can you please indicate the material that you use in you content next time plss

  • @81LeoLeon
    @81LeoLeon Год назад

    Que placa es la que va arriba del arduino???

  • @sengofficial1122
    @sengofficial1122 Год назад

    can we have the copy of programm?

  • @chichu2386
    @chichu2386 Год назад

    what is the name of the glue that you used for pasting that board?

    • @amazingtech1628
      @amazingtech1628  Год назад

      aliexpress.ru/item/1005003411810440.html?sku_id=12000025668541962&feed_id=20&_randl_currency=RUB&_randl_shipto=RU&sellermenu_hide=true&src=googleweb&albch=dspl&aff_short_key=brxT3bLh&cn=%7Bcampaignid%7D&isdl=y&aff_platform=jvru&Bcampaignid%7D&feed_id=20&_randl_currency=RUB&_randl_shipto=RU&sellermenu_hide=true&src=googleweb&albch=dspl&aff_short_key=brxT3bLh&isdl=y&aff_platform=jvru&JVRU_ALI_GOOGLE_WEB_UA_CROSS_CIS(UZ)_PERFOMAX&gclid=CjwKCAjwo7iiBhAEEiwAsIxQEcnIhlt8KmKFMHV-jeWYvSWJ6Hi8G9S_AhuV9JYld2WYcxByGo565hoCZVkQAvD_BwE

  • @narutokun8970
    @narutokun8970 Год назад +1

    Code?

  • @ahmedehab3649
    @ahmedehab3649 2 года назад +1

    0:27
    WHAT IS THAT PAPER
    IS IT STEEL !
    OR WOOD

  • @sansanjasthinepaguio384
    @sansanjasthinepaguio384 Год назад +1

    Penge code

    • @amazingtech1628
      @amazingtech1628  Год назад

      disk.yandex.ru/d/pJWtN-7bm3m8WA
      ruclips.net/user/redirect?event=video_description&redir_token=QUFFLUhqbm1Jem5jT01VZjNzMWxqZ3lUM3pGUWd2VEdCd3xBQ3Jtc0trU183MTh0Tk1LaXFBcGhQYW9PVmxXd3Y0QzhKX1kxRjU5NzMyY0NxVjl4cVo3MERYbUw2QkJhRzJkbDV1MUczTHZUN3RKN2dfYUtoajBWMzZtYUc2UmpXWXpaOWI2MFZPT1B4b3g5Z2Jhc3U5akptYw&q=https%3A%2F%2Fdisk.yandex.ru%2Fi%2Fazw0fntFhs6rqw&v=IG-QgLSVOA4

    • @nohoritazipaquira976
      @nohoritazipaquira976 Год назад

      Me genera error con la librería.

  • @noe9763
    @noe9763 Год назад +1

    code ?

    • @SUPERMANSOLOS
      @SUPERMANSOLOS Год назад +4

      #include // AFMotor kutubxonasini yuklab oling!!!
      AF_DCMotor motor1(1);
      AF_DCMotor motor2(2);
      int trigPin = 9;
      int echoPin = 10;
      int davomiylik, sm;
      void plusUltra() {
      digitalWrite(trigPin, LOW);
      delayMicroseconds(5);
      digitalWrite(trigPin, HIGH);
      delayMicroseconds(15);
      digitalWrite(trigPin, LOW);
      davomiylik = pulseIn(echoPin, HIGH);
      sm = davomiylik / 58;
      }
      void setup() {
      //Serial.begin(9600);
      pinMode(trigPin, OUTPUT);
      pinMode(echoPin, INPUT);
      delay(5000); // 5 Sekund kutib turish
      motor1.setSpeed(255); // Tezlik 0 dan 255 gacha o'zgartirish mumkin
      motor1.run(RELEASE);
      motor2.setSpeed(255); // Tezlik 2- Motor uchun
      motor2.run(RELEASE);
      }
      void loop() {
      plusUltra();
      //Serial.println(sm);
      if (sm > 1 && sm < 50) { //Agar 50 sm masofada biror raqib ko'rinsa
      motor1.run(FORWARD); //Oldinga yuri
      motor2.run(FORWARD);
      delay(300);
      } else { //Raqib ko'rinmasa
      motor1.run(BACKWARD); //O'nga burilib raqibni qidir
      motor2.run(FORWARD);
      delay(10);
      }
      }

    • @sansanjasthinepaguio384
      @sansanjasthinepaguio384 Год назад

      ​@@SUPERMANSOLOS ❤