Does anyone have any experience with BLE tyre pressure sensors working with ESPHome? The below linked sensors seem pretty typical of the external valve stem cap style BLE TPMS. I found one project on github that seemed relevant. Looks to me like the BLE manufacturer data advertise trigger lambda would just need worked out to read the sensor data if these are the same as the github variant.
My vehicles have passive TPMS so only get alerted to low pressure, not actual pressure readings. I envision a TTGO T-Display or similar for in the vehicle that would display the sensor data. After each trip, the min & max pressures would be sent to HA once reconnected to home wifi.
Bytes 0 to 5 in the data are the MAC address for each individual sensor. The last 3 bytes are used in the sample code above to uniquely identify each sensor. All the data is sent without any pairing so multiple vehicles wouldn’t be a problem on a single esp32.
I bought a set of cheap BLE TPMS sensors from AliExpress. I thought they would be similar, but the data structure was quite different from anything else I could find.
The sensors I have starts with a mac address of “AC:15:85”. I have posted my findings and configuration on this github repo, hopefully it helps a few people
I’ve got also these sensors from AliExpress. They also start mac address with “AC:15:85”.
I get this kind of data:
[13:01:15][D][BLE_TPMS:149]: Manufacturer ID: 0x1E20
[13:01:15][D][BLE_TPMS:150]: Manufacturer Data: 15:2:3:F5:EE
[13:01:15][D][BLE_TPMS:151]: Manufacturer Data length: 5
Your integration works with any BLE sensors? Does it draw data from the application and displays it in Home assistant or do you need a development board (NodeMCU) and esphome?
Kalispera Michali,
This is using the Bluetooth integration BLE of Home Assistant.
This means that you can use the Bluetooth of your device that you installed Home Assistant but it is limited to the range of the bluetooth and how close it is to your TPM devices.
An alternative is using the ESPhome installed on an ESP32 device that you can have it close to your TPM devices and use the Bluetooth Proxy integration.
If you need any further info feel free to contact me: [email protected]
I think i am gonna go with the ESP method as the device i have HA installed is at home! I guess with this method,
i create a Bluetooth proxy on an ESP32 development board most probably powered from one of the car’s usb ports.
connect the TPM sensors to it.
find a way for the ESP32 to have internet (most probably mobile hotspot)
Add it to Home Assistant
Don’t know if anyone has implemented this before, i was wondering if i can leave the ESP32 device connected to the USB port of the car or it will drain the battery completly!
On most cars the power to the USB is cut once you remove the key, so it won’t drain the car battery.
There are some ESP32 boards that use SIM to connect to the internet.
If you connect ESP32 through the internet, you won’t be able to use the ESPHome integration on Home Assistant. You will have to program your ESP to send data to your home assistant instance every few minutes.
One way to do this is by using webhook requests.