Fabian

Results 117 comments of Fabian

Hi, I got the display working with the following config: Still having issues with logging and display is not perfect. ```yaml esphome: name: esp-t5-s3 friendly_name: "T5 S3" platformio_options: board_build.f_flash: 80000000L...

FYI: Victron has documented their Bluetooth advertising protocol so you could switch from UART to Bluetooth for Victron devices. This will not solve the Software UART request, but I am...

> There is an issue with this PR, during testing I found the local logging output of the WEB server component emits duplicated log entries. @descipher Thanks for testing. I...

> The thread safe queue (`xQueueCreateStatic`) used in this PR could be used to solve [esphome/issues#5102](https://github.com/esphome/issues/issues/5102). The method `Logger::log_vprintf_` then needs to be adapted to not use a shared buffer....

So I have a (pure) DC system (no AC, no Inverter) with a normal AGM battery with a Voltage between 11.5V and 14.4V and a Capacity of 95Ah and peukert...

My problem with using the **current** Voltage I can illustrate best using the following table. The measurements are taken directly at the battery. All values are taken a few second...

I cannot access the Victron Network data. Instead you can create a esphome template sensor and aggregate the data on the device so you only submit a summary.

Here is an untested example how such template sensor could look like. ```yaml sensor: - platform: template update_interval: 30s lambda: |- float solar_CURRENT = 0.0f; if(!std::isnan(id(solar15_BATTERY_CURRENT).state)) { solar_CURRENT += id(solar15_BATTERY_CURRENT).state;...

Hi, this is a an ESPHome component. So you will need an ESP32. This has no relationship to raspberry and run exclusively on the ESP. I personally use my ESPHome...

From my Understanding this project and are using the same Bluetooth Advertisement data. So if it does not work with one it will not work with the other. That said...