seems my project is simple yet unique enough that I don’t know where to start.
I’d like to use my Macchina A0 to read known standard and Torque app format PIDs from OBD2 and transmit with ESP-NOW to a ESP8266 driving a display as a stand alone gauge.
the car is a’19 mazda mx5. the ESP8266 /display is installed and up and running doing other stuff already (roof control, ethanol sensor display, passenger airbag warning display, generic menu and 2 button user interface ) I’m comfortable with the display side of things, ish.
I’d like to start with coolent temp or rpm since it’s verifiable and a universal obd2 code and I can find in the right format (whatever the format is since I’m not sure where to start)
this would let me focus on the ESP-NOW and receive/display side of things.
the main thing I want to figure out is tire pressures. this is the Torque setting list. I don’t know how to format it for use for my purpose but I suspect all the info is there
pid: 222A05
name: Tire 1 Pressure
sName: T1Press
Min: 0
Max: 50
Scale: x1
Unit: psi
Equation: ((A * 1373) / 1000) * 0.145037738
Header: 720
pid: 222A06
name: Tire 2 Pressure
sName: T2Press
Min: 0
Max: 50
Scale: x1
Unit: psi
Equation: ((B * 1373) / 1000) * 0.145037738
Header: 720
pid: 222A07
name: Tire 3 Pressure
sName: T3Press
Min: 0
Max: 50
Scale: x1
Unit: psi
Equation: ((C * 1373) / 1000) * 0.145037738
Header: 720
pid: 222A08
name: Tire 4 Pressure
sName: T4Press
Min: 0
Max: 50
Scale: x1
Unit: psi
Equation: ((D * 1373) / 1000) * 0.145037738
Header: 720
pid: 222A0A
name: Tire 1 Temp
sName: T1Temp
Min: 0
Max: 200
Scale: x1
Unit: F
Equation: (9/5 * (A - 50)) + 32
Header: 720
pid: 222A0B
name: Tire 2 Temp
sName: T2Temp
Min: -50
Max: 200
Scale: x1
Unit: F
Equation: (9/5 * (B - 50)) + 32
Header: 720
pid: 222A0C
name: Tire 3 Temp
sName: T3Temp
Min: -50
Max: 200
Scale: x1
Unit: F
Equation: (9/5 * (C - 50)) + 32
Header: 720
pid: 222A0D
name: Tire 4 Temp
sName: T4Temp
Min: -50
Max: 200
Scale: x1
Unit: F
Equation: (9/5 * (D - 50)) + 32
Header: 720
any first step direction/ help would be much appreciated.