In this Arduino Tutorial you will learn how to use the HC-SR04 Ultrasonic sensor. It can measure distance from 2 cm to 4 meters with a ranging accuracy of 3mm. Arduino and MPU6050 Accelerometer and Gyroscope Tutorial In this tutorial we will learn how to use the MPU6050 Accelerometer and Gy...
In Electronics, most of the time Ultrasonic Sensors are used to measure the distance from one particular point to another. It is very easy to write a code on the Arduino board and integrate anultrasonic sensorto carry out this task. But in this article, we are going to adopt a different ...
You have probably heard of the ArduinoTMwhich is not a microcontroller but rather an open source movement that uses Atmel (and other) microcontrollers to offer a simplified way of connecting hardware (shields) and control devices (software). Because the hardware and software is open source many ...
In this tutorial, we will be building a simplearduino maze solving robot. The robot uses IR sensor to detect the maze and employs an algorithm called hand on wall rule to navigate through the maze and find the exit. Please note we have used lines to create the maze instead of building w...
In our project, the Arduino Uno is programmed to make the robot move forward, turn right or turn left and stop according to the input coming from the sensor. The output of the Arduino is fed to the motor driver. Why We Require a Motor Driver? The reason to use a motor driver here...
How to Set Up a Raspberry Pi Web Server How to Change Raspberry Pi's Hostname How to Use Raspberry Pi and Arduino Together How to Use Raspberry Pi as a PC Webcam How to Install Ubuntu on a Raspberry Pi How to Run Raspberry Pi 4 or 3 Off an SSD or Flash Drive How to Create Cust...
How Does the Arduino Ultrasonic Range Finder Work?For this range finder, we use an UltraSonic sensor to measure the distance between two points. The principle of operation for this sensor is measuring the distance traveled by sound in a given time. The sensor generates high-frequency sound waves...
Learn how to decode data from car parking sensors by reverse engineering cheap ultrasonic sensors. This comprehensive guide provides step-by-step instructions, Arduino sketches, and insights into understanding PWM signals, making it perfect for robotics enthusiasts and engineers. Hello...
In this tutorial we will learn how rotary encoder works and how to use it with Arduino. A rotary encoder is a type of position sensor which is used for...
How to filter noise from sensor reading in Arduino code?AnswerThe reading value from sensors may includes noise, especially for analog sensor or environment-sensitive sensor such as ultrasonic sensor. You can use the below method to remove the noised values....