File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : page
3
+ title : " myStrom WiFi Bulb"
4
+ description : " Instructions how to integrate myStrom WiFi Bulbs into Home Assistant."
5
+ date : 2017-04-18 06:00
6
+ sidebar : true
7
+ comments : false
8
+ sharing : true
9
+ footer : true
10
+ logo : mystrom.png
11
+ ha_category : Light
12
+ ---
13
+
14
+
15
+ The ` mystrom ` light platform allows you to control your [ myStrom] ( https://mystrom.ch/en/ ) WiFi Bulbs.
16
+
17
+ To use your myStrom WiFi Bulb in your installation, add the following to your ` configuration.yaml ` file:
18
+
19
+ ``` yaml
20
+ # Example configuration.yaml entry
21
+ light :
22
+ - platform : mystrom
23
+ host : IP_ADDRESS
24
+ mac : MAC_ADDRESS
25
+ ` ` `
26
+
27
+ Configuration variables:
28
+
29
+ - **host** (*Required*): The IP address of your myStrom WiFi Bulb, eg. ` 192.168.1.32`.
30
+ - **mac** (*Required*): The MAC address of your myStrom WiFi Bulb, eg. `5AAC8CA542F3`.
31
+ - **name** (*Optional*): The name to use when displaying this light.
32
+
33
+ Check if you are able to access the light located at `IP_ADRRESS`. The details about your light is provided as a JSON response.
34
+
35
+ ` ` ` bash
36
+ $ curl http://[IP_ADDRESS]/api/v1/device/[MAC_ADDRESS]
37
+
38
+ {
39
+ "MAC_ADDRESS": {
40
+ "type": "rgblamp",
41
+ "battery": false,
42
+ "reachable": true,
43
+ "meshroot": false,
44
+ "on": true,
45
+ "color": "0;0;100",
46
+ "mode": "hsv",
47
+ "ramp": 409,
48
+ "power": 5.1,
49
+ "fw_version": "2.25"
50
+ }
51
+ }
52
+ ` ` `
53
+
You can’t perform that action at this time.
0 commit comments