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 ...
This makes the Arduino Extremely Easy to use. Arduino TheArduino projectmakes it even easier to use microcontrollers as it gives you an open source compiler and simple IDE (Integrated Design Environment). It lets you program in C/C++ and upload programs very easily with the push of a button....
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...
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...
Use an Arduino to make a range finder that measures distance using ultrasonic technology. Project A range finder is a device used to find the distance from a point to the nearest obstacle. This device uses ultrasonic technology to measure the distance. You can consider it like an electronic, ...
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....
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...