https://github.com/darashi/arduino-morse
https://github.com/darashi/arduino-morse
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/darashi/arduino-morse
- Owner: darashi
- Created: 2012-05-18T10:56:02.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-05-18T11:14:22.000Z (about 13 years ago)
- Last Synced: 2025-02-03T09:27:16.418Z (5 months ago)
- Language: C++
- Size: 94.7 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# morse for Arduino
## Example
#include "morse.h"
Morse morse(13, 100);
void setup()
{
}
void loop()
{
morse.sends("HELLO ARDUINO");
delay(3000);
}