diff options
author | Fede85 <f.vanzati@gmail.com> | 2013-09-06 15:38:07 +0200 |
---|---|---|
committer | Fede85 <f.vanzati@gmail.com> | 2013-09-06 15:38:07 +0200 |
commit | a3e2e68e2b7edb9f5434734bed4001df1e65451c (patch) | |
tree | d4ef938bd8179a15d41b19197c51ca0a7f93936f /libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino | |
parent | 35f10e412f5d00027f9d7f2036243c681dbec406 (diff) |
Bridge library to the 1.5 format
Diffstat (limited to 'libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino')
-rw-r--r-- | libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino b/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino deleted file mode 100644 index c962b6e..0000000 --- a/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino +++ /dev/null @@ -1,62 +0,0 @@ -/* - Console Pixel - - An example of using the Arduino board to receive data from the - Console on the Arduino Yun. In this case, the Arduino boards turns on an LED when - it receives the character 'H', and turns off the LED when it - receives the character 'L'. - - To see the Console, pick your Yún's name and IP address in the Port menu - then open the Port Monitor. You can also see it by opening a terminal window - and typing - ssh root@ yourYunsName.local 'telnet localhost 6571' - then pressing enter. When prompted for the password, enter it. - - - The circuit: - * LED connected from digital pin 13 to ground - - created 2006 - by David A. Mellis - modified 25 Jun 2013 - by Tom Igoe - - This example code is in the public domain. - - */ - -#include <Console.h> - -const int ledPin = 13; // the pin that the LED is attached to -char incomingByte; // a variable to read incoming Console data into - -void setup() { - Bridge.begin(); // Initialize Bridge - Console.begin(); // Initialize Console - - // Wait for the Console port to connect - while(!Console); - - Console.println("type H or L to turn pin 13 on or off"); - - // initialize the LED pin as an output: - pinMode(ledPin, OUTPUT); -} - -void loop() { - // see if there's incoming Console data: - if (Console.available() > 0) { - // read the oldest byte in the Console buffer: - incomingByte = Console.read(); - Console.println(incomingByte); - // if it's a capital H (ASCII 72), turn on the LED: - if (incomingByte == 'H') { - digitalWrite(ledPin, HIGH); - } - // if it's an L (ASCII 76) turn off the LED: - if (incomingByte == 'L') { - digitalWrite(ledPin, LOW); - } - } -} - |