diff --git a/README.md b/README.md
index e26ccd9..20276be 100644
--- a/README.md
+++ b/README.md
@@ -89,7 +89,7 @@ The outdoor temperature sensor must be connected to the **TEMP1** connector, the
5. Set up a connection to your MQTT server: ip, port, user, password
6. Set up a **Opentherm pin IN** & **Opentherm pin OUT**. No change for my board. Typically used **IN** = 4, **OUT** = 5
7. Set up a **Outdoor sensor pin** & **Indoor sensor pin**. No change for my board.
-8. if necessary, set up a the master member ID ([see more](#tested-on))
+8. if necessary, set up a the Master Member ID ([see more](#tested-on))
9. Restart module (required after changing OT pins and/or sensors pins!)
After connecting to your wifi network, you can go to the setup page at the address that ESP8266 received.
@@ -165,6 +165,16 @@ If your boiler does not support the installation of an outdoor temperature senso
After these settings, you can enable the "Equitherm" and/or "PID" modes and configure them as described below.
+## Troubleshooting
+**Q:** Controller in monitor/readon mode (cannot set temperature, etc.)
+**A:** Try changing the "Master Member ID", this is most likely the problem. If you don't know which identifier is valid for your boiler, you need to use brute force.
+
+**Q:** The boiler does not respond to setting the heating temperature.
+**A:** Try checking the "Opentherm summer/winter mode", "Opentherm CH2 enabled", "Opentherm heating CH1 to CH2" checkboxes one by one and all together on the "setup" page. If this doesn't work, see above.
+
+**Q:** My boiler does not have a hot water heating function. How to turn it off?
+**A:** Uncheck "Opentherm DHW present" on the "setup" page.
+
## About modes
### Equitherm
diff --git a/platformio.ini b/platformio.ini
index 25922f1..ec8eda3 100644
--- a/platformio.ini
+++ b/platformio.ini
@@ -25,7 +25,7 @@ lib_deps =
build_flags = -D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH -mtext-section-literals
upload_speed = 921600
monitor_speed = 115200
-version = 1.3.3
+version = 1.3.4
; Defaults
[esp8266_defaults]
diff --git a/src/defines.h b/src/defines.h
index 90df5f7..3ede21b 100644
--- a/src/defines.h
+++ b/src/defines.h
@@ -1,4 +1,4 @@
-#define OT_GATEWAY_VERSION "1.3.3"
+#define OT_GATEWAY_VERSION "1.3.4"
#define OT_GATEWAY_REPO "https://github.com/Laxilef/OTGateway"
#define AP_SSID "OpenTherm Gateway"
#define AP_PASSWORD "otgateway123456"