Mi-Light / LimitlessLED / Applamp

Others (MiLight, Hue, Toon etc...)

Moderator: leecollings

pepeEL

Re: Mi-Light / LimitlessLED / Applamp

Post by pepeEL »

Hi
Mi Light in Domoticz also support this controller:
1.jpg
1.jpg (101.52 KiB) Viewed 6849 times
and dimmer
2.jpg
2.jpg (66.9 KiB) Viewed 6849 times

And anybody know what is diffrent betwen this
1.jpg
1.jpg (101.52 KiB) Viewed 6849 times
and this dimmer
2.jpg
2.jpg (66.9 KiB) Viewed 6849 times
Becuase in first and second probably has control brightnes.

And for what dommer has double connect LEDV- and double LEDV +?
PaulM
Posts: 6
Joined: Friday 13 November 2015 20:50
Target OS: NAS (Synology & others)
Domoticz version:
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by PaulM »

I've got a , in my eyes, strange problem. When I executed a command in putty on the command line, this will work. But when I put the same command in a file and try to execute the file, nothing happens.


For instance:

Code: Select all

 pi@raspberrypi ~/domoticz/scripts $ echo -n -e "\x40\x47" | nc -u -q 1 192.168.1.21 8899 
will work.

But the following script:

Code: Select all

#!/bin/bash
sleep 1
echo -n -e "\x40\x47" | nc -u -q 1 192.168.1.21 8899    # change to ochtend kleur
does not work when I give the command

Code: Select all

 sh milight_ochtend.sh
Where is my mistake?
hayman
Posts: 66
Joined: Tuesday 15 March 2016 18:08
Target OS: NAS (Synology & others)
Domoticz version: 3.8153
Location: Nerthland
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by hayman »

thanks for the great forum, i've domoticz on my synology and add the 4 zone rgbw but i don't get the color wheel,i have one hardware and 5 devices 0 all group and 1/4 all goes on and off but how to change color ... ?
thanks again
Nautilus
Posts: 722
Joined: Friday 02 October 2015 12:12
Target OS: Raspberry Pi / ODroid
Domoticz version: beta
Location: Finland
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by Nautilus »

Hi!

I've added the hardware and controls for on / off / dimming and color setting work fine. However, I cannot see the buttons for disco mode etc. as in the picture here viewtopic.php?f=17&t=6411#p70842. What could I be missing?
hayman
Posts: 66
Joined: Tuesday 15 March 2016 18:08
Target OS: NAS (Synology & others)
Domoticz version: 3.8153
Location: Nerthland
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by hayman »

thanks alot by change it to Dimmer i can get the color while ,but the effect i cant see them please some help


i have Domoticz on my synology Milight wifi,3 zone RGBW....
Nautilus
Posts: 722
Joined: Friday 02 October 2015 12:12
Target OS: Raspberry Pi / ODroid
Domoticz version: beta
Location: Finland
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by Nautilus »

hayman wrote:thanks alot by change it to Dimmer i can get the color while ,but the effect i cant see them please some help


i have Domoticz on my synology Milight wifi,3 zone RGBW....
Yes, I think we're having the same issue (see above) :) I'm running latest beta on RPi2.

Edit: did some testing and when setting mode to RGB the added device has the buttons as well. But even if I add a new hardware with RGBW mode the buttons are missing. I guess it cannot be intended?

Edit2: well well, it seems the buttons are only available in the group switch. Still wondering though why not on individual groups?
hayman
Posts: 66
Joined: Tuesday 15 March 2016 18:08
Target OS: NAS (Synology & others)
Domoticz version: 3.8153
Location: Nerthland
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by hayman »

okey pleasae when you find solution please update me
benotje
Posts: 30
Joined: Saturday 27 December 2014 15:50
Target OS: Raspberry Pi / ODroid
Domoticz version: V4.20078
Location: Menterwolde,The Netherlands
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by benotje »

i have the same problem doe you have the solution already ???
PaulM wrote:I've got a , in my eyes, strange problem. When I executed a command in putty on the command line, this will work. But when I put the same command in a file and try to execute the file, nothing happens.


For instance:

Code: Select all

 pi@raspberrypi ~/domoticz/scripts $ echo -n -e "\x40\x47" | nc -u -q 1 192.168.1.21 8899 
will work.

But the following script:

Code: Select all

#!/bin/bash
sleep 1
echo -n -e "\x40\x47" | nc -u -q 1 192.168.1.21 8899    # change to ochtend kleur
does not work when I give the command

