Introduction: Motivation Button

About: Freelance Film Maker From Whitehorse Yukon. I enjoy biking, skiing, kayaking, and rock climbing among other things

This is a simple intro project for creating a "Motivation Button" with the intel Edison and the grove starter kit.

All you will need is a computer, a configured Intel Edison and the grove starter kit.

So lets jump right in!

Step 1: Plug It In

Connect both micro usb cables to your computer, and open the Arduino app.

Put in the spark shield on your Edison and plug in your Grove LCD RBG Backlight to I2C port and your Grove Button into D2 port.

Step 2: Code It!

In the Arduino app paste in this code:

<p>#include "rgb_lcd.h"</p><p>#include <Wire.h></p><p>rgb_lcd lcd;</p><p>const int buttonPin = 2;</p>void setup() 
{   lcd.begin(16, 2);
    pinMode(buttonPin, INPUT);
}
int colorR = 25;
int colorG = 255;
int colorB = 100;
void loop() 
{
  lcd.setRGB(colorR, colorG, colorB);
  lcd.clear();
  int buttonState = digitalRead(buttonPin);
  if (buttonState == HIGH) {
    lcd.write("You can do it!");
    int colorG = 255;
    int colorR = 0;
  } else {
    lcd.write("Need motivation?");
    int colorR = 255;
    int colorG = 0;
  }
 delay(100);
}


Click the arrow pointing to the right to upload