ORA Funky Cat #69
Replies: 7 comments 20 replies
-
Hey @guhlandreas , which PIDs do you need ? Here is a list of all the standard PIDs. I'm guessing you want to read the battery SoC? |
Beta Was this translation helpful? Give feedback.
-
Thank you so much for your help! I was able to retrieve a huge amount of data and I am confident, that I extracted the correct data for the following purposes: 1. Battery SOC tx: {"bus":"0","type":"tx","ts":21767,"frame":[{"id":1931,"dlc":8,"rtr":false,"extd":false,"data":[3,34,3,8,170,170,170,170]}]} rx: {"bus":"0","type":"rx","ts":21782,"frame":[{"id":1995,"dlc":8,"rtr":false,"extd":false,"data":[5,98,3,8,2,69,204,204]}]} The Value should be 58,1% or rx: {"bus":"0","type":"rx","ts":5301,"frame":[{"id":1995,"dlc":8,"rtr":false,"extd":false,"data":[5,98,3,8,1,236,204,204]}]} The Value should be 49,2% 2. Charging Power: tx: {"bus":"0","type":"tx","ts":22535,"frame":[{"id":1930,"dlc":8,"rtr":false,"extd":false,"data":[3,34,208,97,170,170,170,170]}]} rx: {"bus":"0","type":"rx","ts":22542,"frame":[{"id":1994,"dlc":8,"rtr":false,"extd":false,"data":[7,98,208,97,30,31,13,84]}]} The Value should be - 9,88 kW 3. Milage tx: {"bus":"0","type":"tx","ts":39812,"frame":[{"id":1931,"dlc":8,"rtr":false,"extd":false,"data":[3,34,208,4,170,170,170,170]}]} rx: {"bus":"0","type":"rx","ts":39833,"frame":[{"id":1995,"dlc":8,"rtr":false,"extd":false,"data":[6,98,208,4,0,5,66,204]}]} The Value should be 1346 km I was also able to adjust in Code Red so, I get the data from WiCAN --> Node Red --> Home Assistant. Now I have still two issues! 1. `var obj = Object(); for(let i = 0; i < msg.payload.frame.length; i++){ But I also don't know what exactly has to be calculated. Can you pls help me .... 2. 3. Sorry for all my basic questions. Best regards, Andreas |
Beta Was this translation helpful? Give feedback.
-
@meatpiHQ: awesome, awesome, awesome! e.g. Milage: Data: {"id":1995,"dlc":8,"rtr":false,"extd":false,"data":[6,98,208,4,0,5,66,204]} in decimal this should be approx.: 1346 Thanks again for your swift help!! Best regards, Andreas |
Beta Was this translation helpful? Give feedback.
-
In case anyone coming up to work with Ora Good Cat.
|
Beta Was this translation helpful? Give feedback.
-
So pressure in bar would be "B#0.0138-0.01518". |
Beta Was this translation helpful? Give feedback.
-
I discovered the documentation about to use of the CarScanner log file and found the entries for TotalCharge and TotalDischarge. Below the json entry I am using now. However, I am confused about the use of the pid_init as both PID have the same pid_init. Is there a way to combine the below code into one entry?
NB: Regarding tyre pressure in bar, I changed to "B5/73" which seems to be sufficiantly exact. |
Beta Was this translation helpful? Give feedback.
-
This is understood but still my irritation remains. :-) |
Beta Was this translation helpful? Give feedback.
-
Hi all,
The ORA Funky Cat is now in front of our cottage. I would like to integrate it into Home Assistant and charge via EVCC.
All attempts somehow via the ORA app / API to get the data such as SOC have failed for me.
Therefore, I have opted for the following way via OBDII, which I also have not gotten to run.
But here in detail, where I currently stand:
I bought the WiCan from Meatpi
The device is easy to install. I got myself another short extension cord and now it disappears into the Cat fuse box.
There is a nice tutorial for WiCan to integrate with Home Assistant using Nodered:
https://github.com/meatpiHQ/wican-fw/tree/main#home-assistant
The WiCan communicates with the MQTT server and also NodeRed. However, no data arrives in the HA.
I suspect that I have to address other PIDs. Unfortunately, however, I can't find any information on this.
What I have managed to do, on the other hand, is to read the Cat with the app "Car Scanner" on my iPhone. And that without any problems.
CONCLUSIONS:
My conclusion is therefore that the adapter (WiCan) works. Also, the Cat's data bus provides readable data.
I just can't manage to read them out with the instructions via Nodered.
Does anyone have any ideas what I am doing wrong?
Suggestions are very welcome ...
Many greetings
Andreas
Beta Was this translation helpful? Give feedback.
All reactions