-
-
Notifications
You must be signed in to change notification settings - Fork 73
FAQ
Q: My meter delivers data, but AMS reports No Data Received or checksum error
A: Please check the baud rate and parity. See Known hardware configurations for more information
Q: I connected the M-BUS adapter to RX on my development board, why can't I receive any data?
A: Development cards with USB interface have the USB-TTL chip connected to RX and TX pin on the ESP. This means that RX cannot be used for the MBUS-TTL adapter. Use a different pin for HAN RX.
Q: Why is the display voltage for my ESP8266 board lower than actual voltage?
A: Some development boards (f.ex. D1 mini and NodeMCU) has a voltage divider attached at the ADC pin. In the code we use ADC mode ADC_VCC which requires the ADC pin to be unconnected (stated here). Since there is a voltage divider connected, the GND to ADC resistor is interfering with the internal voltage reading. The only way to properly resolve this is to adjust the Vcc multiplier in GPIO settings.
Q: I have installed the firmware on a ESP32 board. Why is the voltage displayed in the GUI 0.00V ?
A: Unlike ESP8266, ESP32 does not have internal voltage sensing. If you want to monitor the voltage on ESP32, you have to connect a voltage divider between GND and Vcc and input the divided voltage to a GPIO pin. Set up the pin and resistor values in the configuration in the GUI.