ADXL3xx Accelerometer using an Arduino

ADXL3xx Accelerometer

This tutorial shows you how to read an Analog Devices ADXL3xx series (e.g. ADXL320, ADXL321, ADXL322, ADXL330) accelerometer and communicate the acceleration to the a personal computer.ADXL3xx Accelerometer

This tutorial was built using the breakout boards from Sparkfun. The adafruit accelerometer breakout board also works, though it must be wired differently.

The ADXL3xx outputs the acceleration on each axis as an analog voltage between 0 and 5 volts. To read this, all you need is the analogRead() function.

Circuit

The accelerometer uses very little amperage, so it can be plugged into your Arduino and run directly off of the output from the Arduino’s digital output pins. To do this, you’ll use three of the analog input pins as digital I/O pins, for power and ground to the accelerometer, and for the self-test pin. You’ll use the other three analog inputs to read the acclerometer’s analog outputs.

image developed using Fritzing. For more circuit examples, see the Fritzing project page

Schematic:

ADXL3xx Accelerometer schematic

Code

/*
ADXL3xx

Reads an Analog Devices ADXL3xx accelerometer and communicates the
acceleration to the computer.  The pins used are designed to be easily
compatible with the breakout boards from Sparkfun, available from:
http://www.sparkfun.com/commerce/categories.php?c=80

http://www.arduino.cc/en/Tutorial/ADXL3xx

 

Read more: ADXL3xx Accelerometer using an Arduino

Leave a Comment

Your email address will not be published. Required fields are marked *