mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-04 01:42:04 +03:00
.settings
app
arduino-builder
arduino-core
build
docs
hardware
libraries
Adafruit_ILI9341
Audio
Bridge
examples
Bridge
ConsoleAsciiTable
ConsolePixel
ConsoleRead
ConsoleRead.ino
Datalogger
FileWriteScript
HttpClient
MailboxReadMessage
Process
ShellCommands
SpacebrewYun
Temboo
TemperatureWebPanel
TimeCheck
WiFiStatus
YunSerialTerminal
src
README.adoc
keywords.txt
library.properties
Esplora
Ethernet
GSM
LiquidCrystal
OneWire
RobotIRremote
Robot_Control
Robot_Motor
SD
Scheduler
Servo
SpacebrewYun
Stepper
TFT
USBHost
WiFi
.classpath
.gitignore
.project
.travis.yml
README.Arduino.md
README.md
appveyor.yml
format.every.sketch.sh
lib_sync
license.txt
62 lines
1.5 KiB
C++
62 lines
1.5 KiB
C++
/*
|
|
Console Read example
|
|
|
|
Read data coming from bridge using the Console.read() function
|
|
and store it in a string.
|
|
|
|
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.
|
|
|
|
created 13 Jun 2013
|
|
by Angelo Scialabba
|
|
modified 16 June 2013
|
|
by Tom Igoe
|
|
|
|
This example code is in the public domain.
|
|
|
|
http://www.arduino.cc/en/Tutorial/ConsoleRead
|
|
|
|
*/
|
|
|
|
#include <Console.h>
|
|
|
|
String name;
|
|
|
|
void setup() {
|
|
// Initialize Console and wait for port to open:
|
|
Bridge.begin();
|
|
Console.begin();
|
|
|
|
// Wait for Console port to connect
|
|
while (!Console);
|
|
|
|
Console.println("Hi, what's your name?");
|
|
}
|
|
|
|
void loop() {
|
|
if (Console.available() > 0) {
|
|
char c = Console.read(); // read the next char received
|
|
// look for the newline character, this is the last character in the string
|
|
if (c == '\n') {
|
|
//print text with the name received
|
|
Console.print("Hi ");
|
|
Console.print(name);
|
|
Console.println("! Nice to meet you!");
|
|
Console.println();
|
|
// Ask again for name and clear the old name
|
|
Console.println("Hi, what's your name?");
|
|
name = ""; // clear the name string
|
|
}
|
|
else { // if the buffer is empty Cosole.read() returns -1
|
|
name += c; // append the read char from Console to the name string
|
|
}
|
|
} else {
|
|
delay(100);
|
|
}
|
|
}
|
|
|
|
|