diff --git a/lib/libesp32/berry_tasmota/src/embedded/i2c_axp192.be b/lib/libesp32/berry_tasmota/src/embedded/i2c_axp192.be index 56ce22147..b9254af1d 100644 --- a/lib/libesp32/berry_tasmota/src/embedded/i2c_axp192.be +++ b/lib/libesp32/berry_tasmota/src/embedded/i2c_axp192.be @@ -165,7 +165,7 @@ class AXP192 : I2C_Driver "{s}Batt Voltage{m}%.3f V{e}".. "{s}Batt Current{m}%.1f mA{e}".. #"{s}Batt Power{m}%.3f{e}".. - "{s}Temp AXP{m}%.1f °C{e}", + "{s}AXP Temperature{m}%.1f °C{e}", self.get_vbus_voltage(), self.get_vbus_voltage(), self.get_bat_voltage(), self.get_bat_current(), #self.get_bat_power(), diff --git a/tasmota/berry/audio/audio_slm.be b/tasmota/berry/audio/audio_slm.be index 303cc2c01..4f74da153 100644 --- a/tasmota/berry/audio/audio_slm.be +++ b/tasmota/berry/audio/audio_slm.be @@ -61,7 +61,7 @@ class Audio_SLM self.audio_input.get_gain(), self.rms, self.peak / 32767) - tasmota.web_send(msg) + tasmota.web_send_decimal(msg) self.peak = 0 self.rms = 0 end diff --git a/tasmota/tasmota_xdrv_driver/xdrv_52_3_berry_tasmota.ino b/tasmota/tasmota_xdrv_driver/xdrv_52_3_berry_tasmota.ino index 563abacef..a476032c4 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_52_3_berry_tasmota.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_52_3_berry_tasmota.ino @@ -790,7 +790,7 @@ extern "C" { */ - // web append with decimal conversion + // web append without decimal conversion int32_t l_webSend(bvm *vm); int32_t l_webSend(bvm *vm) { int32_t top = be_top(vm); // Get the number of arguments @@ -814,6 +814,7 @@ extern "C" { be_pop(vm, top); // avoid Error be_top is non zero message #ifdef USE_WEBSERVER WSContentSend_PD(PSTR("%s"), msg); + WSContentSeparator(0); #endif // USE_WEBSERVER be_return_nil(vm); // Return nil when something goes wrong }