rivian-python-api icon indicating copy to clipboard operation
rivian-python-api copied to clipboard

Add Tire pressures

Open edman007 opened this issue 1 year ago • 1 comments

So I reviewed the most recent android app, and this is the android app query for the tire pressure:

subscription tirePressureState($vehicleID: String!) { vehicleState(id: $vehicleID) { tirePressureStatusFrontLeft { timeStamp value } tirePressureStatusFrontRight { timeStamp value } tirePressureStatusRearLeft { timeStamp value } tirePressureStatusRearRight { timeStamp value } tirePressureFrontLeft { timeStamp value } tirePressureFrontRight { timeStamp value } tirePressureRearLeft { timeStamp value } tirePressureRearRight { timeStamp value } } }

Unfortunately, trying to put those new fields into the vehicle state query doesn't seem to work. I'm guessing maybe they only work when you do a subscription instead of a query? Unfortunately, supporting a subscription seems to be a little complex.

Not sure if someone can figure out how to add those tire pressure fields.

edman007 avatar Feb 18 '24 19:02 edman007

Yeah not sure. I see it in the apk but I couldnt get the items to come through with normal access either.

the-mace avatar Feb 20 '24 20:02 the-mace