home-assistant.io/source/_components/sensor.mopar.markdown
2018-01-16 14:49:37 -08:00

55 lines
1.4 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: Sensor
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
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.
To enable this sensor, add the following lines to your `configuration.yaml`.
```yaml
sensor:
- platform: mopar
username: <mopar.com username>
password: <mopar.com password>
pin: <uconnect pin>
```
Configuration options for the Mopar sensor:
- **username** (*Required*): Your mopar.com username.
- **password** (*Required*): Your mopar.com password.
- **pin** (*Required*): Your uConnect pin.
## {% 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/engineon/engineoff/horn`.
Example data:
```json
{
"vehicle_index": 0,
"command": "unlock"
}
```