LimitelessLED support?
-
JohnConrader
- Posts: 54
- Joined: Thu Dec 16, 2004 11:58 am
- Location: Florida
LimitelessLED support?
Hey,
I was looking for some new color bulbs (like the Hue) and saw that there is a company called LimitelessLED. They make both color and white wifi enabled bulbs. They are quite a bit cheaper than some of the alternatives.
I was wondering if Indigo could support these. It looks like the API might be pretty simple. If not natively, maybe someone could make a plugin.
John
I was looking for some new color bulbs (like the Hue) and saw that there is a company called LimitelessLED. They make both color and white wifi enabled bulbs. They are quite a bit cheaper than some of the alternatives.
I was wondering if Indigo could support these. It looks like the API might be pretty simple. If not natively, maybe someone could make a plugin.
John
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: LimitelessLED support?
It looks possible. Note, the bulbs themselves aren't WiFi - they probably use ZigBee light link. You have to have the WiFi bridge ($17) in order to bridge from their network to WiFi. Still, it's quite a bit cheaper than Hue.
In fact, sounds a bit too good to be true. And my momma always warned me about things that are too good to be true...
Maybe one of our enterprising 3rd party developers will attempt it!
In fact, sounds a bit too good to be true. And my momma always warned me about things that are too good to be true...
Maybe one of our enterprising 3rd party developers will attempt it!
Re: LimitelessLED support?
Hi,
You can find these bulbs with different names in the market.
Somebody, made a "lux" comparative between Philips Hue and LimitLess.
It seem that the "real" numbers does not correspond to "declared" values.
I was interested (in fact still), but ... my mother also warned me
http://board.homeseer.com/showpost.php? ... ostcount=4
http://i2.wp.com/www.jon00.me.uk/images ... Matrix.png
More about
http://board.homeseer.com/showthread.php?t=159514
http://www.easybulb.com/support/
http://www.indiegogo.com/projects/limit ... mitlessled ¿¿¿????
You can find these bulbs with different names in the market.
Somebody, made a "lux" comparative between Philips Hue and LimitLess.
It seem that the "real" numbers does not correspond to "declared" values.
I was interested (in fact still), but ... my mother also warned me
http://board.homeseer.com/showpost.php? ... ostcount=4
http://i2.wp.com/www.jon00.me.uk/images ... Matrix.png
More about
http://board.homeseer.com/showthread.php?t=159514
http://www.easybulb.com/support/
http://www.indiegogo.com/projects/limit ... mitlessled ¿¿¿????
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: LimitelessLED support?
Well, I think I know what the gotcha is.
Check out the video(s) on the easybulb link above.
That pretty much explains why the Hue is twice as much. Anything that is that complex to set up/configure - well, didn't have a lot of thought put into it.
Also, I'm pretty sure the guy who built the chart on the second link above is wrong - I don't think the bulbs connect via WiFi. It may use some 2.4GHz wireless technology, but I'm pretty positive it's not WiFi. I could be wrong though. Note this bullet point from the Limitless page:
Check out the video(s) on the easybulb link above.
That pretty much explains why the Hue is twice as much. Anything that is that complex to set up/configure - well, didn't have a lot of thought put into it.
Also, I'm pretty sure the guy who built the chart on the second link above is wrong - I don't think the bulbs connect via WiFi. It may use some 2.4GHz wireless technology, but I'm pretty positive it's not WiFi. I could be wrong though. Note this bullet point from the Limitless page:
Zigbee uses 2.4GHz as well - so I stand by my claim that the bulbs actually talk Zigbee to the remote control and the bridge - then the apps talk WiFi to the bridge.• Built-in WiFi and 2.4Ghz RF.
-
JohnConrader
- Posts: 54
- Joined: Thu Dec 16, 2004 11:58 am
- Location: Florida
Re: LimitelessLED support?
Yep. They are not wifi (I must have mis-read that). Anyhow, I ordered a starter set. I am always willing to try out different systems. It looks similar to the Hue system (and I would guess it is zigbee from what they say). Once I get them, maybe I can see if I can figure out how to make a plugin for them.
Thanks,
John
Thanks,
John
- jay (support)
- Site Admin
- Posts: 19232
- Joined: Wed Mar 19, 2008 11:52 am
- Location: Austin, Texas
- Contact:
Re: LimitelessLED support?
Excellent - keep us posted. I'm particularly interested to see if you really do have to jump through all those hoops just to get it set up or if they've figured out a better way.
Re: LimitelessLED support?
I have some LimitlessLED bulbs and a Wi-Fi bridge.
I can use the iOS app to turn them on and off.
Ideally I would use some Python scripting to ping the WI-Fi brige from Ingdigo.
Their Python scripts are on this page http://www.limitlessled.com/dev/
Sample code is:
import socket
UDP_IP = "255.255.255.255" #this is the IP of the wifi bridge, or 255.255.255.255 for UDP broadcast
UDP_PORT = 8899
MESSAGE1 = "\x39\x00\x55" #this turns all lights off
print "UDP target IP:", UDP_IP #don't really need this
print "UDP target port:", UDP_PORT #don't really need this
print "message:", MESSAGE1 #don't really need this
sock = socket.socket(socket.AF_INET,
socket.SOCK_DGRAM)
sock.sendto(MESSAGE1, (UDP_IP, UDP_PORT))
Once I figure out the IP for the Wireless bridge I presume I should be able to send commands via the above script?
I can use the iOS app to turn them on and off.
Ideally I would use some Python scripting to ping the WI-Fi brige from Ingdigo.
Their Python scripts are on this page http://www.limitlessled.com/dev/
Sample code is:
import socket
UDP_IP = "255.255.255.255" #this is the IP of the wifi bridge, or 255.255.255.255 for UDP broadcast
UDP_PORT = 8899
MESSAGE1 = "\x39\x00\x55" #this turns all lights off
print "UDP target IP:", UDP_IP #don't really need this
print "UDP target port:", UDP_PORT #don't really need this
print "message:", MESSAGE1 #don't really need this
sock = socket.socket(socket.AF_INET,
socket.SOCK_DGRAM)
sock.sendto(MESSAGE1, (UDP_IP, UDP_PORT))
Once I figure out the IP for the Wireless bridge I presume I should be able to send commands via the above script?
Re: LimitelessLED support?
Anyone have a thought here - even on how to use Applescript to send a UDP command?
Re: LimitelessLED support?
why would you use Applescript when you have the Python commands already ? I tested this out and was able to easily turn the bulbs on and off and brighten and lower the bulbs with the python commands. I did it from the command line but no reason why it can't be run through indigo. Am going to attempt a plugin when I have more time, but for the cost, they are a great little unit, the bridge is small and neat and easily hidden behind devices without interference.
-
chrisfromthelc
- Posts: 38
- Joined: Wed Oct 08, 2014 1:30 pm
Re: LimitelessLED support?
Were you ever able to write a plugin for these? I'm interested in trying them out, but writing one from scratch is a bit out of my skillset.
Re: LimitelessLED support?
Let me know, too. I have the MiLight version (same chipset, though) and the wifi link. I can control it via the iPhone. I know it has a limited web server, too.
I'd love to be able to control this with Indigo. I could have it change color to indicate several things (such as blue when it's raining , red for alarm is on, etc.)
I'd love to be able to control this with Indigo. I could have it change color to indicate several things (such as blue when it's raining , red for alarm is on, etc.)
Re: LimitelessLED support?
Have a look at this thread - user Chameleon has a plugin that started life as Fibaro RGBW but has expanded this week to a few types of LED bulbs:
http://forums.indigodomo.com/viewtopic.php?t=14352
Sent from my iPhone using Tapatalk
http://forums.indigodomo.com/viewtopic.php?t=14352
Sent from my iPhone using Tapatalk
Re: LimitelessLED support?
I had a few of these but they're now retired or only doing basic duties since the only problem with them I find is that they do not have feedback and that to me is a deal breaker. Don't know if anythings changed though since I last looked.