Store address and hours
location_on 4131 Fraser St. Vancouver BC Get Directions
phone 604-875-1993 Call us
access_time Hours
Monday - Friday | 9AM - 5:30PM |
Saturday - Sunday & Holidays | Closed | See Holiday Hours |
Closed
• Opens Mon at 9AM
close
Menu
-
close
-
CATEGORIES
-
-
-
-
-
-
-
-
-
-
-
-
-
Featured Items
-
-
-
-
-
-
-
More mirco-controllers
-
More Developement Tools
-
-
More Prototyping
-
More Modules
-
-
Featured Items
-
More prototyping Tools
-
-
-
-
-
-
-
-
Featured Item
-
-
-
-
-
-
-
Featured Items
-
-
-
-
-
-
-
-
Featured Items
-
-
-
-
-
-
-
-
-
-
-
-
-
Featured Items
-
-
-
-
-
-
-
-
-
Featured Items
-
-
-
-
-
-
Popular Cleaners
-
-
-
Featured Items
-
-
-
-
-
-
-
Featured Items
-
-
-
-
-
Featured Items
-
-
-
-
Featured Products
-
-
-
-
-
more motor
-
-
more power supplies
-
-
Featured Items
-
-
-
more electrical devices
-
-
-
-
-
-
-
Featured Items
-
-
-
-
-
-
BRANDS
-
- PROJECTS
-
COMMUNITY
-
-
-
FEATURED POSTS
-
-
-
- SALE
ARDUINO ESPLORA
All pictures are for illustrative purposes only.
Description
ARDUINO ESPLORA
Get started at the official arduino esplora site: http://arduino.cc/en/Guide/ArduinoEsplora
Copy the code below, and paste it into the Arduino IDE. Make sure you have the right serial port and the Esplora board selected, as you did previously. Plug your board in and upload the code. Once it is uploaded, you should see the RGB LED flashing.
// include the Esplora library #include <Esplora.h> void setup() { // nothing to setup } void loop() { // write light level to the red LED // 0 means the LED is off, 255 is full brightness Esplora.writeRed(255); // add a delay to keep the LED lit for // 1000 milliseconds (1 second) delay(1000); // turn the red LED off, and the green LED on Esplora.writeRed(0); Esplora.writeGreen(255); // add a delay delay(1000); // turn the green LED off, and the blue LED on Esplora.writeGreen(0); Esplora.writeBlue(255); // add a delay delay(1000); // turn all the LEDs on together Esplora.writeRGB(255, 255, 255); // add a delay delay(1000); // turn the LEDs off Esplora.writeRGB(0, 0, 0); // add a delay delay(1000); } |