Created
July 18, 2011 22:52
-
-
Save neufuture/1090900 to your computer and use it in GitHub Desktop.
Bluetooth Test Sketch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup(){ | |
Serial.begin(57600); | |
Serial.print("\r\n+INQ=1\r\n"); // Begin Inquiry | |
delay(500); | |
} | |
void loop(){ | |
Serial.println("Hello World"); | |
delay(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment