Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paramsiddharth/esp32-morse
A simple text to morse code generator that runs on an ESP32 microcontroller.
https://github.com/paramsiddharth/esp32-morse
esp32 internet-of-things morse-code serial tinygo
Last synced: about 1 month ago
JSON representation
A simple text to morse code generator that runs on an ESP32 microcontroller.
- Host: GitHub
- URL: https://github.com/paramsiddharth/esp32-morse
- Owner: paramsiddharth
- Created: 2024-08-26T08:25:41.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-26T11:17:15.000Z (4 months ago)
- Last Synced: 2024-10-20T04:44:32.550Z (2 months ago)
- Topics: esp32, internet-of-things, morse-code, serial, tinygo
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Morse Code Generator (ESP32)
A simple text to morse code generator that runs on an ESP-32 microcontroller.# Instructions
Follow the given instructions to deploy this app to your own ESP32 microcontroller.For the examples, assume the port to be accessible at `/dev/ttyUSB0`.
## Installing Dependencies
Install all Python and locally.
```bash
make deps
```## Compile
Build the app.
```bash
make build port=/dev/ttyUSB0
```## Upload
Burn the app with the firmware to the microcontroller.
```bash
make flash port=/dev/ttyUSB0
```You're done! You now have a morse code generator running on your microcontroller, accessible via a serial console connection.
If you connect to the serial monitor and enter some text, you'll see morse code being printed to the console as well as being rendered via the build-in LED.
```bash
make serial port=/dev/ttyUSB0
```# Made with ❤ by [Param](https://www.paramsid.com).