by Anmol Punetha | Mar 21, 2020 | arduino uno projects
Introduction Ultrasonic sensors work by emitting sound waves at a frequency too high for humans to hear. They then wait for the sound to be reflected back, calculating distance based on the time required. Since ultrasonic waves can reflect off a glass or liquid...
by Anmol Punetha | Mar 20, 2020 | arduino uno projects
Introduction A Servo Motor is a small device that has an output shaft. This shaft can be positioned to specific angular positions by sending the servo a coded signal. As long as the coded signal exists on the input line, the servo will maintain the angular position of...
by Anmol Punetha | Mar 20, 2020 | arduino uno projects
Introduction An IR (Infrared sensor)is an electronic device, that emits in order to sense some aspects of the surroundings. An IR sensor can measure the heat of an object as well as detects the motion. The emitter is simply an IR LED( Light Emitting Diode) and...
by Anmol Punetha | Mar 19, 2020 | arduino uno projects
Blinking a LED is the most basic project in the Arduino. You basically make some easy connections, write the code and upload it in the Arduino. With that, you can control the blinking rate, the duration for which it was glowing and lot more. To know how to install the...
by Anmol Punetha | Mar 19, 2020 | Arduino IDE Programming
As soon as you open the Arduino IDE, you will see a window of the Arduino code , consisting of basically two main parts: setup and loop. The entire code written in the Arduino IDE is known as sketch. A sketch is the name that Arduino uses for a program. It’s the...