How to use ADXL206 Analog Accelerometer with Arduino and see the readings Visually on Serial Plotter

3 years ago
3

#AeroArduino #Arduino

​🐵​🐒​ ​🐵​🐒​ ​🐵​🐒​ ​🐵​🐒​ ​🐵​🐒​ 👍👍👍👍👍👍👍👍👍👍👍👍
Code Monkey : Coding for Kids:
https://bit.ly/3oQiAuA
https://www.paypal.me/AeroArduino
#AeroArduino #Arduino #Accelerometer #ADXL206

How to use ADXL206 Analog Accelerometer with Arduino and see the readings Visually on Serial Plotter

Project on instructables:

Project on my blog:

Like, Share and Subscribe.

Arduino Code:
//////////////////////////////////////////////////////////////////////////////////////

int sensorValueX = 0;
int sensorValueY = 0;

void setup() {
// initialize serial communications at 9600 bps:
Serial.begin(9600);
}

void loop() {
// read the analog in value:
sensorValueX = analogRead(A0);
sensorValueY = analogRead(A1);

Serial.print("x, ");
Serial.print(sensorValueX, DEC);

Serial.print(" , y, ");
Serial.println(sensorValueY, DEC);

delay(150);
}
//////////////////////////////////////////////////////////////////////////////////////////////

Read My books on Amazon:
http://amazon.com/author/ahmedebeed

Check out my instructable page:
https://www.instructables.com/member/ahmedebeed555/instructables/

My Best Seller Backyard Wind Turbines Book on Amazon:
https://amzn.to/2GjyxpA

Wind Turbine DC Generator Model Science Experiment on Banggood:
https://usa.banggood.com/custlink/DmGvrByCoU

500Watt Wind Turbine Generator for home on Banggood:
https://usa.banggood.com/custlink/GKDvceEWBe

Large Wind Turbine:
http://s.click.aliexpress.com/e/2BQFQrJ

Get Wind Turbine Motor/Generator:
http://s.click.aliexpress.com/e/EAQZrzF

Wind Turbine For Kids:
http://s.click.aliexpress.com/e/eqNrr7I

My Solar Artwork Book on Amazon:
https://amzn.to/2X5dHPY

My Author page on Amazon:
amazon.com/author/ahmedebeed
https://amzn.to/2X2PGJy

My Best seller Embedded Systems Books on Amazon:
https://amzn.to/2D7nIVC
https://amzn.to/2WZ6pNG

My Embedded Systems Blog:
embedded-egypt.blogsopt.com

My website:
www.aeroarduino.com

----------------------------------------------------------------------------------------

Here are some books on Travel our Amazon Store:

A Trip To Siwa Oasis: Tourist guide to an Egyptian Oasis
https://amzn.to/2PrIpQU

3 Easy steps to plan your trip: Travel Like an Insider
https://amzn.to/2W5pgGO

Why to Travel?: Travel Like an Insider
https://amzn.to/2DxCEwp

The Ultimate travel bag list
https://amzn.to/2GFNGS9

Loading comments...