AMX Scheduler - Usage in HVAC
nherc
Posts: 34
First off, I wanted to get everyone's impressions on the current version of the AMX Scheduler module.
I got one opinion from someone who hadn't used it in a while (read: years) that it was bloated and slow for simple scheduling. I'd love if someone could give me their opinions on the latest revision.
I plan on using it to add timed events to a fairly simple HVAC module that controls some Tstats. Any thoughts on using the scheduler here? Overkill?
Lastly, any best methodologies on the most intuitive way to set up events for TStats? A start time per preset? Start and end time? Unlimited presets vs. Wake, Day, Evening, Night? Something else all together? Examples?
Thanks so much for your feedback.
nherc
I got one opinion from someone who hadn't used it in a while (read: years) that it was bloated and slow for simple scheduling. I'd love if someone could give me their opinions on the latest revision.
I plan on using it to add timed events to a fairly simple HVAC module that controls some Tstats. Any thoughts on using the scheduler here? Overkill?
Lastly, any best methodologies on the most intuitive way to set up events for TStats? A start time per preset? Start and end time? Unlimited presets vs. Wake, Day, Evening, Night? Something else all together? Examples?
Thanks so much for your feedback.
nherc
0
Comments
Another thing to be aware of. Each schedule entry has a start time which creates a push and an end time that creates a release. However, if you system reboots between the start and stop, the stop will not occur. For that, I only use the start time of an event. The end time of an event is a seperate entry, creating another push.
Here's a case where good ole-fashioned DEFINE_PROGRAM works better. If the event sets a persistent varialbe to on or off, you won't have to worry about a reboot messing the thing up.
Right, but in the case of i-Schedule, the end time event will never occur in the reboot scenario I described earlier. The persistent variable will remin in the state it was set to at the start time of the event.
Now, any more tips on usage? Also, does anyone have a preferred method/design for HVAC presets/control? This can be done so many ways, I just wonder where to start. I was thinking unlimited modes, with only start times and selectable time and days of the week. A mode will start at it's start time/day and override any current mode. The issue I see with this is if not organized and the modes given good names it will get confusing very fast. If that's the case, then perhaps Modes 1,2,3,4 (morning,day, evening,night effectively) all going in order with selectable changeover times. The problem with this is fitting the days in... i.e. how would you have a seperate weekend schedule? Maybe a Weekdays and Weekend set-up with 4 modes each and selectable changeover times? That seems the simplest while giving you some flexibility.
Thoughts?