You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
So I reviewed the most recent android app, and this is the android app query for the tire pressure:
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.
The text was updated successfully, but these errors were encountered: