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: about 1 month ago
JSON representation
MicroPython Morse Code
- Host: GitHub
- URL: https://github.com/mampersat/micropython-morsecode
- Owner: mampersat
- Created: 2017-03-28T23:07:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-07T15:20:10.000Z (almost 4 years ago)
- Last Synced: 2024-08-02T20:45:20.265Z (4 months ago)
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-micropython - micropython-morsecode - Blink an LED with Morse Coded message. (Libraries / Display)
- awesome-mpython - micropython-morsecode - Blink an LED with morse coded message. (精选驱动库 / 显示类)
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 networkwhile True:
# get last 3 digits of IP address
s = network.WLAN().ifconfig()[0].split('.')[3] + ' '# send morse code
morsecode.send(s)
```