Assaf Inbal

Results 158 comments of Assaf Inbal

Assuming Wi-Fi isn't an issue, you can always use the remote logging mechanism to capture the logs. It might not contain everything but it could help, in the meantime...

Hey, I can't argue with your observations but it does sound like odd behavior to me. The ESP is always in scanning mode which means it listens to advertisements (passive)...

> Would it be possible to add an option where only the whitelisted device is communicated with, other advertisements are ignored and no scanning requests are being sent? The ESP...

Hey, broadcaster devices, i.e., devices that aren't connectable but just periodically broadcast their information, are handled separately and there's a limited number of broadcaster devices we currently support and their,...

Hey, this sounds similar to #209... I just [rebuilt](https://github.com/shmuelzon/esp32-ble2mqtt/actions/runs/12915000811/job/36015830634) an image and you can download it from: https://github.com/shmuelzon/esp32-ble2mqtt/actions/runs/12915000811/artifacts/2470087703. I don't see any errors or warnings in it's generation so it...

Hey, Do you see messages being published on your MQTT bus at all? Do you see the values read from the BLE device sent on the `ESP32-BLE/10:d0:7a:03:e7:83/Features/OP_SWITCH_INPUT` topic? Debug logs...

Regarding the disconnections, I see the following messages: `I (179034) BLE: Connection closed, reason = 0x13`. `0x13` is `Connection terminate by peer user`. In any case, this project doesn't initiate...

Hey, this project scans for BLE advertisements constantly (more or less). You can find the exact configuration at: https://github.com/shmuelzon/esp32-ble2mqtt/blob/7bd29fe04a83468c12dba14e28335e660a00b03f/main/ble.c#L21 Note that, [at some point](https://github.com/shmuelzon/esp32-ble2mqtt/commit/c11e9112eeae401cb9b636a963cf67c08d0584a3), I increased the `scan_interval` value as...

Hard to tell without debugging. Maybe it sees the advertisements but doesn't detect them correctly as an iBeacon? Do you see anything in the logs when the iBeacons transmits? Either...

Hey, looking a bit on the ESP-IDF implementation of MQTT + SSL, it looks like server verification is optional as far as the MQTT APIs are concerned but less so...