Skip to content

Instantly share code, notes, and snippets.

@dwhacks
Created June 10, 2014 01:40
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 dwhacks/0eb058b01def597d948c to your computer and use it in GitHub Desktop.
Save dwhacks/0eb058b01def597d948c to your computer and use it in GitHub Desktop.
attiny_13 beacon
// attiny13_beacon.ino
#include <Morse.h>
Morse morse(4, 10, 1); //set up the Morse Pin, Speed, type
void setup() {
}
void loop() {
morse.sendmsg("FIND ME");
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment