Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/darashi/arduino-morse


https://github.com/darashi/arduino-morse

Last synced: 13 days ago
JSON representation

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);
}