diff --git a/README.md b/README.md
index 3f7b840..973ad00 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,23 @@
# ESP8266 Morse Decoder
+A quick project for decoding morse symbols with ESP8266. Most of the code was generated by ChatGPT.
+
+
+
+
+### 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
+
+
+### 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.
\ No newline at end of file
diff --git a/pictures/Morse_Decoder_1.jpg b/pictures/Morse_Decoder_1.jpg
new file mode 100644
index 0000000..03296d4
Binary files /dev/null and b/pictures/Morse_Decoder_1.jpg differ
diff --git a/pictures/Morse_Decoder_2.jpg b/pictures/Morse_Decoder_2.jpg
new file mode 100644
index 0000000..9e4ad0b
Binary files /dev/null and b/pictures/Morse_Decoder_2.jpg differ