Are you serious? Before automatically doing this, it should be manually possible.Maybe I'm missing this somewhere in the options but haven't found it. Most cars winter package with heated seats has the option to automatically turn them on when the temperature is below a certain level, seems like an easy thing to implement.
def control_heating_features(outside_temperature):
if outside_temperature < 60:
heated_seats = True
heated_steering_wheel = True
print("Heated seats: ON")
print("Heated steering wheel: ON")
else:
heated_seats = False
heated_steering_wheel = False
print("Heated seats: OFF")
print("Heated steering wheel: OFF")
return heated_seats, heated_steering_wheel
https://www.rivianforums.com/forum/...eated-seats-and-steering-does-not-work.36670/Sorry, I’m not following. It is manually possible to turn on the seat heat and steering wheel heat through the touchscreen and by Alexa. ?‍![]()