I'm working on getting sensors of Ora Funky Cat for Home Assistant with WiCAN + MQTT using Car Scanner as a producer.
I already have several sensors that may share to the community including:
- soc
- soe
- hv_bus_current
- hv_power
- hv_voltage
- coolant_temperature
- tire_pressure_front_left
- tire_pressure_front_right
- mileage
Currently I'm working on Tire Pressure, I have processed a lot of data and already have them ready for Node-RED.
This is my working Google Sheet: https://docs.google.com/spreadsheets/d/1FYhf-c3pWxY5REcZS4yKfbZzTXARMbKtWPH8PJFeL-s/
This are the TXs and RXs
Front Tire Pressure
TX (WORKING)
{"bus":"0","type":"tx","ts":0,"frame":[{"id":1900,"dlc":8,"rtr":false,"extd":false,"data":[3,34,2,16,170,170,170,170]}]}
RX (WORKING)
{"bus":"0","type":"rx","ts":0,"frame":[{"id":1964,"dlc":8,"rtr":false,"extd":false,"data":[16,11,98,2,16,170,74,167]}]}
// tire_pressure_front_left: b[5]*0.2-0.22
// tire_pressure_front_right: b[7]*0.2-0.22
Rear Tire Pressure
TX (NOT WORKING)
{"bus":"0","type":"tx","ts":0,"frame":[{"id":1900,"dlc":8,"rtr":false,"extd":false,"data":[48,0,0,170,170,170,170,170]}]}
RX (Received from Car Scanner)
{"bus":"0","type":"rx","ts":0,"frame":[{"id":1964,"dlc":8,"rtr":false,"extd":false,"data":[33,75,172,75,166,74,0,0]}]}
// tire_pressure_rear_left: b[2]*0.2-0.22
// tire_pressure_rear_right: b[4]*0.2-0.22
I got Front Tire Pressure working correctly; however, not for the Rear Tire Pressure.
For the Rear Tire Pressure, I sent {"bus":"0","type":"tx","ts":0,"frame":[{"id":1900,"dlc":8,"rtr":false,"extd":false,"data":[48,0,0,170,170,170,170,170]}]} but have get back. (The RX is one that I received when using Car Scanner.
Not sure how to get the Rear Tire Pressure TX working correctly. Not sure if it about bit length or not.
If you need any information to investigate more please let me know.
Thank you in advance. ❤️

I'm working on getting sensors of Ora Funky Cat for Home Assistant with WiCAN + MQTT using Car Scanner as a producer.
I already have several sensors that may share to the community including:
Currently I'm working on Tire Pressure, I have processed a lot of data and already have them ready for Node-RED.
This is my working Google Sheet: https://docs.google.com/spreadsheets/d/1FYhf-c3pWxY5REcZS4yKfbZzTXARMbKtWPH8PJFeL-s/
This are the TXs and RXs
Front Tire Pressure
TX (WORKING)
{"bus":"0","type":"tx","ts":0,"frame":[{"id":1900,"dlc":8,"rtr":false,"extd":false,"data":[3,34,2,16,170,170,170,170]}]}RX (WORKING)
{"bus":"0","type":"rx","ts":0,"frame":[{"id":1964,"dlc":8,"rtr":false,"extd":false,"data":[16,11,98,2,16,170,74,167]}]}Rear Tire Pressure
TX (NOT WORKING)
{"bus":"0","type":"tx","ts":0,"frame":[{"id":1900,"dlc":8,"rtr":false,"extd":false,"data":[48,0,0,170,170,170,170,170]}]}RX (Received from Car Scanner)
{"bus":"0","type":"rx","ts":0,"frame":[{"id":1964,"dlc":8,"rtr":false,"extd":false,"data":[33,75,172,75,166,74,0,0]}]}I got Front Tire Pressure working correctly; however, not for the Rear Tire Pressure.
For the Rear Tire Pressure, I sent
{"bus":"0","type":"tx","ts":0,"frame":[{"id":1900,"dlc":8,"rtr":false,"extd":false,"data":[48,0,0,170,170,170,170,170]}]}but have get back. (The RX is one that I received when using Car Scanner.Not sure how to get the Rear Tire Pressure TX working correctly. Not sure if it about bit length or not.
If you need any information to investigate more please let me know.
Thank you in advance. ❤️