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: 3 months 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);
}