Skip to content

Commit e054732

Browse files
happyleavesaocfabaff
authored andcommitted
add mopar sensor doc (home-assistant#3281)
1 parent b0caec9 commit e054732

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
layout: page
3+
title: "Mopar"
4+
description: "Instructions on how to integrate Mopar vehicles into Home Assistant."
5+
date: 2017-08-30 10:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: mopar.png
11+
ha_category: Sensor
12+
featured: false
13+
ha_release: 0.53
14+
ha_iot_class: "Cloud Polling"
15+
---
16+
17+
The `mopar` sensor provides the following for owners of FCA vehicles with a uConnect subscription:
18+
19+
- Sensor per vehicle with vehicle health report and other metadata
20+
- Service for remote commands: Lock/unlock, Engine on/off, Horn & lights
21+
22+
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.
23+
24+
25+
## Configuration
26+
27+
To enable this sensor, add the following lines to your `configuration.yaml`.
28+
29+
```yaml
30+
sensor:
31+
- platform: mopar
32+
username: <mopar.com username>
33+
password: <mopar.com password>
34+
pin: <uconnect pin>
35+
```
36+
37+
Configuration options for the Mopar sensor:
38+
39+
- **username** (*Required*): mopar.com username
40+
- **password** (*Required*): mopar.com password
41+
- **pin** (*Required*): uConnect pin
42+
43+
## Service
44+
45+
Call the `mopar.remote_command` service to perform a remote command on your vehicle.
46+
47+
- **vehicle_index** (*Required*): `vehicle_index` attribute found on sensor
48+
- **command** (*Required*): one of `lock/unlock/engineon/engineoff/horn`
49+
50+
### Example
51+
52+
```json
53+
{
54+
"vehicle_index": 0,
55+
"command": "unlock"
56+
}
57+
```
21.7 KB
Loading

0 commit comments

Comments
 (0)