Code: Select all

 sh milight_ochtend.sh
Where is my mistake?
raspberry pi
nas synology
homey
ubfssF
Posts: 59
Joined: Monday 02 November 2015 14:12
Target OS: Linux
Domoticz version: 2.2364
Location: Netherlands
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by ubfssF »

For those who struggling with the right bash commands: for my RGB-W lamp and the wifi interface I needed the following 2 bash commands to put it on and off:
On: echo -n -e "\x22\x00" | nc -u -q 1 192.168.xx.xx 8899
Off: echo -n -e "\x21\x22" | nc -u -q 1 192.168.xx.xx 8899
The lamp is a warm-white version.
The wifi-interface has firmware V1.0.04a-JCY-1.
I might have paired the lamp in the wrong way to the app, but it is strange that these codes aren't mentioned anywhere
User avatar
BartdaMan
Posts: 20
Joined: Sunday 22 May 2016 22:58
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Amersfoort
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by BartdaMan »

benotje wrote:i have the same problem doe you have the solution already ???
PaulM wrote:I've got a , in my eyes, strange problem. When I executed a command in putty on the command line, this will work. But when I put the same command in a file and try to execute the file, nothing happens.


For instance:

Code: Select all

 pi@raspberrypi ~/domoticz/scripts $ echo -n -e "\x40\x47" | nc -u -q 1 192.168.1.21 8899 
will work.

But the following script:

Code: Select all

#!/bin/bash
sleep 1
echo -n -e "\x40\x47" | nc -u -q 1 192.168.1.21 8899    # change to ochtend kleur
does not work when I give the command

Code: Select all

 sh milight_ochtend.sh
Where is my mistake?
In case you haven't solved it already, try this from the command line (where I assume you have made your script executable):

Code: Select all

bash miligh_ochtend.sh
deennoo
Posts: 784
Joined: Wednesday 10 December 2014 13:06
Target OS: Linux
Domoticz version: beta
Location: Bordeaux France
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by deennoo »

A v6 bridge is out, it include is own bulb + the group one.

Api can be found here : http://www.limitlessled.com/dev

Does it plan to be add on Domoticz ?
Domoticz stable 3.5877 for real & Domoticz beta for test
Rfxtrxe / RFLink / Milight / Yeelight / Tasmota / MQTT / BLE / Zigate
http://domo-attitude.fr
Diederik
Posts: 3
Joined: Saturday 11 June 2016 8:57
Target OS: NAS (Synology & others)
Domoticz version:
Location: The Netherlands
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by Diederik »

Same question for Mi-Light RGBWW light and iBox Wi-Fi bridge.
hayman
Posts: 66
Joined: Tuesday 15 March 2016 18:08
Target OS: NAS (Synology & others)
Domoticz version: 3.8153
Location: Nerthland
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by hayman »

same hier .... ?
DaWauZ
Posts: 69
Joined: Wednesday 05 November 2014 10:14
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Netherlands
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by DaWauZ »

Nautilus wrote:
hayman wrote:thanks alot by change it to Dimmer i can get the color while ,but the effect i cant see them please some help


i have Domoticz on my synology Milight wifi,3 zone RGBW....
Yes, I think we're having the same issue (see above) :) I'm running latest beta on RPi2.

Edit: did some testing and when setting mode to RGB the added device has the buttons as well. But even if I add a new hardware with RGBW mode the buttons are missing. I guess it cannot be intended?

Edit2: well well, it seems the buttons are only available in the group switch. Still wondering though why not on individual groups?
I would like to know also if the buttons like disco mode come available on individual groups. I would like to control my groups seperately.
Just tell me where to donate, no kiddings.
Raspberry Pi 2 model B with domoticz
OMV NAS installed on thin client HP T610
Openelec Kodi Mediaplayer on thin client HP T520 (and with multiboot windows 10)
gooxbe
Posts: 7
Joined: Wednesday 23 November 2016 10:20
Target OS: NAS (Synology & others)
Domoticz version:
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by gooxbe »

I received my new milight v6 (with the wifi box)

I tried to make it work via the normal procedure and scripting but it doesn't work, unfortunately.

And my understanding of the new API on http://www.limitlessled.com/dev/ is quite limited to send the new commands.

Anyone can help?
Nautilus
Posts: 722
Joined: Friday 02 October 2015 12:12
Target OS: Raspberry Pi / ODroid
Domoticz version: beta
Location: Finland
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by Nautilus »

gooxbe wrote:I received my new milight v6 (with the wifi box)

