Skip to content

Instantly share code, notes, and snippets.

@neufuture
Created July 18, 2011 22:52
Show Gist options
  • Save neufuture/1090900 to your computer and use it in GitHub Desktop.
Save neufuture/1090900 to your computer and use it in GitHub Desktop.
Bluetooth Test Sketch
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