forked from openhab/openhab-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kai Kreuzer <[email protected]>
- Loading branch information
1 parent
25b21f6
commit 0672d8d
Showing
9 changed files
with
88 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule openhab
updated
from 8a2ca4 to d1e454
Submodule openhab-bundles
updated
5 files
+1 −1 | bindings/org.openhab.binding.zwave | |
+1 −1 | openhab-core | |
+1 −1 | openhab2-addons | |
+12 −1 | pom.xml | |
+1 −1 | uis/org.openhab.ui.habmin |
Submodule openhab2-addons
updated
74 files
Submodule smarthome
updated
from ce70ff to 234fda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
layout: documentation | ||
--- | ||
|
||
{% include base.html %} | ||
|
||
# Miele@Home Binding | ||
|
||
This binding integrates Miele@Home appliances. Miele@Home is a Zigbee based network to interconnect and control Miele appliances that are equipped with special modules. See www.miele.de for the list of supported appliances | ||
|
||
|
||
## Supported Things | ||
|
||
Dishwasher | ||
Fridge | ||
Fridge/Freezer combination | ||
Hob | ||
Hood | ||
Oven | ||
Microwave/Oven combination | ||
Tumbledryer | ||
Washingmachine | ||
|
||
## Discovery | ||
|
||
The binding is able to auto-discover the Miele XGW3000 gateway. When an XGW3000 gateway is discovered, all appliances can be subsequently discovered | ||
|
||
|
||
## Thing Configuration | ||
|
||
Each appliances needs the device Zigbee UID as configuration parameter. The Zigbee UID is nowhere to be found on the appliances, but since the discovery works quite reliable, a manual configuration is not needed. | ||
|
||
However, in the thing file, a manual configuration looks e.g. like | ||
|
||
``` | ||
Bridge miele:xgw3000:dilbeek [ipAddress="192.168.0.18", interface="192.168.0.5"] { | ||
Things: | ||
Thing fridgefreezer freezer [uid="00124b000424be44#2"] | ||
Thing hood hood [uid="001d63fffe020685#210"] | ||
Thing fridge fridge [uid="00124b000424bdc0#2"] | ||
Thing oven oven [uid="001d63fffe020390#210"] | ||
Thing oven microwave [uid="001d63fffe0206eb#210"] | ||
Thing hob hob [uid="00124b000424bed7#2"] | ||
Thing dishwasher dishwasher [uid="001d63fffe020683#210"] | ||
Thing tumbledryer dryer [uid="001d63fffe0200ba#210"] | ||
Thing washingmachine washingmachine [uid="001d63fffe020505#210"] | ||
} | ||
``` | ||
|
||
## Channels | ||
|
||
Until the Miele protocol is fully documented the definition of the channels in use can be found at https://github.com/openhab/openhab2-addons/tree/master/addons/binding | ||
|
||
|
||
## Full Example | ||
|
||
demo.items: | ||
|
||
``` | ||
String MieleFridgeState (gMiele,gMieleFridge) {channel="miele:fridge:dilbeek:fridge:state"} | ||
Switch MieleFridgeSuperCool (gMiele,gMieleFridge) {channel="miele:fridge:dilbeek:fridge:supercool"} | ||
Number MieleFridgeCurrent (gMiele,gMieleFridge) {channel="miele:fridge:dilbeek:fridge:current"} | ||
Number MieleFridgeTarget (gMiele,gMieleFridge) {channel="miele:fridge:dilbeek:fridge:target"} | ||
Contact MieleFridgeDoor (gMiele,gMieleFridge) {channel="miele:fridge:dilbeek:fridge:door"} | ||
Switch MieleFridgeStart (gMiele,gMieleFridge) {channel="miele:fridge:dilbeek:fridge:start"} | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters