gotnone

Results 44 comments of gotnone

I was running into the same issue with an OMRON EVOLV. I was able to get a little bit further by adjusting the connect address_type to `BLE_ADDR_TYPE_PUBLIC`. https://github.com/userx14/omblepy/blob/406f706e3210aec8e88400be05b0a83cc0ff99aa/esp32bridge/esp32bridge.ino#L258 https://github.com/userx14/omblepy/blob/406f706e3210aec8e88400be05b0a83cc0ff99aa/esp32bridge/esp32bridge.ino#L271 I...

@userx14 Thanks for the additional info. The messages I was getting regarding the missing gatt characteristic descriptors are essentially warnings, but are being printed because I overlooked the instructions (4)...

Probably should integrate PR #8697

Need to fix Error Code from 0x81 to 0x85 in `ModbusController::on_modbus_write_coil_register` (`modbus_controller/modbus_controller.cpp:L176`)

> Hi, am I doing something wrong...... > > ``` > Compiling .pioenvs/modbus/src/esphome/components/mqtt/mqtt_fan.cpp.o > In file included from src/esphome/components/modbus_controller/modbus_controller.cpp:1: > src/esphome/components/modbus_controller/modbus_controller.h:465:8: error: 'void esphome::modbus_controller::ModbusController::on_modbus_write_coil_register(uint8_t, uint16_t, uint16_t)' marked 'final', but is...

> Tried on 2025.5.0-dev and 2025.4.1 What does your `external_components:` look like? Do you include components for `modbus` and `modbus_controller`? This PR touches both. I can reproduce your errors if...

If you need write_registers support I have a branch with that https://github.com/gotnone/esphome@server_write_registers I haven't made a PR for it yet. Development is ongoing with discussion at the previous discord link.

@vpiyanov There have been some changes to the modbus code since I created this PR. I don't know if it will apply cleanly. Yes the `server_coil_registers` config entry only supports...

@vpiyanov I have just pushed a new version which should work with the newer modbus code in the `dev` branch. I am not near my test bench, so i have...

@vpiyanov I have a new branch which adds the 0x1 read coils command. https://github.com/gotnone/esphome/tree/server_coil_read I will try to put together a makeshift test bench to verify that it works. Once...