Sha256: 04313a5043623c474a68029b3aa7fa0268e16f9be770fb2c1f3529a9178b34d1
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
# Climate ## POST `/api/1/vehicles/{id}/command/auto_conditioning_start` Start the climate control (HVAC) system. Will cool or heat automatically, depending on set temperature. ### Response ```json { "reason": "", "result": true } ``` ## POST `/api/1/vehicles/{id}/command/auto_conditioning_stop` Stop the climate control (HVAC) system. ### Response ```json { "reason": "", "result": true } ``` ## POST `/api/1/vehicles/{id}/command/set_temps` Sets the target temperature for the climate control (HVAC) system. Note: The parameters are always in celcius, regardless of the region the car is in or the display settings of the car. ### Parameters | Parameter | Example | Description | | :------------- | :------ | :---------------------------------------------------------- | | driver_temp | 23.4 | The desired temperature on the driver's side in celcius. | | passenger_temp | 23.4 | The desired temperature on the passenger's side in celcius. | ### Response ```json { "reason": "", "result": true } ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tesla_api-1.4.1 | docs/vehicle/commands/climate.md |
tesla_api-1.4.0 | docs/vehicle/commands/climate.md |