Jump to content

SuncrestReef

Administrators
  • Posts

    4,144
  • Joined

  • Last visited

  • Days Won

    298

Everything posted by SuncrestReef

  1. @obrien.david.j Yes, you figured it out properly. Your spreadsheet lays it out nicely, and that’s how I see it in my head. (actually, it’s more like this:)
  2. There’s no easy or elegant way to do this in Apex programming other than a series of virtual outputs each with different Defer timers with one triggering the next: Timer1 = 60 minutes Timer2 = 30 minutes Timer3 = 5 minutes Timer4 = 10 minutes Timer5 = 5 minutes [Timer1] Set OFF If Swx11_2 CLOSED Then ON Min Time 060:00 Then ON [Timer2] Set OFF If Output Timer1 = ON Then ON Defer 030:00 Then ON [Timer3] Set OFF If Output Timer2 = ON Then ON Defer 005:00 Then ON [Timer4] Set OFF If Output Timer3 = ON Then ON Defer 010:00 Then ON [Timer5] Set OFF If Output Timer4 = ON Then ON Defer 005:00 Then ON [PUMP_FRAG] Fallback ON Set ON If Output Timer1 = ON Then OFF [MP40_FRAGE_L] Fallback ON Set ON If Output Timer1 = ON Then OFF If Output Timer2 = ON Then ON If Output Timer3 = ON Then OFF If Output Timer4 = ON Then ON If Output Timer5 = ON Then OFF [MP40_FRAGE_R] Fallback ON Set ON If Output Timer1 = ON Then OFF If Output Timer2 = ON Then ON If Output Timer3 = ON Then OFF If Output Timer4 = ON Then ON If Output Timer5 = ON Then OFF All 5 of these virtual outputs must be set to AUTO, but you can then remove them from your dashboard to avoid all the clutter if you choose. (sorry for taking this thread off topic...I can move this post to the Equipment forum if requested)
  3. @obrien.david.j FYI: I'll also be sending Eli a sample for analysis next week, so I'll let you know how my biodiversity has changed since the last test.
  4. The wiper causes the gunk to fall into the skimmer body, but it seems to break up in all the turbulent bubbles and gets pushed back up into the collection cup.
  5. Mine gets cleaned automatically every 6 hours by my Avast Marine Swabbie controlled by my Apex. It's just a motorized wiper blade, but it works great!
  6. Before I could suggest steaks, my wife had already invited some friends over and said we'd make some home made pizzas, so no steaks tonight. But definitely soon!
  7. I've owned my charcoal BBQ for over 10 years and I use it often, as many of you will remember from last August's club meeting at my house. The charcoal tray usually starts to rust through every 3 years or so, and in the past I ordered replacement trays from the BBQ manufacturer. But now the manufacturer is no longer in business and I couldn't find a replacement tray that would fit. I remembered that @spectra does metal work, so I reached out to him through the forum. He welded up this nice heavy-duty replacement that fits perfectly and will likely last many more years than the original flimsy sheet metal trays. I want to give @spectra a big THANK YOU for breathing life back into my favorite BBQ grill. Hopefully we can hold another club meeting at my house sometime in the future to enjoy it.
  8. Maybe he can add this banner to the rotation:
  9. I've posted about this back in June 2019, and again Feb 2020:
  10. This looks interesting. Anyone have any background info on it or the designers? https://www.kickstarter.com/projects/af4/the-af4-auto-frozen-fish-food-feeder
  11. I updated the article with local images. They should show up now.
  12. That debate has been beaten to death over on R2R and other forums. GHL is slightly more rugged with more of an industrial build, but has a clunky interface that's way overdue for an overhaul and little US-based support. Apex has more plastic construction, but has a much larger user base and broad community support, of which I'm a frequent contributor.
  13. Welcome back! I have a Red Sea Reefer, but from what I've seen the Waterbox tanks are slightly nicer, in particular the plumbing and cabinet hardware.
  14. I published this as an Article over at Reef2Reef to go along with my Apex tutorial series. I’m just waiting on them to approve and post the article, but thought I’d post it here as well for all my local Apex friends. 😊
  15. When I wrote my 8-part Apex Programming Tutorial series, all of the coding examples were applied to outputs where the Control Type was set to Advanced. Control Types are pre-set shortcuts to program an output for a specific device, allowing less experienced Apex users with a simple entry form to fill in the desired settings, and the Apex does the programming for you behind the scenes. The EB832 EnergyBar comes pre-programmed with each output set for specific Control Types, so you can just plug your lights into outputs 1 & 2, return pump in output 3, heater in output 4, etc. to get your system up and running quickly. However, these pre-programmed outputs can be changed to any Control Type you choose.To set a Control Type, first click the gear icon on the Fusion dashboard for the output you want to configure: The Control Type can then be selected from the dropdown list on the Output Configuration screen: There are 12 Control Types to choose from: Advanced Always ATO Chiller Feeder Heater Light pH Control ORP Control Powerhead Return Pump Skimmer When you select a Control Type, the screen will change to show you the settings specific to that device. After you fill in the settings and save it, you can change the Control Type to "Advanced" and the screen will change to show you the underlying program code. You can toggle back and forth between the pre-defined Control Type and Advanced. This is actually a good way to learn Apex programming because you can see how the code is changed when you alter the fill-in fields with different parameters, then toggle back to the Advanced view. However, if you manually modify the Advanced code and then toggle back to the specific Control Type, your manual changes will be lost. If you want to alter the automatically-generated program code, you must leave the Control Type set to Advanced.Below are screenshots of each Control Type, and then the automatically-generated code when switching it to Advanced. In screens where Fallback is mentioned, Fallback is the setting applied if the output's module is disconnected from the Apex, or if the Apex is not communicating with the module (such as when rebooting). Also, the Log checkbox is useful if you want to review a historic record of each time an output is turned on or off. This can be viewed in the Output Log screen.Control Type: AlwaysAlways should be used any time you want the output to remain On or Off 24/7. This is good for devices that you never want to turn off, or if you have an unused output and always want it to be powered off so if you plug something in it doesn't accidentally power on before you're ready. Here is the generated code for Always: Control Type: ATOATO should be used if you're configuring a non-Neptune ATO system. (Do NOT use this control type if you have the Neptune ATK. Please follow the instructions in my ATK Tutorial instead.)With this Control Type you specify the low water and high water switch ports, and how long to wait before turning on the pump. These are typically float switches attached to a Breakout Box, but could also be optical sensors attached to the FMM module. Here is the generated code for ATO: Control Type: ChillerChiller allows you to specify the high temperature to turn on your chiller, and the low temperature to turn it off. You also need to specify which temperature probe to use if you have more than one. This Control Type could also be used for a cooling fan rather than a refrigerated chiller. Here is the generated code for Chiller: Control Type: FeederFeeder is used to control the Neptune AFS automatic feeder. Of all the Control Types, this one is probably the most convenient because programming the AFS can be complicated. While this Control Type is convenient, it does not allow you to coordinate other devices such as pumps, skimmers, or powerheads to shut down during automated feedings. For this I wrote an entire tutorial topic on Apex Feed Cycles which covers how to automate all your devices during feeding.For the Feeder, you specify the time of day for the first feeding, how many times the AFS drum should rotate per feeding, how many times to feed per day, and if more than one feeding per day how long to wait between feedings. The Feed Cycle option is to choose which Feed button can be used to manually trigger the feeder outside of the scheduled times. Here is the generated code for Feeder. Please see my tutorial on Apex Timers for details on the OSC and If Time commands. Control Type: HeaterHeater allows you to specify the low temperature to turn on your heater, and the high temperature to turn it off. You also need to specify which temperature probe to use if you have more than one. Here is the generated code for Heater: Control Type: LightLight allows you to schedule the on and off times for a light, and a temperature to turn it off if the water gets too warm. You also need to specify which temperature probe to use if you have more than one. Hysteresis is the time (in MM:SS) to wait before turning the lights back on once the temperature drops below the limit. Here is the generated code for Light: Control Type: pH ControlpH Control allows you to turn on or turn off a device based on the pH probe reading. This is useful for controlling CO2 feed in calcium reactors, or to turn off dosing of certain additives that impact the pH of your water. You need to select your pH probe if you have more than one, the high pH reading, the low pH reading, and whether to turn on the device when pH is low or high. Here is the generated code for pH Control: Control Type: ORP ControlORP Control allows you to turn on or turn off a device based on the ORP probe reading. This is typically used to control an ozone generator. You need to select your ORP probe if you have more than one, the high ORP reading, the low ORP reading, and whether to turn on the device when ORP is low or high. Here is the generated code for ORP Control: Control Type: PowerheadPowerhead allows you to configure the output to turn on and off on a repeating timed cycle. This is typically only used for powerheads which do not have any variable speed control. The times are specified in MM:SS format. The Initial Off Time is typically used to offset the cycle from another powerhead to create an oscillating flow pattern. If you only have one powerhead, the Initial Off Time is of little value, but keep in mind the total amount of time the output is off will be the combination of the Initial Off Time and the Off Time. For example, if you want the powerhead on for 1 minute and off for 1 minute, but you are using the Initial Off Time, then split the 1 minute between the Initial Off Time field and the Off Time field, such as 0:30 and 0:30.The Feed Timer option will turn off the output when the selected Feed button is manually pressed, and the Feed Timer Delay is the number of additional minutes to remain off after the Feed timer has expired. See my tutorial on Apex Feed Cycles for more details. Here is the generated code for Powerhead. Please see my tutorial on Apex Timers for details on the OSC command. Control Type: Return PumpReturn Pump is pretty self explanatory. The Feed Timer option will turn off the output when the selected Feed button is manually pressed, and the Feed Timer Delay is the number of additional minutes to remain off after the Feed timer has expired. See my tutorial on Apex Feed Cycles for more details. Here is the generated code for Return Pump: Control Type: SkimmerSkimmer is also pretty self explanatory. The Feed Timer option will turn off the output when the selected Feed button is manually pressed, and the Feed Timer Delay is the number of additional minutes to remain off after the Feed timer has expired. See my tutorial on Apex Feed Cycles for more details.The Defer Time is the number of minutes & seconds to wait before turning on the skimmer, typically to allow the water level in the sump to normalize if the return pump was also shut down. This is to prevent skimmer overflows. Here is the generated code for Skimmer: I hope this article gives you better understanding of how Control Types can be used, and also provides a starting point to get into more advanced Apex programming. Be sure to read the tutorial series linked a the top of this article to expand your Apex programming skills.Happy reefing!
  16. +1 on the Wemo smart plugs. I have 5 of them controlling xmas lights, landscape lights, string lights on my deck, and my pond waterfall pump. They work great and the app is pretty flexible. I like that you can schedule lights based on actual sunrise/sunset times. That could be useful in reefing, too.
  17. I mean no offense, but I simply don't understand the appeal or justification for pricing any coral like this. What exactly is so special about it? I have several corals in my tank which look similar, but paid $20 each.
  18. NO!!!!! Do not use "Then ON" because that will cause the DOS to run continuously for 24 hours on Sunday, Tuesday, Thursday, and Saturday. It will overdose your tank. Use the EXACT wording from my programming above, where it turns OFF on those specified days. The graphical schedule will do the actual work of dosing 35ml each day, but the DOW command will block it from running on the specified days.
  19. Just configure the DOS schedule like I showed to dose 35 ml every day at any time you choose. Then the programming in the Advanced tab will override the daily schedule to turn it Off on the days specified by the DOW command. You do not need to add any Set OFF command or anything else in the Advanced tab. Just the DOW command to override the daily schedule define in the graphical DOS interval screen.
  20. OK, the simple thing to do is configure your DOS to deliver the 35 ml each day at a specified time: Then on the DOS schedule screen, click the gear at the top to go into the Advanced tab, and enter this command: If DOW S-T-T-S Then OFF This will force the DOS to skip Sunday, Tuesday, Thursday, and Saturday.
  21. Please answer the 2nd question I posed: Will your trip last longer than 7 days? This will impact the programming solution.
  22. Would it be OK to dose 17.5ml every 24 hours? If so, that would be extremely simple for the DOS setup. If you must dose only once every 48 hours, then it becomes challenging. Will your trip last longer than 7 days? If not, then you could use the If DOW command to skip every other day of the week, but of course there are 7 days in the week so the schedule will break the 48 hour rule after the first week. If it must run longer than 1 week, it will involve some complex virtual output programming. Please answer these two questions, then I can provide guidance.
  23. Have any of you seen the comet yet? I tried last night but there were low clouds on the horizon. Tonight the sky was very clear and I finally caught a glimpse of Comet NEOWISE after sunset. There shots were taken from the top of Cooper Mountain in Beaverton between 10:15pm - 11:00pm.
×
×
  • Create New...