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
{{ message }}
This repository has been archived by the owner on Jul 22, 2021. It is now read-only.
The current vehicle.py file contains this code to set the temperatures in the car: def set_temps(self, driver, passenger): p = self._command('set_temps', driver_degC = driver, pasenger_temp = passenger) return p['result']
This code will not set the temps properly in the car and will always set the temperature to 17C. The code needs to be changed to: def set_temps(self, driver, passenger): p = self._command('set_temps', driver_temp = driver, passenger_temp = passenger) return p['result']
I changed this in my code and it works perfectly now.
The text was updated successfully, but these errors were encountered:
The current vehicle.py file contains this code to set the temperatures in the car:
def set_temps(self, driver, passenger):
p = self._command('set_temps', driver_degC = driver, pasenger_temp = passenger)
return p['result']
This code will not set the temps properly in the car and will always set the temperature to 17C. The code needs to be changed to:
def set_temps(self, driver, passenger):
p = self._command('set_temps', driver_temp = driver, passenger_temp = passenger)
return p['result']
I changed this in my code and it works perfectly now.
The text was updated successfully, but these errors were encountered: