Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darashi/arduino-morse
https://github.com/darashi/arduino-morse
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/darashi/arduino-morse
- Owner: darashi
- Created: 2012-05-18T10:56:02.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-18T11:14:22.000Z (over 12 years ago)
- Last Synced: 2024-12-08T15:40:47.377Z (about 1 month 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);
}