Brian Aker

Results 9 comments of Brian Aker

Sorry, I don’t have anything that specific. 乌 > On Apr 27, 2021, at 9:51 AM, thegoodhen ***@***.***> wrote: > > > @BrianAker does anyone have a minimum example for...

add_option() is reinventing the wheel, and the problem with doing this with CMake is that it breaks tools which can consume it/make the details of building libraries. Unlike Autoconf, CMake...

For the most part, I just allow my setup to discover devices. In the few cases where I found a need to add addresses, I added them one at a...

The example compiled, but it is not working. I don’t understand enough of your code yet to be sure of what I believe the error is. All that appears in...

Hi! > On Jul 3, 2022, at 11:20 PM, myhomeiot ***@***.***> wrote: > OPEN_EVT failed, status (133), app_id (1) means that it's can't connect to MiFlora, sometimes it's happens but...

In MyHomeIOT_BLEClient::connect() I see that you call esp_ble_gattc_open(), but I cannot find where esp_ble_gap_stop_scanning() has been previously called. What I am finding with OPEN_EVT errors is that the devices that...

For the call to esp_ble_gattc_open() in: https://github.com/myhomeiot/esphome-components/blob/main/components/myhomeiot_ble_client/myhomeiot_ble_client.cpp void MyHomeIOT_BLEClient::connect() { ESP_LOGI(TAG, "[%s] Connecting", to_string(this->address_).c_str()); this->state_ = MYHOMEIOT_CONNECTING; if (auto status = esp_ble_gattc_open(ble_host_->gattc_if, this->remote_bda_, BLE_ADDR_TYPE_PUBLIC, true)) MyHomeIOT_BLEClient::connect() is expecting that ESP32BLETracker...

I figured out where the resource leak is occurring ( I believe ). When ESP_GATTC_DISCONNECT_EVT is called I added the following: case ESP_GATTC_DISCONNECT_EVT: { + ESP_LOGD(TAG, "[%s] ESP_GATTC_DISCONNECT_EVT, conn_id (%d),...

> Is it possible that the RI cable does not provide common ground and I need to ground the Arduino to the amp separately for it to work? The following...