From 50195665936e7bcab0a8ad1758cf2ee2ebe79a7a Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Mon, 2 May 2011 21:47:28 -0400 Subject: [PATCH] Changed #include in EEPROM library to #include for 1.0 --- .../SoftwareSerialExample.pde | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100755 libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.pde diff --git a/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.pde b/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.pde deleted file mode 100755 index fe9f89146..000000000 --- a/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.pde +++ /dev/null @@ -1,21 +0,0 @@ -#include - -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.print((char)mySerial.read()); - if (Serial.available()) - mySerial.print((char)Serial.read()); -}