Friday, February 5, 2016

How to set Led on Bean Blue board.

This blog is about how to enable a single LED on the Bean using the Bean Loader.
To read more about the Bean : https://punchthrough.com/bean/

You require a) Arduino Sketch  and the Blue Bean Loader installed on your laptop.


First,

Open Arduino -> New
and enter this.

void setup() {
 Bean.setLed(255, 255, 255);
}

void loop() {
 Bean.sleep(1000);
}


Check this first that the code executes by a)Verify b) Upload
Tools -Board - Light Blue Board
Port -> Light Blue Board.
Programmer-> Bean Loader

Next, Open the Bean Loader and click on Connect-> Upload
Once the Upload is successful - the LED should light up on the bean.
Code was from https://punchthrough.com/bean/reference setLed()

For additional information : https://punchthrough.com/bean/



No comments:

Post a Comment