File tree 2 files changed +41
-0
lines changed
2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : page
3
+ title : " TED5000 electricity monitoring"
4
+ description : " How to add a TED5000 to Home Assistant."
5
+ date : 2016-09-27 11:19
6
+ sidebar : true
7
+ comments : false
8
+ sharing : true
9
+ footer : true
10
+ logo : ted.png
11
+ ha_category : Sensor
12
+ ha_release : 0.30
13
+
14
+ The `ted 5000` monitors electricity consumption/production by connecting to the
15
+ [TED](http://www.theenergydetective.com/home) gateway, itself connected to one
16
+ or several Measuring Transmitting Units (MTU).
17
+ The platform creates up to two sensors per MTU, one for Wattage the other for
18
+ Voltage. If you want to enable the ted5000 sensor, add the following lines to
19
+ your `configuration.yaml` :
20
+
21
+ ` ` ` yaml
22
+ # Example configuration.yaml entry
23
+ sensor:
24
+ platform: ted5000
25
+ name: main
26
+ host: 192.168.1.100
27
+ port: 80
28
+ ` ` `
29
+
30
+ Configuration variables :
31
+
32
+ - **host** (*Required*): The IP address of your ted gateway.
33
+ - **port** (*Optional*): The port of your ted gateway. Defaults to 80.
34
+ - **name** (*Optional*): Name of the ted gateway. Defaults to ted.
35
+
36
+ For each plugged MTU, using an index starting at 1, the platorm creates 2 sensors :
37
+ ` ` ` yaml
38
+ sensor.<name>_mtu<MTU id>_power
39
+ sensor.<name>_mtu<MTU id>_voltage
40
+ ` ` `
41
+
You can’t perform that action at this time.
0 commit comments