kids

Arduino Weight Measurement using Load Cell and HX711 Module

Today we are going to Measure the Weight by interfacing Load Cell and HX711 Weight Sensor with Arduino. We have seen weight machines at many shops, where machine displays the weight just by placing any item on the weighing platform. So here we are building the same Weighing machine by using Arduino and Load cells, having capacity …

Arduino Weight Measurement using Load Cell and HX711 Module Read More »

Arduino while loop (1)

How to use a while loop to calibrate the value of an analog sensor using Arduino

Sometimes you want everything in the program to stop while a given condition is true. You can do this using a while loop. This example shows how to use a while loop to calibrate the value of an analog sensor. In the main loop, the sketch below reads the value of a photoresistor on analog pin 0 and …

How to use a while loop to calibrate the value of an analog sensor using Arduino Read More »

Tactile Feedback Compass Belt

How to Make a Tactile Feedback Compass Belt using Arduino

Have you ever wondered how migratory birds manage to have such an amazing sense of direction despite being so generally clueless? They can sense the Earth’s magnetic field with what is basically a compass built into their body. Wouldn’t it be cool to feel what that’s like? The following instructions are loosely based off of …

How to Make a Tactile Feedback Compass Belt using Arduino Read More »

Arduino Memsic 2125 Accelerometer

Memsic 2125 Accelerometer using Arduino

The Memsic 2125 (datasheet) is a two-axis accelerometer capable of measuring acceleration up to plus or minus 2g. It has a simple digital interface: two pins (one for each axis) emit pulses whose duration corresponds to the acceleration of that axis. By measuring the length of that pulse, in microseconds, using the Arduino’s pulseIn() function, it is possible to …

Memsic 2125 Accelerometer using Arduino Read More »