parent
e656c1f4df
commit
5bc4bb794e
|
@ -5,7 +5,7 @@ The integration happens either through the WeMo-Link bridge, which acts as an IP
|
||||||
|
|
||||||
## Supported Things
|
## Supported Things
|
||||||
|
|
||||||
The WeMo Binding supports the Socket, Insight, Lightswitch, Motion, Dimmer, Coffemaker and Maker devices, as well as the WeMo-Link bridge with WeMo LED bulbs.
|
The WeMo Binding supports the Socket, Outdoor Plug, Insight, Lightswitch, Motion, Dimmer, Coffemaker and Maker devices, as well as the WeMo-Link bridge with WeMo LED bulbs.
|
||||||
The Binding also supports the Crock-Pot Smart Slow Cooker, Mr. Coffee Smart Coffemaker as well as the Holmes Smart Air Purifier, Holmes Smart Humidifier and Holmes Smart Heater.
|
The Binding also supports the Crock-Pot Smart Slow Cooker, Mr. Coffee Smart Coffemaker as well as the Holmes Smart Air Purifier, Holmes Smart Humidifier and Holmes Smart Heater.
|
||||||
|
|
||||||
## Discovery
|
## Discovery
|
||||||
|
|
|
@ -86,6 +86,12 @@ public class WemoDiscoveryParticipant implements UpnpDiscoveryParticipant {
|
||||||
device.getIdentity().getUdn().getIdentifierString());
|
device.getIdentity().getUdn().getIdentifierString());
|
||||||
return new ThingUID(THING_TYPE_SOCKET, device.getIdentity().getUdn().getIdentifierString());
|
return new ThingUID(THING_TYPE_SOCKET, device.getIdentity().getUdn().getIdentifierString());
|
||||||
}
|
}
|
||||||
|
if (device.getDetails().getModelDetails().getModelName().toLowerCase()
|
||||||
|
.startsWith("outdoorplug")) {
|
||||||
|
logger.debug("Discovered a WeMo Outdoor Plug thing with UDN '{}'",
|
||||||
|
device.getIdentity().getUdn().getIdentifierString());
|
||||||
|
return new ThingUID(THING_TYPE_SOCKET, device.getIdentity().getUdn().getIdentifierString());
|
||||||
|
}
|
||||||
if (device.getDetails().getModelDetails().getModelName().toLowerCase().startsWith("insight")) {
|
if (device.getDetails().getModelDetails().getModelName().toLowerCase().startsWith("insight")) {
|
||||||
logger.debug("Discovered a WeMo Insight thing with UDN '{}'",
|
logger.debug("Discovered a WeMo Insight thing with UDN '{}'",
|
||||||
device.getIdentity().getUdn().getIdentifierString());
|
device.getIdentity().getUdn().getIdentifierString());
|
||||||
|
|
Loading…
Reference in New Issue