Skip to content

Instantly share code, notes, and snippets.

@rngtng
Created January 9, 2012 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rngtng/1582447 to your computer and use it in GitHub Desktop.
Save rngtng/1582447 to your computer and use it in GitHub Desktop.
Simple Arduino NabaztagInjector example sketch
/**
* Simple Arduino NabaztagInjector example sketch
**/
#include <Nabaztag.h>
void setup() {
Nabaztag.begin();
}
void loop() {
// send 1337 to the rabbit
Nabaztag.inject(1337);
//done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment