Dimmable Lunar Hub
Dimmable Lunar Hub
Hey Everyone,
This module will let you connect multiple dimmable moonlight modules. Up to 20 can be connected to a single lunar hub.
Plug it to any PWM dimming channel and have it follow the lunar cycle.
It comes with a 12VDC power supply and 2x Blue 3-LED dimmable moonlight modules.
http://www.reefangel.com/productview.as ... lelunarhub
This module will let you connect multiple dimmable moonlight modules. Up to 20 can be connected to a single lunar hub.
Plug it to any PWM dimming channel and have it follow the lunar cycle.
It comes with a 12VDC power supply and 2x Blue 3-LED dimmable moonlight modules.
http://www.reefangel.com/productview.as ... lelunarhub
Roberto.
-
- Posts: 33
- Joined: Mon May 20, 2013 7:49 am
Re: Dimmable Lunar Hub
Any idea when this will be available?
-
- Posts: 33
- Joined: Mon May 20, 2013 7:49 am
Re: Dimmable Lunar Hub
Yes I will be in Oregon from June 16 to July 2. Any chance of them shipping in that time frame?
Re: Dimmable Lunar Hub
Just to be clear, "ANY" being PWM or Analog dimming?Plug it to any dimming channel and have it follow the lunar cycle.
Re: Dimmable Lunar Hub
Any thoughts on making an analog version? I dont want to have to buy 2 modules to do lunar lights.rimai wrote:Sorry, I'll update the description.
It needs to be PWM.
Re: Dimmable Lunar Hub
Sorry. Not possible.
Dimming LEDs using analog signals is not standard IMO.
Our industry is actually stepping back to be compatible with other controllers that do not support PWM yet. I hate to say that, but this is my personal view of what is happening.
PMW is digital signal and digital is the way of the future. Can you see any electronic equipment that is using analog signals anymore?
Dimming LEDs using analog signals is not standard IMO.
Our industry is actually stepping back to be compatible with other controllers that do not support PWM yet. I hate to say that, but this is my personal view of what is happening.
PMW is digital signal and digital is the way of the future. Can you see any electronic equipment that is using analog signals anymore?
Roberto.
Re: Dimmable Lunar Hub
Can you buy the lunar lights and run them off the PWM expansion w/o the lunar hub?
Re: Dimmable Lunar Hub
How do you supply power? Do the lights come with a power source?
Re: Dimmable Lunar Hub
The hub comes with its own power supply. If you are connecting a single moonlight directly to the PWM channel, it uses power from the channel itself.
Sent from my SPH-L710 using Tapatalk 4 Beta
Sent from my SPH-L710 using Tapatalk 4 Beta
Roberto.
Re: Dimmable Lunar Hub
Sweetrimai wrote:The hub comes with its own power supply. If you are connecting a single moonlight directly to the PWM channel, it uses power from the channel itself.
Sent from my SPH-L710 using Tapatalk 4 Beta
- jsclownfish
- Posts: 375
- Joined: Mon Oct 24, 2011 7:52 pm
- Location: Saint Louis
Re: Dimmable Lunar Hub
Do the older model lunar lights work with this lunar hub?
-Jon
-Jon
Re: Dimmable Lunar Hub
I feel a bit sheepish asking this BUT I dont want to break anything ... how do the clips on the Lunar Hub work? Is there a trick to getting the cables in properly?
Re: Dimmable Lunar Hub
If you push the orange tab, it will release the catch that allows you to push wires in or pull the wires out.
Roberto.
Re: Dimmable Lunar Hub
Thanks roberto ... another question. Is it possible to connect the lunar dimmer up to one of the pwm ports on a relay expansion? I'm already using both daylight and actnic on the main relay box for 2 jebao units. It'll be easier to connect the plug into daylight/actnic on my second relay box instead of the dimming module.
Sent from my GT-N7100 using Tapatalk 4
Sent from my GT-N7100 using Tapatalk 4
Re: Dimmable Lunar Hub
The relay expansion dimming ports are non functional. You'll need to use the dimming module.
Re: Dimmable Lunar Hub
Thanks Lee .. guess its time to break out the soldering iron to make neat cable ends ..
Sent from my GT-N7100 using Tapatalk 4
Sent from my GT-N7100 using Tapatalk 4
Re: Dimmable Lunar Hub
Can these be run from the Power Control Expansion or does it pull to much amps?
Re: Dimmable Lunar Hub
I noticed that the PS that came with mine was 2A and I know the Power Control Expansion has a limit of 500ma.
Re: Dimmable Lunar Hub
Oversized PS for when you want to connect a lot of moonlights to the module.
As long as you don't use too many moonlights connected to the hub, you are fine. I'd not go past 4 moonlights using the power control module.
As long as you don't use too many moonlights connected to the hub, you are fine. I'd not go past 4 moonlights using the power control module.
Roberto.
Re: Dimmable Lunar Hub
Guys,
Is there any additional code for the moonhub needed over this?
ReefAngel.PWM.SetChannel( 5, MoonPhase() );
My lights are constantly on .. They never seem to change strength? Would it make any difference if I'm using the first generation dimming module?
Is there any additional code for the moonhub needed over this?
ReefAngel.PWM.SetChannel( 5, MoonPhase() );
My lights are constantly on .. They never seem to change strength? Would it make any difference if I'm using the first generation dimming module?
Re: Dimmable Lunar Hub
Roberto had posted some code for that, but I can't remember where I saw it.
I'm going to need it too.
I'm going to need it too.
Re: Dimmable Lunar Hub
It changes at midnight to follow the moon phase of the day.
If you want to turn them off at specific times, you need to tell the controller to turn it off.
If you want to turn them off at specific times, you need to tell the controller to turn it off.
Code: Select all
if ( hour()>=8 && hour()<20 )
ReefAngel.PWM.SetChannel( 5, 0 );
else
ReefAngel.PWM.SetChannel( 5, MoonPhase() );
Roberto.