turning vortechs off during feeding
-
fwadiver
- Posts: 37
- Joined: Fri Oct 19, 2012 9:00 am
turning vortechs off during feeding
is there a way to turn the vortechs off during feeding mode using the rf module? I know i can just plug them into the relay box, but was hoping to not have to use relays for them. The feeding mode is still too much flow for most of my lps to grab food, actually it would be great to have 2 feeding modes one with the vortechs completely off for feeding meaty stuff to lps then one with the vortechs in feed mode for when i feed the tiny stuff for sps/filter feeders so it stays suspended for a bit.
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
Re: turning vortechs off during feeding
No, the vortech driver itself doesn't offer a totally off mode 
Roberto.
-
fwadiver
- Posts: 37
- Joined: Fri Oct 19, 2012 9:00 am
Re: turning vortechs off during feeding
is there a way to make it go slower than feeding mode? Or does it look like i'm hooking them up to relays?
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
Re: turning vortechs off during feeding
There may be a hardware setting that can be changed though.
I know you can change the night mode speed.
Check the vortech manual.
I know you can change the night mode speed.
Check the vortech manual.
Roberto.
- lnevo
- Posts: 5422
- Joined: Fri Jul 20, 2012 9:42 am
turning vortechs off during feeding
You can change feeding mode speed. Default is 50% but you can make it "Barely Spinning"
You do not have the required permissions to view the files attached to this post.
-
fwadiver
- Posts: 37
- Joined: Fri Oct 19, 2012 9:00 am
Re: turning vortechs off during feeding
will investigate that thanks.
edit: reading the manual it says you can power off master/slave chain by holding power off button.. guess i need to crack open an eco smart and then look at the rf schematic to figure that one out.
edit: reading the manual it says you can power off master/slave chain by holding power off button.. guess i need to crack open an eco smart and then look at the rf schematic to figure that one out.
- lnevo
- Posts: 5422
- Joined: Fri Jul 20, 2012 9:42 am
turning vortechs off during feeding
Good point...there must be a signal to off/on then!
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
Re: turning vortechs off during feeding
I never knew that 
lol
I need to spy on the RF signal to see what the master sends out
Thanks for sharing
lol
I need to spy on the RF signal to see what the master sends out
Thanks for sharing
Roberto.
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
Re: turning vortechs off during feeding
I sniffed the drivers today and found out that indeed there is a command for on/off.
Let me apply a patch and test it out.
Let me apply a patch and test it out.
Roberto.
-
rimai
- Posts: 12857
- Joined: Fri Mar 18, 2011 6:47 pm
Re: turning vortechs off during feeding
Ok, I created the patch, which is attached.
It will require an update to the libraries though.
You can grab the dev brach at: https://github.com/reefangel or wait until the next update.
To turn on/off during the mode, use a code like this:
It will require an update to the libraries though.
You can grab the dev brach at: https://github.com/reefangel or wait until the next update.
To turn on/off during the mode, use a code like this:
Code: Select all
if (ReefAngel.DisplayedMenu==FEEDING_MODE)
ReefAngel.RF.VortechOff();
else
ReefAngel.RF.VortechOn();
You do not have the required permissions to view the files attached to this post.
Roberto.