Introduction: Accelerometer Using Arduino 101

About: Programming is my love and engineering is my third party :)

Learn how to read Accelerometer Sensor on Arduino 101 and show tilt status on LED.

Arduino 101 is good for IOT starters. Having the Intel® Curie™ Module, designed to integrate the core's low power-consumption and high performance with the Arduino's ease-of-use, Bluetooth Low Energy capabilities and on-board 6-axis accelerometer/gyroscope, this board will provide exciting opportunities for building creative projects in the connected world.

More information about the technical specifications and documentation can be found on the Arduino/Genuino 101 main page.

Requirements

  1. Arduino Microcontroller
  2. 3pcs LEDS
  3. 3pcs resistor of 220 ohms
  4. Bread Board
  5. 4pcs jumper wires

Step 1: Build Circuit

Lets build our circuit!

  1. Connect Arduino 101 pin GND (ground) to one of the bread board pins. I picked the upper left pin.
  2. Connect 3 resistor on the same column of the GND jumper wire
  3. Add 3 LEDs each negative pin is connected to the other end of its resistor
  4. Grab 3 jumper wire
  5. Connect 1st LED's positive pin to Digita Pin ~9
  6. Connect 2nd LED's positive pin to Digita Pin ~6
  7. Connect 3d LED's positive pin to Digita Pin ~5

Our circuit must be look like the images above.

Step 2: Program Our Arduino 101

Plug in your Arduino 101.

Download ReadSensorsLed source code and upload it.

Testing our accelerometer

  1. Tilt Sideways - The yellow LED will light up if we are in positive X axis
  2. Tilt Upside down - The Orange LED will light up if we are in positive Y axis
  3. Tilt - The Red LED will light up if we are in positive Z axis.

The brightness of the LED corresponds to the value of the positive axis.

The maximum readings for each axis is 17000.

So we calculated the brightness (0-255) of the analogWrite by brightness = axis/66.66 ;

About the Code

Arduino 101 has Intel Curie Module that uses Arduino api CurieIMU.h

We can read the accelerometer and gyroscope using this function.

CurieIMU.readMotionSensor(ax, ay, az, gx, gy, gz);

The axis variables are used as parameter and will be referenced by the api to update the values.

Finally get the brightness of led using the formula and update the LED

<p>if(ax>0)<br>    axBrightness = ax/66.66;
  else
    axBrightness=0;
  analogWrite(axLed,axBrightness);</p><p>  if(ay>0)
    ayBrightness = ay/66.66;
  else
    ayBrightness=0;
  analogWrite(ayLed,ayBrightness);
  
  if(az>0)
    azBrightness = az/66.66;
  else
    azBrightness=0;
  analogWrite(azLed,azBrightness);</p>
Makerspace Contest 2017

Participated in the
Makerspace Contest 2017