TPMS
TPMS copied to clipboard
Decode tire pressure monitoring system TPMS BLE 433MHz CC1101 ESP8266 ESP32
https://github.com/AudunVN/web-ble-tpms and test page: https://471.no/web-ble-tpms/ but not work maybe someone who is interested in fixing the problem? thank's
BLE_TPMS:94:16: error: variable 'plByte' set but not used [-Werror=unused-but-set-variable] byte plByte[16]; ^~~~~~ BLE_TPMS:85:11: error: unused variable 'payloadhex' [-Werror=unused-variable] char *payloadhex = utils.buildHexData(nullptr, payload, payloadlen); ^~~~~~~~~~
Hi! I've tried running the example on an ESP32 with the 433MHz wheel sensors, but no luck. Communication with the CC1101 is working correctly; it initializes everything, but it doesn’t...
hi, this line: `char *payloadhex = utils.buildHexData(nullptr, payload, payloadlen);` leaks memory because it is missing free: `free(payloadhex);` after some time esp32 gets 0 bytes free memory (depends how often you...