Giter Site home page Giter Site logo

adxl345's Introduction

ADXL345

ADXL345

ADXL345 3-Axis Accelerometer

The ADXL345 device, provides digital acceleration for X, Y and Z axis.

This Device is available from ControlEverything.com [SKU: ADXL345_I2CS]

https://www.controleverything.com/content/Accelorometer?sku=ADXL345_I2CS

This Sample code can be used with Raspberry Pi, Arduino and Particle Photon, Beaglebone Black and Onion Omega.

Java

Download and install pi4j library on Raspberry pi. Steps to install pi4j are provided at:

http://pi4j.com/install.html

Download (or git pull) the code in pi.

Compile the java program.

$> pi4j ADXL345.java

Run the java program.

$> pi4j ADXL345

Python

Download and install smbus library on Raspberry pi. Steps to install smbus are provided at:

https://pypi.python.org/pypi/smbus-cffi/0.5.1

Download (or git pull) the code in pi. Run the program.

$> python ADXL345.py

Arduino

Download and install Arduino Software (IDE) on your machine. Steps to install Arduino are provided at:

https://www.arduino.cc/en/Main/Software

Download (or git pull) the code and double click the file to run the program.

Compile and upload the code on Arduino IDE and see the output on Serial Monitor.

Particle Photon

Login to your Photon and setup your device according to steps provided at:

https://docs.particle.io/guide/getting-started/connect/photon/

Download (or git pull) the code. Go to online IDE and copy the code.

https://build.particle.io/build/

Verify and flash the code on your Photon. Code output is shown in logs at dashboard.

https://dashboard.particle.io/user/logs

##C

Download (or git pull) the code in Beaglebone Black.

Compile the c program.

$>gcc ADXL345.c -o ADXL345

Run the c program.

$>./ADXL345

Onion Omega

Get Started and setting up the Onion Omega according to steps provided at :

https://wiki.onion.io/Get-Started

To install the Python module, run the following commands:

opkg update
opkg install python-light pyOnionI2C

Download (or git pull) the code in Onion Omega. Run the program.

$> python ADXL345.py

ESP8266

Install the Boards Manager on your Arduino IDE. The Steps are provided at:

http://www.arduinesp.com/getting-started

Download (or git pull) the code and double click the file to run the program.

Compile and upload the code on Arduino IDE and see the output on Serial Monitor.

Copy the IP Address of your ESP8266 from Serial Monitor and paste it in your Web Browser to see the result on Web Server.

Note: Your system and ESP8266 should be connected to same Wi-Fi Network.

Windows 10 IoT Core

To download Windows 10 IoT Core, visit Get Started page

https://developer.microsoft.com/en-us/windows/iot/GetStarted

Download (or git pull) the sample, make a copy on your disk and open the project from Visual Studio.

Note: Your IoT Core device and development PC should be connected to same local Network.

#####The code output is raw value of acceleration in X, Y and Z Axis.

adxl345's People

Contributors

irfan-ansari-au28 avatar ryker1990 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

adxl345's Issues

I/O Error on this python code in raspberry pi 2

hi sir,
thanks for sharing this code.I have some doughts about this code.I run this same code in RPi board.after installing smbus and enabling I2C model.but it's showing i/o error, so please help me for this error.
the error is
[
pi@raspberrypi:~/Desktop/Nexsys $ sudo python ADXL345.py
Traceback (most recent call last):
File "ADXL345.py", line 6, in
bus.write_byte_data(0x53, 0x2C, 0x0A)
IOError: [Errno 5] Input/output error
]
my code is:

import smbus
import time

bus = smbus.SMBus(1)

bus.write_byte_data(0x53, 0x2C, 0x0A)
bus.write_byte_data(0x53, 0x2D, 0x08)
bus.write_byte_data(0x53, 0x31, 0x08)

time.sleep(0.5)

data0 = bus.read_byte_data(0x53, 0x32)
data1 = bus.read_byte_data(0x53, 0x33)

xAccl = ((data1 & 0x03) * 256) + data0

if xAccl > 511 :
xAccl -= 1024
data0 = bus.read_byte_data(0x53, 0x34)
data1 = bus.read_byte_data(0x53, 0x35)
yAccl = ((data1 & 0x03) * 256) + data0
if yAccl > 511 :
yAccl -= 1024
data0 = bus.read_byte_data(0x53, 0x36)
data1 = bus.read_byte_data(0x53, 0x37)
zAccl = ((data1 & 0x03) * 256) + data0
if zAccl > 511 :
zAccl -= 1024

Output data to screen

print "Acceleration in X-Axis : %d" %xAccl
print "Acceleration in Y-Axis : %d" %yAccl
print "Acceleration in Z-Axis : %d" %zAccl

thanks,
[email protected]

Concatenate several devices

I need to Concatenate 10 accelerometers to read acceleration simultaiusly using one I2C line
How can I do this?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.