molotovec
molotovec
Hey! I've edited .. PlatformIO\Projects\NotificationESP32S3\.pio\libdeps\esp32-s3-devkitc-1\ESP32 BLE ANCS Notifications\src\ancs_ble_client.h by replacing //#include "FreeRTOS.h" // For asynchronous tasks #include "freertos/FreeRTOS.h" #include "freertos/task.h" also edited line 40 public: TaskHandle_t clientTaskHandle; by replacing xTaskGetHandle...
@jimwhitelaw Thanks a lot for the reply!!! Unfortunately setting protocol is not a case. I tried auto before and it fails with timeouts so i've dig issues and found that...
Hi @jimwhitelaw myELM327.begin(client, true, 25000, ISO_15765_29_BIT_500_KBAUD); void loop() { float tempRPM = myELM327.rpm(); if (myELM327.nb_rx_state == ELM_SUCCESS) { rpm = (uint32_t)tempRPM; Serial.print("RPM: "); Serial.println(rpm); draw(rpm); delay(500); myELM327.sendCommand("AT"); } else if...