Skip to content

Commit d6bb3ec

Browse files
committed
updated README for channel config
1 parent 230de4c commit d6bb3ec

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

+28
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,34 @@ Be aware that the included dashboard assumes your device name contains the word
157157
]
158158
```
159159

160+
You can also explicity define the channel and circuit names by using a dictionary in the configuration. Circuits that are merged in the Emporia App may be given a channel assignment that is far out of the range of your circuts (ex. 98 or 99). In this case, assigning the channels directly using a dictionary is preferred.
161+
162+
```json
163+
"devices": [
164+
{
165+
"name": "Right Panel",
166+
"channels": {
167+
"2" : "Upstairs bathroom",
168+
"3" : "Back bedroom",
169+
"13" : "Master Bedroom",
170+
"14" : "Basement Family Room",
171+
"97" : "1st Floor Heat Pump",
172+
"98" : "2nd floor Heat Pump"
173+
}
174+
},
175+
{
176+
"name": "Left Panel",
177+
"channels": {
178+
"1" : "Kitchen Outlets",
179+
"6" : "Washer",
180+
"7" : "Garage Lights",
181+
"97" : "Water Heater",
182+
"98" : "Dryer"
183+
}
184+
}
185+
]
186+
```
187+
160188
### Station Names
161189

162190
If you intend to run multiple Vue systems under the same account, where the channel names duplicate or look similar across those Vue systems then you may want to consider enabling the `addStationField` config parameter. This will include an additional field named 'station_name' in the InfluxDB event record, to help distinguish channel names across those Vue systems or 'stations'.

0 commit comments

Comments
 (0)