Skip to content

Commit

Permalink
Merge pull request #6 from davidahouse/master
Browse files Browse the repository at this point in the history
Updated BLEShieldSS to include setting the pinModes
  • Loading branch information
michaelkroll committed Feb 7, 2015
2 parents cb9922b + cfbbb84 commit 000eea3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arduino/BLEShieldSS/BLEShieldSS.ino
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ long interval = 1000;

void setup()
{
// Setup the RX/TX pins so the SoftwareSerial will send and receive
pinMode(2,INPUT);
pinMode(3,OUTPUT);

// set the data rate for the SoftwareSerial port
bleShield.begin(19200);
Serial.begin(19200);
Expand Down

0 comments on commit 000eea3

Please sign in to comment.