Kessil A360WE

Basic / Standard Reef Angel hardware
Post Reply
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Kessil A360WE

Post by ganjero »

Anyone controlling a kessil A360WE with their RA? could you please share your code? Kessil states that you can control, manually or with a controller, spectrum and intensity independently. Is this possible with the RA? I was under the impression that to change the spectrum in LEDs you would need to change the intensity of one of the color channels.

Thanks
Image
User avatar
lnevo
Posts: 5430
Joined: Fri Jul 20, 2012 9:42 am

Re: Kessil A360WE

Post by lnevo »

The Kessil's have two knobs, when is for spectrum and one is for intensity. We can connect those to individual analog 0-10V channels and set them accordingly.
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Re: Kessil A360WE

Post by ganjero »

Thanks Lee. Do you use one? Anyone care sharing their code.

Thank you
Image
User avatar
lnevo
Posts: 5430
Joined: Fri Jul 20, 2012 9:42 am

Re: Kessil A360WE

Post by lnevo »

I'm not using one myself. :(
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Kessil A360WE

Post by rimai »

Just use the wizard :)
The slope or parabola will give you a nice transition of dawn/dusk effect :)
Roberto.
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Re: Kessil A360WE

Post by ganjero »

rimai wrote:Just use the wizard :)
The slope or parabola will give you a nice transition of dawn/dusk effect :)
Thanks Roberto. I have a question about using the wizard since I often see this as a recommendation. Do you use the wizard in separate code and then copy what you need to your current code? or can the wizard integrate new parts to your existing code without messing up other things?

Thanks
Image
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Kessil A360WE

Post by rimai »

Wizard will generate a new code everytime. You can use the code as it is or add to it. You can also extract pieces from it to place in another code.
It's up to you :)
Roberto.
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Re: Kessil A360WE

Post by ganjero »

So for the Kessil the daylight channel controls intensity and the actinic controls the spectrum?
Image
User avatar
lnevo
Posts: 5430
Joined: Fri Jul 20, 2012 9:42 am

Re: Kessil A360WE

Post by lnevo »

Depends how you're plugged in :)
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Kessil A360WE

Post by rimai »

Yes :)
Or vice versa if you plug them the other way around
Roberto.
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Re: Kessil A360WE

Post by ganjero »

When using the RA, doses it matter the position of the manuals knob (how high or low)?
Image
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Kessil A360WE

Post by rimai »

IIRC, the knobs get disabled when you apply signal to the dimming port.
Roberto.
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Re: Kessil A360WE

Post by ganjero »

I received the Kessil cable and got my light hooked to the RA last night. As you might know the light will not work with settings lower than 10% for the intensity, so is it possible to have a function that when the start/end times (or a sec/minute later) are reached the dimming ports go to 0? I want to turn off the light this way and not toggling on and off the outlet in the relay box. My current photoperiod goes from 11am to 11pm.

Thanks
Image
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Kessil A360WE

Post by rimai »

What times do you want them at 0%?
Roberto.
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: Kessil A360WE

Post by rimai »

Sorry, just re-read the post.
Here it is. Place it after the light waveform function.

Code: Select all

if (hour()>=23 || hour()<11)
{
  ReefAngel.PWM.SetDaylight(0);
  ReefAngel.PWM.SetActinic(0);
}
Roberto.
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Re: Kessil A360WE

Post by ganjero »

Awesome. Thanks!
Image
Post Reply