-
Notifications
You must be signed in to change notification settings - Fork 44
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
Problem connecting to Hue Bridge #8
Comments
I'm experiencing the same issue, here some addiational logging information.
|
If you uninstall and reinstall the Philips Hue plugin from the |
I tried to reinstall the plugin a couple of times, but that did not help. |
I just connected (supposedly) my bridge to my streamdeck as well and have the same issue as above where it doesn't show. Hopefully, mine will magically show up in the next day or two as well? |
I had the same problem i needed to Close Stream Deck and Manualy Start it as Administrator. There is a problem with this plugin not detecting hub when started with Auto Start. All my buttons and macros are working prefectly fine but when starting stream deck as administrator in Autostart ony Philips Hue plugin is broken. |
I have the same problem when i start streamdeck as an administrator the hue app will not show my bridge if i close Stream Deck and start it as an user it will show my bridge. |
+1 for a fix please :) I also ran into the same issue recently. "No bridges" were available for previously working buttons.
|
I have the same symptoms as described above, but unlike the other user, removing and reinstalling the plugin fixed it for me. |
As an update, I continue to run into this issue intermittently. I continue to use my process above, which generally continues to fix it for my case. |
Hi. Still a no go for me. It keeps dropping. Super frustrating. I can’t figure out why using my company's vpn causes this not to work. Everything else on my streamdeck can work just fine. Only delta is the fact that the hue bridge is hard wired with wireless. I’m sure a code update will fix how the routing is done.
Will wait…and one day :)
Thank you,
Richard
… On Aug 5, 2021, at 12:33 PM, jaeichel ***@***.***> wrote:
As an update, I continue to run into this issue intermittently. I continue to use my process above, which generally continues to fix it for my case.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
|
@richsark2000 I've done a bit of hacking with my Philips hue bridge in the past and I think it has a IP address using TCP with the http protocol. I wonder if streamdeck is "searching" for this ip address using something non-TCP, like a UDP broadcast or multi-cast to handle cases where the Philips hue bridge changes it's ip. I have no idea if this will fix it, but I wonder if you can manually set the IP address of your Philips hue bridge by configuring your DHCP router at home to give the philips hue a static ip address on your local network. Of course it still might break if the streamdeck plugin relies on a UDP search mechanism and doesn't try to connect to a previous ip address directly. If I have some time to look through their source code I can see what it's trying to do. The short version is, if it's using UDP multi-cast, the VPN can disrupt that mechanism. If that's the case, there should be a way to patch it (maybe one-line? probably a bit more depending). Without digging in I can't say for sure what is happening. |
@richsark2000 looks like streamdeck is using the standard philips hue discovery mechanism API - code It is looking up https://discovery.meethue.com and the site returns the local ip address of your bridge. Then stream deck just uses that as a result. Try visiting https://discovery.meethue.com/ with and without your VPN and see what it returns. You might see something like I think this is why... I think the philips hue bridge, sends it's IP address to the philips server for services. IF you are on the same network at home, you can go to https://discovery.meethue.com (Philips Hue probably sees you going to this website from your home ip address - the router WAN address - and returns the home IP address of your bridge on your home network). If you are not at home or "virtually in the office" through your VPN, the philips hue website thinks you are in your work and would return the work's bridge ip address - if they had one instead of your home system. Of course there is still the auth part of it so you cannot simply use your work's or someone else's address without pairing... long story short, I think this is where it's breakding down in your use case. What to do about it? If you are able to code, you can submit a patch and improve the discovery system. They are using the standard philips API method, but you can enhance it to add more caching and a way to deal with your situation. If you are not able to code, there might be a work around. First, check that your work VPN ip range is different from your home range - they probably are unless you did something custom at home. If they are the same, you are out of luck. Second, try using the streamdeck to control your lights BEFORE connecting to the VPN, then after you connect to the VPN see if the buttons still work. It's only a workaround, but it might be a way to get your system to find the bridge before connecting to the VPN and then allowing you to remember it for a while. I'm not sure how long it will last, but it did work on my system when I setup something similar. [edit] - it is also possible your work VPN is routing ALL traffic to your work. Any calls to your local network might be going off to your work so streamdeck will send the message, your work VPN might take it, and the bridge will never see it. If so, you can try to contact your IT or maybe tweak your vpn config yourself, but if ALL traffic is routed, you are also out of luck. - technically you could override your VPN and manually setup a routing table but that's way beyond the scope for streamdeck or philips hue. Good luck! |
I had the same issue again. This time I tried @Trupacz approach to compare, that is, simply quit Stream Deck from sys tray and then launch it manually as Administrator. It worked fine straight away. No need to re-discover bridges, etc. |
Hi. Thanks for the reply. I’m using a MacBook Pro. Already have admin. Still having the issue following quitting it and all apps and reopen. It works for 20 min then back to not working.
Thank you,
Richard
… On Aug 12, 2021, at 1:39 AM, Adam ***@***.***> wrote:
I had the same issue again. This time I tried @Trupacz approach to compare, that is, simply quite Stream Deck from sys tray and then launched it manually as Administrator. It worked fine straight away. No need to re-discover bridges, etc.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
|
Open Activity Monitor and Quit the Streamdeck process. When it starts again it should work. |
should make this so we can just enter the ip on our network the bridge has been assigned |
Wow Jaeichel, tremendously helpful -- THANK YOU. My stream deck was seeing the hue hub, but wouldn't pair with it. I was hard wired and decided to turn on my wi-fi -- instantly I was able to pair. So unfortunately, the way my network is hooked up, I can only control Hue via streamdeck when my wifi is enabled. But this saved my a lot of frustration, and helped me understand the root cause. Thanks again for your thoughtful and thorough post. |
As a follow-up, I was doing a test locally and with minimal coding and a small amount of bravery you can patch your local plugin pretty easily. Basically you can hack the discovery process, You can hard-code your local bridge id and ip into that line locally so that it persists no matter what network you are on. This should work as long as you can ping / visit that ip in a browser.
A tiny bit of hacking....
That's it! Note: if you update the plugin, you might need to reapply your hack... |
@dkern is it worth re-openning this issue and having a look at PR-30? I've continued to have issues, but I'm hoping that this fix might address them. I'm not sure how to do wide spread testing, but "it works on my local machine" :P. |
In the latest Version of the plugin here on git, there is a Feature to add your bridge by IP manially. No hacking needed. |
Thanks so much jaeichel, I tried what you laid out, but didn't work for me. After turning off WiFi and rebooting StreamDeck, still "NO HUBS FOUND". |
dkern, can you post a link to that plugin? |
Its right here in this repository. Just download it and do a manual installation (copy the files). |
Shux, I’m really confused. I guess I already had that installed for a couple years now. Isn’t that just the Philips Hue Plugin? How does that help with the connection issue? Apologies for confusion.
|
Yes, it is that plugin. But we're working on that, so there are updates from time to time. By now, the manual add feature is not rolled out and must be installed manually from git, if you want to use it now. Otherwise you need to wait for the deployment. |
I uninstalled 1.4 from the Stream Deck Store > restarted Stream Deck > installed 1.5. > Edited cache.js -- still not working. One interesting thing is that although I installed 1.5, when I go to the store it says 1.4 is installed. Caching issue? |
This is a crazy issue. I get this problem every time I boot my windows machine. When I go to https://discovery.meethue.com/ I see multiple adresses and none of them matches the ip adress or id for my hub. What are the chances of getting a change to the plugin so it is possible to manually specify the ip adress of the hub ? |
It is already integrated in the version here on github. You need to manually update the files for now to have it on your system. |
My problem is that I need it on Mac and I cannot find the folder where the
plugin is installed.
There is no folder for the plugin in the Library Application support.
I am running Monterey on a Mac Studio.
…On Tue, Jun 7, 2022 at 7:57 PM dkern ***@***.***> wrote:
What are the chances of getting a change to the plugin so it is possible
to manually specify the ip adress of the hub ?
It is already integrated in the version here on github. You need to
manually update the files for now to have it on your system.
—
Reply to this email directly, view it on GitHub
<#8 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AESW6MCWNGWTSCC64RA2I73VN6ESJANCNFSM4TGYYDPA>
.
You are receiving this because you commented.Message ID:
***@***.***>
--
MVH Tommy Jensen
|
I figured it out. |
Want to share? |
Is there a reason why we can't just use SSDP? This would the the obvious answer to the problems here. |
Howdy, guys. I know this post is old, but I have the same issue. I can find and "add" my Philips Hue bridge in the Stream Deck software, and then after I complete the pairing, there is no bridge to select from the dropdown menu. I've tried everything in this post, but nothing works. I'm running Stream Deck software version: 6.7.3 (21005) Thanks in advance for any help you can provide. |
When I try to connect ot my Hue Bridge the Stream Deck app finds the bridge andt connects to it. But when I ty to select the bridge it's not listed in the drop down menu of the button I have selected. The drop down meny only has the options "No Bridges" and "Add new"
The text was updated successfully, but these errors were encountered: