Skip to content

Instantly share code, notes, and snippets.

@Arachnid
Created October 30, 2014 13:39
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 Arachnid/ef2abaf78e600b97aab0 to your computer and use it in GitHub Desktop.
Save Arachnid/ef2abaf78e600b97aab0 to your computer and use it in GitHub Desktop.
CommsLink cl("My device", 12345);
int my_int;
void ioinit() {
cl.register(&my_int);
}
void loop() {
while(1) {
cl.runOnce();
digitalWrite(2, my_int);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment