-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List of supported devices #27
Comments
kurniawan77 write in a comment that this is working with Domoticz, so i will add this to the list. |
Works with Home Assistant. |
I was on the virge of creating an issue for this, sort of. Wouldnt a Wiki of some sort be nice for this project? |
Hi, So far i was focused just to improve the compatibility and the bridge emulation of this project, but for sure a wiki will be required. README page don't contain all the details and is already very big, so when i will have some time i will start to create the wiki (no experience with this so far). Can you tell me where you encored problems while deploying this? For me is hard to have the perspective of a new user because of the many changes added. |
Hello, Cudos on creating a great project! |
Would a Logitech Harmony Elite remote be able to pair up with this emulator? I've been looking for a way to control all my IKEA tradfri lights from a single remote that isn't my phone. |
Hi! If is not working we will make it work. Do you have such device? i believe @Konnichy can confirm if he was able to pair the Logitech Harmony remote with this emulator. Marius. |
Ah yes I found the thread started by @Konnichy. This is very close to what I want to achieve, except I do not need to control any 433 MHz devices, just my IKEA tradlos lights which seems to already be supported. I am completely new to home automation but this project seems very promising. I do not yet have a Logitech harmony as I wanted to look into the possibility of being able to use without investing in the expensive Hue system before buying one (as it is pretty expensive aswell). |
Hello, I can confirm the Logitech Harmony Hub works well with diyHue. Once both are installed/running on the same LAN, just launch the automatic device detection on the Harmony software, and diyHue is found as a Philips Hue Hub. Easy! But with only that, no lamp will be found. You'll have to configure diyHue appropriately for that, pointing it to the lamps' IP addresses. Then the Harmony software will find them and let you associate them to buttons. HOWEVER, I don't have any information about those IKEA lamps. Are they fully compatible with Philips Hue (RF frequency+protocol and HTTP API) ? If not (as it was in my case), you'll have to emulate Philips Hue lamps as well and find a way to make those emulated lamps send the radio frequencies. That's what I did with a small Python script which commands an RF transmitter. |
IKEA and Philips lamps use ZigBee communication protocol, in order to control them you need Raspbee module (what i'm using right now) or to use the Ikea Gateway (previously used) or original Hue Bridge. Custom wifi lights are automatically discovered if they are binding on port 80, if is binding on different port then the manual procedure used by Konnichy must be applied. ZigBee lights are also automatically added if gateway is paired. |
Marius, any plans on supporting ZigBee USB sticks such as the Nortek HUSBZB-1? |
No plans, i already invest time and money in Raspbee module and i will remain with this one for the moment. |
I'm getting mixed results with the android app Hue Pro. I have hue lights and it seems to switch a random number when I attempt to switch a large group of them, usually missing 5-7 lights. UPDATE: I'm getting this issue with other apps too, have you tested with many lights at once? I have 29 Hue branded lights on the official hub, 16 in the group I'm trying to control right now. |
I have 1 LED Strip (WS2812b) and assigned 6 seperate Lights to it. When switching all of them at once (Scene), sometimes it takes very long or even misses some Lights to update. Thought it was a transition animation (delay). |
Hi, The problem is that both esp and original hue bridge can be overloaded by a huge number of requests. Update: I will release a fix for this issue, very likely i will set a delay in case the light address ip is the same to wait for 0.2-0.4 seconds. |
I made a commit in develop branch to send light requests one by one. Possible issue is in case one light is unreachable the others in group will wait until this will timeout, then go to next one. Current timeout is 3 seconds, it can be set to a lower value if you are sure the wifi network is running very stable. https://github.com/mariusmotea/diyHue/raw/develop/BridgeEmulator/HueEmulator.py |
Great, I'll try it out tonight and get back to you. |
I tried that version (there were some syntax issues, specifically a lot of "sendLightRequest(light, put_dictionary ])" to fix.) It didn't seem to fix the issue. I looked into the config file to see if there was something interesting about the specific lights that were not changing (i.e. maybe they were all at the beginning/end of your list, or something like that) but there's nothing obvious. I'll take some time to dig into the code myself, but probably wont have time until tomorrow evening to do much more than quick tests. |
I see, i made a mistake. i will update now again. Update: |
That seems to fix it, it turns on a group of 17 lights in around 15-17 seconds. |
Ok, I think this falls under the same topic, is there a way (web page/rest call) to fake the "press the button" and make the bridge do what it needs to do (I assume it broadcasts or something). I'm trying to pair this with Samsung Smartthings which uses in-the-house control over the hue, not external API, but it's looking for that button press event. |
Provide me the output of HueEmulator.py script during the pair process. Theoretically the button is always pressed, there must be a different issue here. |
Sorry for the delay, busy week. I started a new issue for this so we can stop boring the others in this thread. #95 |
in android works: computer: I have modified the WS2812BHueStrip.ino file and supports the models: HueLightStrip (LST001) and HueBulb (LCT015). I have a capture of both lights in application. |
I'm sorry, I've named the modified file WS2812BHueBulb.ino :-) |
Hello Guys, |
Unfortunately there are no commercial lights that come with these firmwares and i'm unaware of OTA procedure for any provider. Feican bulbs come with ESP8266 module, but you will still need to connect serial wires to flash the firmware and without soldering station it will be hard. |
Wanted to share this, I plan to make one when I return home from business: ESP8266 In-Circuit Programming Clip |
I don't know if this was mentioned already anywhere but there are many Sonoff devices usable with the emulator that are running esp8266. I already have working Sonoff S20 smart plug (this one is really awesome and simple to use) and Sonoff Basic running slightly modified on/off sketch. Here is a nice list of available Sonoff devices: Article about S20 socket: Might be worth mention in wiki since these are really handy devices. |
Sonoff S20 is very interesting product. Do you remember the gpio pin used, i just order one now? Update: found it:
i will try to create custom firmware that will handle the led and the button. |
If youre ordering one and you have EU outlets in your country, pay attention to choose correct socket type. See image below. If the type is not specified by the seller, it should be type E. |
Hi, You can add Jeedom solution in working applications. Cédric |
Done. |
The LYT8266 RGBW bulb can be used with some slight modifications to the Generic_RGBW_Light.ino
This should be inserted after line 304:
I can create a PR if that's easier or you can make the changes yourself |
Please create a new issue or pull request (if required) to request adding a device to the supported list. Either that or message us on Slack. |
Homeseer with JowiHue plugin works. Only the lights in Homeseer do not update if you change the color with the Hue app. |
Hi @JDF1 would you open a new issue regarding home seer, so we can add it to the supported list and try fix the bug you mentioned! |
ESPHome Cleanup and Default Transition (mariusmotea#255)
how can I use a philips hue bluetooth lamp ? |
Bluetooth lamps are not supported. |
Anyone had any success with the https://www.brilliant.tech/home?tab=control controls? I previously had it running using the HASS emulated hue plugin (https://github.com/hass-emulated-hue/core) but it seemed to stop working with some sort of update to the Brilliant devices in the past few weeks. I have a workaround by syncing the Hue lights via diyHue to Smartthings, but I hate having to rely on multiple devices like that, so would be nice to have this working directly. |
This is not an issue, i create this topic so the users can write what devices they where able to use with this Hue emulator to specify them in README file. For devices that are not working will be better to have separate issue opened.
The text was updated successfully, but these errors were encountered: