added detailed readme + pictures

This commit is contained in:
Dustin Brunner
2025-09-13 20:39:12 +02:00
parent e4b4258424
commit fa08127a0e
3 changed files with 16 additions and 0 deletions

View File

@@ -1,7 +1,23 @@
# ESP8266 Morse Decoder
A quick project for decoding morse symbols with ESP8266. Most of the code was generated by ChatGPT.
<img src="pictures/Morse_Decoder_1.jpg" width="300px">
<img src="pictures/Morse_Decoder_2.jpg" width="300px">
### Features
- decode morse symbols, consisting of a combination of short and long pulses
- pulses are entered via one of two GPIO pins, one pin has decoupled inputs to be used with an external power supply with a voltage of around 5V.
- decoded letters and numbers are displayed on a display, display automatically clears after a defined time
- display shows a "progress bar" which indicates, when a pulse is interpreted as a long or short pulse. The threshold value for long and short pulses can be defined in the code
### Hardware
<img src="schematic_Schaltplan.png" width="600px">
<img src="schematic_Leiterplatte.png" width="400px">
### Software
The used libraries are linked in the code.
The display shows a custom logo in the top right corner. For creating the bytecode of this logo, the software image2cpp (https://github.com/javl/image2cpp or https://javl.github.io/image2cpp/) was used. When creating the logo, make sure to select *Swap bits in byte* in the configuration. The default logo has the size `55x16px`. When your logo has a different size, make sure to change the `logo_width` and `logo_height` defines in the code.