Closed BastianZim closed 6 years ago
I thing this is not needed.
I have it integrated via the Hue Binding. Works perfectly for me
The state of the bulb is reflected in the OpenHAB UI correctly I assume? If you turn it on and off using a Free@Home switch I mean.
Yes, I think so, what I meant is, since you can control Hue lights via B+J it would be possible to control them via OpenHab and this binding: OpenHAB -> B+J Binding -> B+J SysAP -> Hue Bridge -> Hue light and I’m not sure if it’s necessary to add them to this binding, since it is possible to control them from OpenHAB directly via the Hue binding: OpenHAB -> Hue Binding -> Hue Bridge -> Hue light.
It is possible to implement it and some things are already supported, I think, but I just wanted to get the general interest in this because I think it’s unnecessary to support them as well through this binding, that would just be more work but if everybody else wants this I would start to get the necessary files.
@Lucurus The Hue switch actor with deviceId: 10C4 is supported with channelID: ch0000 This is currently the only Hue device.
I would assume that the device has to be reachable via SysAP WebUI. Best
// // Hue Schaltaktor
case "10C4": {
String channelId = "ch0000";
ThingUID uid = new ThingUID(FreeAtHomeBindingConstants.SWITCH_THING_TYPEUID,
device.Serial + "_" + channelId);
Map<String, Object> properties = new HashMap<>(1);
properties.put("deviceId", device.Serial);
properties.put("channelId", channelId);
DiscoveryResult discoveryResult = DiscoveryResultBuilder.create(uid)
.withLabel(device.DeviceDisplayName + "_" + device.DeviceTypeName + "_" + deviceTypeId
+ "_" + device.Serial + "_" + channelId)
.withBridge(bridgeUID).withProperties(properties).build();
thingDiscovered(discoveryResult);
@ruebox Yes, I was just wondering if we should continue to support it. If yes, I can provide other devices and their data as well, but as laid out, I don't think we should since there is already a binding.
Closed as not devices can be used via openhab hue binding. @Lucurus If not, please let me know
Hey, I just wanted to ask, if we should integrate hue actors as well since OpenHAB already offers a binding for it? If yes I would start testing them as well, but I just wasn't sure if we really need it.
Best