File tree Expand file tree Collapse file tree 2 files changed +57
-0
lines changed Expand file tree Collapse file tree 2 files changed +57
-0
lines changed Original file line number Diff line number Diff line change
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
+ ` ` `
You can’t perform that action at this time.
0 commit comments