1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Moved libraries folder inside platform folder. Now libraries and examples are searched per board/platform

This commit is contained in:
Cristian Maglie
2012-01-04 15:14:51 +01:00
parent 387e6b63c7
commit 57b8713cab
127 changed files with 191 additions and 192 deletions

View File

@ -1,21 +0,0 @@
#include <SoftwareSerial.h>
SoftwareSerial mySerial(2, 3);
void setup()
{
Serial.begin(57600);
Serial.println("Goodnight moon!");
// set the data rate for the SoftwareSerial port
mySerial.begin(4800);
mySerial.println("Hello, world?");
}
void loop() // run over and over
{
if (mySerial.available())
Serial.write(mySerial.read());
if (Serial.available())
mySerial.write(Serial.read());
}