Translate Language:




















Description:
In this project, I have made a Digital Arduino Spirit Level Meter. All information regarding this project is already provided below like Circuit Diagrams, Programming Codes, required Components List and project images. This is very easy to assemble for beginners and students. I hope you will enjoy / like this project.
Digital spirit stages also are called digital spirit stages or virtual inclinometers. The layout of the virtual spirit stage is largely equal to that of an analogue spirit stage. As nicely because the profile and shock-soaking up cease caps, the virtual spirit stage normally has vials with horizontal and vertical alignment. If there’s no vial incorporated, they’re known as virtual inclinometers. What makes the spirit stage a virtual spirit stage is the incorporated electronics with inside the shape of an digital tilt module. The studying is proven at the module’s virtual display.
As properly because the integrated vial, the virtual spirit stage has an incorporated digital tilt module with virtual LCD show. Depending at the design, the virtual spirit stage module runs on a single-use or rechargeable battery. The size method basically corresponds to that of an analogue spirit stage. The size can both be examine off from the integrated vial or through the virtual show at the digital module. If, for example, you’re measuring dispositions and slopes, calculating angles or leveling objects, the studying is proven without delay at the virtual spirit stage’s show. Digital spirit tiers normally offer the choice of showing the studying in unique units (e.g. in percent, degree, mm/m or in/ft).
Circuit diagram
of Arduino Spirit Level Meter
Programming Code
#include <LiquidCrystal.h>
LiquidCrystal lcd(3,4,5,6,7,8);
int x,y;
void setup()
{
lcd.begin(16, 2);
lcd.clear();
lcd.print(" Level Meter ");
lcd.setCursor(0,1);
lcd.print(" X: Y: ");
}
void loop()
{
x=analogRead(A0);
y=analogRead(A1);
x=360-x;
y=360-y;
lcd.setCursor(3,1);
lcd.print(x);
lcd.print(" ");
lcd.setCursor(10,1);
lcd.print(y);
lcd.print(" ");
delay(1000);
}
Project Images
of Arduino Spirit Level Meter
Components List
used in Arduino Spirit Level Meter
Watch Video Tutorial