Skip to content

Commit 820f1d5

Browse files
authored
Add inital docs for myStrom WiFi bulbs (home-assistant#2454)
1 parent 31304d1 commit 820f1d5

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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+

0 commit comments

Comments
 (0)