Anyone using the LEDENET Magic UFO LED WIFI Controller
Moderator: leecollings
-
- Posts: 2
- Joined: Tuesday 03 February 2015 1:42
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Anyone using the LEDENET Magic UFO LED WIFI Controller
I received one of these in last week, and while only a iPhone and Android client have been written for them, I got the documentation from China, and with much packet captures, have gotten it working from a PC, and now in Domoticz. The functionality within Domoticz is actually via a Node.Red configuration with a web interface, but if there is any interest, I will look at making a hardware module for Domoticz. It is a rather nice unit, runs about $25 USD, and can be either a AP or Client on wireless networks, and draws very little power for itself.
Domotiz 2.2276/Synology DS512+/Aeon Z Wave/Hue Lights
-
- Posts: 2
- Joined: Friday 11 December 2015 17:20
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
Hi Animeimp,
I am using 2 Magic UFO controllers, and i would like to use them zith Domoticz.
Did you make the hardware module? Or can you guide me in connecting the magic ufo to my Domoticz.
Thanks.
I am using 2 Magic UFO controllers, and i would like to use them zith Domoticz.
Did you make the hardware module? Or can you guide me in connecting the magic ufo to my Domoticz.
Thanks.
-
- Posts: 550
- Joined: Tuesday 17 June 2014 22:14
- Target OS: NAS (Synology & others)
- Domoticz version: 4.10538
- Location: NL
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
A Ruby implementation is available at https://github.com/sidoh/ledenet_api/bl ... /README.md
Are you a programmer?
Are you a programmer?
Synology NAS, slave PI3, ZWave (Fibaro), Xiaomi zigbee devices, BTLE plant sensor, DzVents, Dashticz on tablet, Logitech Media Server
-
- Posts: 2
- Joined: Friday 11 December 2015 17:20
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
I am not a programmer, so this is new for me.
Do i need to install Ruby? Or is it already on the raspberry install?
Do i need to install Ruby? Or is it already on the raspberry install?
- emme
- Posts: 909
- Joined: Monday 27 June 2016 11:02
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Location: Milano, Italy
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
Hi to all,
I've sucesfully installed the ledenet, but still get some issue about:
even if the --on parameter is given, it does not power on (status is_on:false always returned)
I'm unclear how to integrate it with Domoticz...
I assume I should have to create a virtual rgbw switch then assign a script that should gather the RGBW parameters... but the virtual RGB switch does not provide such information yet... correct?
thanks in advance
ciao
M
I've sucesfully installed the ledenet, but still get some issue about:
even if the --on parameter is given, it does not power on (status is_on:false always returned)
I'm unclear how to integrate it with Domoticz...
I assume I should have to create a virtual rgbw switch then assign a script that should gather the RGBW parameters... but the virtual RGB switch does not provide such information yet... correct?
thanks in advance
ciao
M
The most dangerous phrase in any language is:
"We always done this way"
"We always done this way"
-
- Posts: 1601
- Joined: Friday 18 October 2013 23:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Arnhem/Nijmegen Nederland
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
some have the api working?
And how to use it?
And how to use it?
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
- emme
- Posts: 909
- Joined: Monday 27 June 2016 11:02
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Location: Milano, Italy
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
nope!
I still have the issue that the api works but it does not power ON/OFF...
so I moved to a Fibaro RGBWController
I still have the issue that the api works but it does not power ON/OFF...
so I moved to a Fibaro RGBWController
The most dangerous phrase in any language is:
"We always done this way"
"We always done this way"
-
- Posts: 1601
- Joined: Friday 18 October 2013 23:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Arnhem/Nijmegen Nederland
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
mmm And how can you control the Fibaro? can you set different scenes? and different colors? or start the fibaro in the last color-range?
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
- emme
- Posts: 909
- Joined: Monday 27 June 2016 11:02
- Target OS: Raspberry Pi / ODroid
- Domoticz version: latest
- Location: Milano, Italy
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
yes I control the Fibaro via DOmoticz and Aeotec G5 stick
yes I control scenes with a virtual selector switch and a bit of help: http://domoticz.com/forum/viewtopic.php?p=69242#p69242,
of course I can select a specific color
and.... I think so, never tried, but I'm quite sure if you power off and back on the color will be still the same
just the animation programs will override your color settings
yes I control scenes with a virtual selector switch and a bit of help: http://domoticz.com/forum/viewtopic.php?p=69242#p69242,
of course I can select a specific color
and.... I think so, never tried, but I'm quite sure if you power off and back on the color will be still the same
just the animation programs will override your color settings
The most dangerous phrase in any language is:
"We always done this way"
"We always done this way"
-
- Posts: 65
- Joined: Tuesday 24 February 2015 15:54
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
I tried using this (lua script):
commandArray = {};
DomDevice = '???'
IP = '192.168.2.180'
Port = '5577';
print("UFO LED Controller Script")
function send(msg)
runcommand = "echo "..msg .."| telnet "..IP.." "..Port.." "
print (runcommand)
os.execute(runcommand)
end
if devicechanged[DomDevice] then
if(devicechanged[DomDevice]=='Off') then
print("Turning OFF")
send(string.char(113,36,15,164))
send(string.char(113,36,15,164,255,0,65))
elseif (devicechanged[DomDevice]=='On') then
print("Turning On")
send(string.char(113,35,15,163))
else
print(devicechanged[DomDevice].." is neither ON or OFF")
end
end;
return commandArray
commandArray = {};
DomDevice = '???'
IP = '192.168.2.180'
Port = '5577';
print("UFO LED Controller Script")
function send(msg)
runcommand = "echo "..msg .."| telnet "..IP.." "..Port.." "
print (runcommand)
os.execute(runcommand)
end
if devicechanged[DomDevice] then
if(devicechanged[DomDevice]=='Off') then
print("Turning OFF")
send(string.char(113,36,15,164))
send(string.char(113,36,15,164,255,0,65))
elseif (devicechanged[DomDevice]=='On') then
print("Turning On")
send(string.char(113,35,15,163))
else
print(devicechanged[DomDevice].." is neither ON or OFF")
end
end;
return commandArray
-
- Posts: 1601
- Joined: Friday 18 October 2013 23:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Arnhem/Nijmegen Nederland
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
Someone have a How To... for the use of this UFO controller...
I will try...
Only i cannot understand the use of the Ha_gateway
..
....
I will try...
Only i cannot understand the use of the Ha_gateway
..
....
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
-
- Posts: 37
- Joined: Friday 19 February 2016 13:29
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
Someone got Magic Ufo to play nicely with domoticz (on/off, colors etc)? Would really appreciate some guidance if someone got it working.
-
- Posts: 1601
- Joined: Friday 18 October 2013 23:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: BETA
- Location: Arnhem/Nijmegen Nederland
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
I do have 1 for sale..
Small price to pay with this..
Pm me
Small price to pay with this..
Pm me
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
-
- Posts: 8
- Joined: Monday 06 March 2017 19:08
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Location: NL
- Contact:
Re: Anyone using the LEDENET Magic UFO LED WIFI Controller
Derik,Derik wrote:I do have 1 for sale..
Small price to pay with this..
Pm me
I Like to contact with you about some questions in Dutch. I can't Pm you at this moment
Who is online
Users browsing this forum: No registered users and 0 guests