I tried to make it work via the normal procedure and scripting but it doesn't work, unfortunately.

And my understanding of the new API on http://www.limitlessled.com/dev/ is quite limited to send the new commands.

Anyone can help?
Unfortunately you cannot use the new API (i.e. Wifi Box1 or Wifi Box2) with Domoticz yet - until someone figures out how to build support for it. I think this is already mentioned in a couple of threads (including this :)) that here that are about MiLight. It also seems that people who have worked a lot with the older api's are struggling to understand the new, not many similarities with the older apis I guess.

If you are in a hurry then what you can do now is to get the old wifi bridge which can control the new bulbs for on / off / dim level / color (but not color temperature through Domoticz). There is also an ugly workaround to change the color temperature which involves using some external script that allows sending S+ / S- (program speed up / down) to individual group. It is not very convenient, I admit, and therefore I'm also looking forward that someone is able to crack the secrets of the new api...:)
RayAmsterdam
Posts: 115
Joined: Sunday 11 January 2015 16:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: RE: Re: Mi-Light / LimitlessLED / Applamp

Post by RayAmsterdam »

Nautilus wrote:
gooxbe wrote:I received my new milight v6 (with the wifi box)

I tried to make it work via the normal procedure and scripting but it doesn't work, unfortunately.

And my understanding of the new API on http://www.limitlessled.com/dev/ is quite limited to send the new commands.

Anyone can help?
Unfortunately you cannot use the new API (i.e. Wifi Box1 or Wifi Box2) with Domoticz yet - until someone figures out how to build support for it. I think this is already mentioned in a couple of threads (including this :)) that here that are about MiLight. It also seems that people who have worked a lot with the older api's are struggling to understand the new, not many similarities with the older apis I guess.

If you are in a hurry then what you can do now is to get the old wifi bridge which can control the new bulbs for on / off / dim level / color (but not color temperature through Domoticz). There is also an ugly workaround to change the color temperature which involves using some external script that allows sending S+ / S- (program speed up / down) to individual group. It is not very convenient, I admit, and therefore I'm also looking forward that someone is able to crack the secrets of the new api...:)
How do you pair the new lamp with the old bridge?
Nautilus
Posts: 722
Joined: Friday 02 October 2015 12:12
Target OS: Raspberry Pi / ODroid
Domoticz version: beta
Location: Finland
Contact:

Re: RE: Re: Mi-Light / LimitlessLED / Applamp

Post by Nautilus »

RayAmsterdam wrote: How do you pair the new lamp with the old bridge?
In my experience this works the same with all apis and hardware. You turn the lamp on from the physical switch and within 3 seconds press "On" button of the group with which you want to do the pairing. I've paired new bulbs with both the old bridge (v5) and new iBox (v6) with this method and of course old RGBW bulbs with the old bridge (v5). What I have not tried is to pair old RGBWW with the new iBox but I assume it works as the iPhone app has layouts available for all kinds of bulbs...
deennoo
Posts: 784
Joined: Wednesday 10 December 2014 13:06
Target OS: Linux
Domoticz version: beta
Location: Bordeaux France
Contact:

Re: Mi-Light / LimitlessLED / Applamp

Post by deennoo »

I got lot of elements for v6

I start working on it

Main elements is :
To send order (to bridge or group) we have to get wifibridge id + sequence number.

This information come if you ask them to wifi bridge with an udp command

I manage to send udp command but return is not readable.

Ask some help to domoticz dev but he didn't get the new bridge, and don't plan to have it...we have to made support this be our own.
Domoticz stable 3.5877 for real & Domoticz beta for test
Rfxtrxe / RFLink / Milight / Yeelight / Tasmota / MQTT / BLE / Zigate
http://domo-attitude.fr
RayAmsterdam
Posts: 115
Joined: Sunday 11 January 2015 16:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: RE: Re: RE: Re: Mi-Light / LimitlessLED / Applamp

Post by RayAmsterdam »

Nautilus wrote:
RayAmsterdam wrote: How do you pair the new lamp with the old bridge?
In my experience this works the same with all apis and hardware. You turn the lamp on from the physical switch and within 3 seconds press "On" button of the group with which you want to do the pairing. I've paired new bulbs with both the old bridge (v5) and new iBox (v6) with this method and of course old RGBW bulbs with the old bridge (v5). What I have not tried is to pair old RGBWW with the new iBox but I assume it works as the iPhone app has layouts available for all kinds of bulbs...
Doesn't work for me. I think I have v4.
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests