Ecosyste.ms: Awesome

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

https://github.com/mampersat/micropython-morsecode

MicroPython Morse Code
https://github.com/mampersat/micropython-morsecode

Last synced: 2 months ago
JSON representation

MicroPython Morse Code

Lists

README

        

MicroPython Morse Code
======================

Blink an LED with morse coded message

## Example main.py
Blink the last 3 digits of device's IP address

```
import morsecode
import network

while True:
# get last 3 digits of IP address
s = network.WLAN().ifconfig()[0].split('.')[3] + ' '

# send morse code
morsecode.send(s)
```