Aarav Patel
Aarav Patel
  • 16
  • 16 812

วีดีโอ

How to use an MQ-136 gas sensor using Arduino | aaravpatel.com
มุมมอง 4.5K3 ปีที่แล้ว
How to use an MQ-136 gas sensor using Arduino | aaravpatel.com
Arduino - Remote Controlled Light Bulb using HW-383 Relay
มุมมอง 2.5K3 ปีที่แล้ว
Arduino - Remote Controlled Light Bulb using HW-383 Relay
Joystick Controlled Car - Arduino
มุมมอง 7713 ปีที่แล้ว
Joystick Controlled Car - Arduino
Remote control car using Arduino
มุมมอง 7663 ปีที่แล้ว
Remote control car using Arduino
Height Measuring Device
มุมมอง 1.3K3 ปีที่แล้ว
Height Measuring Device
Arduino - Height Measuring Device
มุมมอง 1563 ปีที่แล้ว
Arduino - Height Measuring Device
Self Driving Car (Arduino+L298n Driver)
มุมมอง 4.5K3 ปีที่แล้ว
Self Driving Car (Arduino L298n Driver)
Mothers Day Arduino Project
มุมมอง 3613 ปีที่แล้ว
Mothers Day Arduino Project
DC Motor Arduino
มุมมอง 984 ปีที่แล้ว
DC Motor Arduino
Servo Motor - Arduino Uno
มุมมอง 574 ปีที่แล้ว
Servo Motor - Arduino Uno
Shift Register - LED Brightness - OE Pin
มุมมอง 5054 ปีที่แล้ว
Shift Register - LED Brightness - OE Pin
74HC595 Shift Register
มุมมอง 4984 ปีที่แล้ว
74HC595 Shift Register
Simple Security System using an Ultrasonic Sensor
มุมมอง 4614 ปีที่แล้ว
Simple Security System using an Ultrasonic Sensor
Programming Photo Resistor
มุมมอง 194 ปีที่แล้ว
Programming Photo Resistor
Programming DHT11 Sensor with Arduino
มุมมอง 1134 ปีที่แล้ว
Programming DHT11 Sensor with Arduino

ความคิดเห็น

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

    What is the model number/type of the ir receiver that you used? Need it for school rn please 😭🙏

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

    wut a guy

  • @DesertEagle-zs3vx
    @DesertEagle-zs3vx หลายเดือนก่อน

    Bro rhank you for the tutorial, it helped a lot

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

    first 😻

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

    A good explanation and quick too. Thank you.

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

    Thanks for the tutorial and the sample code! I just tried this as part of my child's science fair project and we were able to get the sensor readings via arduino very easily. Now I'm trying to change the code to trigger an alarm. Wish me luck =)

  • @Iliketoedit-
    @Iliketoedit- 3 หลายเดือนก่อน

    It's in chrome search for dis guys name and get the code and diagram

  • @marianomartinez9477
    @marianomartinez9477 6 หลายเดือนก่อน

    Good project!!!

  • @kenangelozamora526
    @kenangelozamora526 6 หลายเดือนก่อน

    How to calibrate this for so2?

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

    how did you make the forward wheel?

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

    Code and circuit diagram

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

    Thank u sir

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

    May I have the code and circuit diagram.

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

    Send code

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

    Thanks for the lesson. Quick question, what pins did you use for the joystick on the Arduino that is dedicated to the IR transmitter and joystick?

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

    Hi for some reason I can only get the left wheel to work, and it only moves backwards, no matter what button I am pressing.

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

      UPDATE: if i press 8 they go both go backwards very fast and if i press 2 only the right wheel goes forward

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

    thank you I solved my problem thanks to you

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

    Awesome! I was planning on making a robot similar to this! For future extension, you could add extra sensors to let it drive with precision!

  • @mangalladiestailor.8481
    @mangalladiestailor.8481 2 ปีที่แล้ว

    Please gove the code also

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

      #include <HCSR04.h> UltraSonicDistanceSensor ultrasonic(A0,A1); float distance; // left motor int leftMotorSpeedPin = 3; int leftMotorForwardPin = 4; int leftMotorBackwardPin = 5; // right motor int rightMotorSpeedPin = 11; int rightMotorForwardPin = 12; int rightMotorBackwardPin = 13; void setup() { pinMode(leftMotorSpeedPin, OUTPUT); pinMode(leftMotorForwardPin, OUTPUT); pinMode(leftMotorBackwardPin, OUTPUT); pinMode(rightMotorSpeedPin, OUTPUT); pinMode(rightMotorForwardPin, OUTPUT); pinMode(rightMotorBackwardPin, OUTPUT); Serial.begin(9600); digitalWrite(leftMotorSpeedPin, HIGH); digitalWrite(rightMotorSpeedPin, HIGH); } void loop() { distance = ultrasonic.measureDistanceCm(); //Use 'CM' for centimeters or 'INC' for inches Serial.println(distance); if (distance > -1 && distance < 25) { stop(); delay(1000); goBackward(); delay(300); stop(); delay(1000); if(random(0, 2) == 0) { goLeft(); } else { goRight(); } delay(500); stop(); delay(700); } else { goForward(); } } void goForward() { digitalWrite(leftMotorForwardPin, HIGH); digitalWrite(leftMotorBackwardPin, LOW); digitalWrite(rightMotorForwardPin, HIGH); digitalWrite(rightMotorBackwardPin, LOW); } void goBackward() { digitalWrite(leftMotorForwardPin, LOW); digitalWrite(leftMotorBackwardPin, HIGH); digitalWrite(rightMotorForwardPin, LOW); digitalWrite(rightMotorBackwardPin, HIGH); } void stop() { digitalWrite(leftMotorForwardPin, LOW); digitalWrite(leftMotorBackwardPin, LOW); digitalWrite(rightMotorForwardPin, LOW); digitalWrite(rightMotorBackwardPin, LOW); } void goRight() { digitalWrite(leftMotorForwardPin, HIGH); digitalWrite(leftMotorBackwardPin, LOW); digitalWrite(rightMotorForwardPin, LOW); digitalWrite(rightMotorBackwardPin, LOW); } void goLeft() { digitalWrite(leftMotorForwardPin, LOW); digitalWrite(leftMotorBackwardPin, LOW); digitalWrite(rightMotorForwardPin, HIGH); digitalWrite(rightMotorBackwardPin, LOW); }

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

    Great looking robot arm, well done mate looking forward to what you make next 👍

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

    Hi there can i have the schematic and the code please?

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

      Sure. You may find that on my website. Here is the link. aaravpatel.com/2020/06/12/remote-control-car/

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

    Isn't the MQ 136 a hydrogen sulfide detector?

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

    WoW sooo good I loce it, kkep up the good work man

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

    That's cool. Good job.

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

    136 for​ SO2​ But​ good​ vdo! 🎉​

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

    Aarav plz make new video

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

    Crazy

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

    This is lit. Is it hard

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

    That was very good

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

    Cool

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

    Free views for aarav

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

    I am going to subscribe with both of my accounts

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

    Its Anish aarav I am giving free views

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

    Hey Aarav it’s Shiv. We are giving you free views. I am goin to watch this in loop

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

    Aarav I gave you a view

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

    Hi aarav we gave you a view

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

    Great AND PASSIONATE job .AARAV PATEL👌👍👌👍.keep working and growing.....i like and suppourt the anyone who has my similar passion..and channel contents....and so i SUBSCRIBED YOURS AND became your 4TH SUBSCRIBER anyways all the very best Arduino lover👌👍.

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

      Thank you! I checked out your channel too, and it is very impressive!