LimitelessLED support?

This is an archive of older posts. You can't add topics - rather, create a new topic in one of the forums above. You can still reply to topics in this forum though we encourage you to start a new topic in the forums above instead.
JohnConrader
Posts: 54
Joined: Thu Dec 16, 2004 11:58 am
Location: Florida

LimitelessLED support?

Post by JohnConrader »

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
User avatar
jay (support)
Site Admin
Posts: 19232
Joined: Wed Mar 19, 2008 11:52 am
Location: Austin, Texas
Contact:

Re: LimitelessLED support?

Post by jay (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!
Jay (Indigo Support)
Twitter | Facebook | LinkedIn
tenallero
Posts: 94
Joined: Mon Oct 31, 2011 10:51 am
Location: Barcelona

Re: LimitelessLED support?

Post by tenallero »

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 ¿¿¿????
User avatar
jay (support)
Site Admin
Posts: 19232
Joined: Wed Mar 19, 2008 11:52 am
Location: Austin, Texas
Contact:

Re: LimitelessLED support?

Post by jay (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:
• Built-in WiFi and 2.4Ghz RF.
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.
Jay (Indigo Support)
Twitter | Facebook | LinkedIn
JohnConrader
Posts: 54
Joined: Thu Dec 16, 2004 11:58 am
Location: Florida

Re: LimitelessLED support?

Post by JohnConrader »

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
User avatar
jay (support)
Site Admin
Posts: 19232
Joined: Wed Mar 19, 2008 11:52 am
Location: Austin, Texas
Contact:

Re: LimitelessLED support?

Post by jay (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.
Jay (Indigo Support)
Twitter | Facebook | LinkedIn
hamishb
Posts: 9
Joined: Tue Jan 14, 2014 4:52 am

Re: LimitelessLED support?

Post by hamishb »

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?
hamishb
Posts: 9
Joined: Tue Jan 14, 2014 4:52 am

Re: LimitelessLED support?

Post by hamishb »

Anyone have a thought here - even on how to use Applescript to send a UDP command?
wiery
Posts: 288
Joined: Mon Jun 02, 2008 2:52 am
Location: Ireland
Contact:

Re: LimitelessLED support?

Post by wiery »

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?

Post by chrisfromthelc »

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.
dlleon
Posts: 120
Joined: Fri Dec 14, 2012 10:39 pm

Re: LimitelessLED support?

Post by dlleon »

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.)
howartp
Posts: 4559
Joined: Thu Jan 09, 2014 4:43 pm
Location: West Yorkshire, UK

Re: LimitelessLED support?

Post by howartp »

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
Coolcaper
Posts: 322
Joined: Fri Aug 30, 2013 9:37 pm
Location: Australia

Re: LimitelessLED support?

Post by Coolcaper »

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.
Post Reply

Return to “Archived Posts”