diff --git a/source/_integrations/renault.markdown b/source/_integrations/renault.markdown index 739b7df80c9c..59133a9350ac 100644 --- a/source/_integrations/renault.markdown +++ b/source/_integrations/renault.markdown @@ -25,3 +25,50 @@ You need two API keys: one for Gigya and one for Kamereon and they shouldn't be {% include integrations/config_flow.md %} All vehicles linked to the account should then get added as devices, with sensors added as linked entity. + +## Services + +### Service `renault.ac_start` + +Start A/C on the specified vehicle by `vin`. + + | Service data attribute | Required | Description | + | ---------------------- | -------- | ----------- | + | `vin` | yes | VIN of the vehicle | + | `temperature` | yes | Target A/C temperature in °C | + | `when` | no | Timestamp for the start of the A/C (optional - defaults to now) | + +### Service `renault.ac_cancel` + +Cancel A/C on the specified vehicle by `vin`. + + | Service data attribute | Required | Description | + | ---------------------- | -------- | ----------- | + | `vin` | yes | VIN of the vehicle | + +### Service `renault.charge_set_mode` + +Set charge mode on the specified vehicle by `vin`. + + | Service data attribute | Required | Description | + | ---------------------- | -------- | ----------- | + | `vin` | yes | VIN of the vehicle | + | `charge_mode` | yes | Charge mode to apply. Allowed values: `always`, `always_charging`, `schedule_mode` | + +### Service `renault.charge_set_schedules` + +Update charge schedule on the specified vehicle by `vin`. + + | Service data attribute | Required | Description | + | ---------------------- | -------- | ----------- | + | `vin` | yes | VIN of the vehicle | + | `schedules` | yes | Schedule details. Can be a single schedule or a list of schedules | + +### Service `renault.charge_start` + +Start charge on the specified vehicle by `vin`. + + | Service data attribute | Required | Description | + | ---------------------- | -------- | ----------- | + | `vin` | yes | VIN of the vehicle | +