diff --git a/README.md b/README.md
index 8f03716..1967f51 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,107 @@
+[![CI](https://github.com/matthias-bs/growatt2lorawan-v2/actions/workflows/CI.yml/badge.svg)](https://github.com/matthias-bs/growatt2lorawan-v2/actions/workflows/CI.yml)
+[![GitHub release](https://img.shields.io/github/release/matthias-bs/growatt2lorawan-v2?maxAge=3600)](https://github.com/matthias-bs/growatt2lorawan-v2/releases)
+[![License: MIT](https://img.shields.io/badge/license-MIT-green)](https://github.com/matthias-bs/growatt2lorawan-v2/blob/main/LICENSE)
+
# growatt2lorawan-v2
LoRaWAN Node for Growatt Photovoltaic Inverter Modbus Data Interface
+This project can be used if you want to monitor your PV Inverter in case it is out of reach of your WiFi access point (and a WiFi repeater would not help/is not wanted) and you are not able to cover the distance with an RS485 cable.
+Otherwise, the original Growatt ShineWiFi-S (serial) / ShineWiFi-X (USB), the customized [otti/Growatt_ShineWiFi-S](https://github.com/otti/Growatt_ShineWiFi-S) or [nygma2004/growatt2mqtt](https://github.com/nygma2004/growatt2mqtt) can be used.
+
+
+
This is a reimplementation of [growatt2lorawan](https://github.com/matthias-bs/growatt2lorawan) using [RadioLib](https://github.com/jgromes/RadioLib).
-**Work in progress...**
+:construction_worker: **Work in Progress!** :construction_worker:
- [X] Scheduled uplink (2 message types)
- [X] Network time sync
- [ ] Downlink decoding
- [ ] Commanded uplink (configuration)
+## Hardware Requirements
+* ESP32 (optionally with LiPo battery charger and battery)
+* SX1276 or SX1262 (or compatible) LoRaWAN Radio Transceiver
+* LoRaWAN Antenna
+* optional: RS485 Transceiver - 3.3V compatible, half-duplex capable (e.g [Waveshare 4777](https://www.waveshare.com/wiki/RS485_Board_(3.3V)) module)
+* optional: USB-to-TTL converter for Debugging (e.g. [AZ Delivery HW-598](https://www.az-delivery.de/en/products/hw-598-usb-auf-seriell-adapter-mit-cp2102-chip-und-kabel))
+
+## Inverter Modbus Interface Options
+
+1. USB Interface
+
+ The inverter's USB port operates like a USB serial port (UART) interface at 115200 bits/s. If the length of a standard USB cable is sufficient to connect the ESP32 to the inverter (and there are no compatibility issues with the ESP32 board's USB serial interface), this is the easiest variant, because no extra hardware is needed.
+
+ As pointed out in [otti/Growatt_ShineWiFi-S](https://github.com/otti/Growatt_ShineWiFi-S/blob/master/README.md), **only CH340-based USB-Serial converters are compatible** - converters with CP21XX and FTDI chips **do not work**!
+
+2. COM Interface
+
+ The inverter's COM port provides an RS485 interface at 9600 bits/s. An RS485 tranceiver is required to connect it to the ESP32.
+
+### Modbus Interface Select Input
+
+The desired interface is selected by pulling the GPIO pin `INTERFACE_SEL` (defined in `settings.h`) to 3.3V or GND, respectively:
+
+| Level | Modbus Interface Selection |
+| ----- | ---------------------------- |
+| low (GND) | USB Interface |
+| high (3.3V/open) | RS485 Interface |
+
+## Power Supply
+
+The ESP32 development board can be powered from the inverter's USB port **which only provides power if the inverter is active**.
+
+**No sun - no power - no transmission!** :sunglasses:
+
+But: Some ESP32 boards have an integrated LiPo battery charger. You could power the board from a battery while there is no PV power (at least for a few hours).
+
+## Library Dependencies
+
+* [RadioLib](https://github.com/jgromes/RadioLib) by Jan Gromeš
+* [Lora-Serialization](https://github.com/thesolarnomad/lora-serialization) by Joscha Feth
+* [ESP32Time](https://github.com/fbiego/ESP32Time) by Felix Biego
+* [ModbusMaster](https://github.com/4-20ma/ModbusMaster) by Doc Walker
+
+## Pinning Configuration
+
+See [src/settings.h](src/growatt_cfg.h)
+
+| GPIO define | Description |
+| ----------- | ----------- |
+| INTERFACE_SEL | Modbus Interface Selection (USB/RS485) |
+
+### Modbus via RS485 Interface Only:
+| GPIO define | Waveshare 4777 pin |
+| ------------- | ------------------- |
+| MAX485_DE | RSE |
+| MAX485_RE_NEG | n.c. |
+| MAX485_RX | RO |
+| MAX485_TX | DI |
+
+### Debug Interface in case of using Modbus via USB Interface (optional):
+
+USB-to-TTL converter, e.g. [AZ Delivery HW-598](https://www.az-delivery.de/en/products/hw-598-usb-auf-seriell-adapter-mit-cp2102-chip-und-kabel)
+
+| GPIO define | USB to TTL Converter |
+| ----------- | -------------------- |
+| DEBUG_TX | RXD |
+| DEBUG_RX | TXD / n.c. |
+
+## MQTT Integration and IoT MQTT Panel Example
+
+Arduino App: [IoT MQTT Panel](https://snrlab.in/iot/iot-mqtt-panel-user-guide)
+
+
+
+### Set up *IoT MQTT Panel* from configuration file
+
+You can either edit the provided [JSON configuration file](IoT_MQTT_Panel_Growatt2LoRaWAN.json) before importing it or import it as-is and make the required changes in *IoT MQTT Panel*. Don't forget to add the broker's certificate if using Secure MQTT! (in the App: *Connections -> Edit Connections: Certificate path*.)
+
+**Editing [IoT_MQTT_Panel_Growatt2LoRaWAN.json](IoT_MQTT_Panel_Growatt2LoRaWAN.json)**
+
+Change *USERNAME* and *PASSWORD* as needed:
+```
+[...]
+"username":"USERNAME","password":"PASSWORD"
+[...]
+```