home-assistant.io/source/_components/sensor.mopar.markdown
Lance Moss 80969ef774 update to command names (#7963)
I have submitted a pull request on the motorparts python API. URLS and commands have changed on morpar.com. Once that is merged then this will need changed.
2018-12-29 16:45:20 +01:00

69 lines
1.6 KiB
Markdown

---
layout: page
title: "Mopar"
description: "Instructions on how to integrate Mopar vehicles into Home Assistant."
date: 2017-08-30 10:00
sidebar: true
comments: false
sharing: true
footer: true
logo: mopar.png
ha_category: Car
featured: false
ha_release: 0.53
ha_iot_class: "Cloud Polling"
---
The `mopar` sensor provides the following for owners of FCA vehicles with a uConnect subscription:
- Sensor per vehicle with vehicle health report and other meta-data
- Service for remote commands: Lock/unlock, Engine on/off, Horn & lights
## {% linkable_title Setup %}
Be sure you have a [mopar.com](http://mopar.com) account with your vehicle(s) registered by VIN. You must also have a current uConnect subscription.
## {% linkable_title Configuration %}
To enable this sensor, add the following lines to your `configuration.yaml`.
```yaml
# Example configuration.yaml entry
sensor:
- platform: mopar
username: YOUR_USERNAME
password: YOUR_PASSWORD
pin: YOUR_UCONNECT_PIN
```
{% configuration %}
username:
description: Your mopar.com username.
required: true
type: string
password:
description: Your mopar.com password.
required: true
type: string
pin:
description: The pin for your account.
required: true
type: string
{% endconfiguration %}
## {% linkable_title Service %}
Call the `sensor.mopar_remote_command` service to perform a remote command on your vehicle.
- **vehicle_index** (*Required*): `vehicle_index` attribute found on sensor.
- **command** (*Required*): One of `LOCK/UNLOCK/START/STOP/HORN_LIGHT`.
Example data:
```json
{
"vehicle_index": 0,
"command": "unlock"
}
```