diff --git a/hydrobot_example.conf b/hydrobot_example.conf --- a/hydrobot_example.conf +++ b/hydrobot_example.conf @@ -16,12 +16,14 @@ can_detail: False module: RelayDriveOut output: Output1 trigger: cron -on_time: second = 0 -off_time: second = 30 +#day(1-31), weekday(0-6), hour(0-23), minute(0-59), second(0-59) +on_time: [None, None, None, None, 0] +off_time: [None, None, None, None, 30] [timer2] module: RelayDriveOut output: Output2 -trigger: interval -on_duration: seconds = 30 -off_duration: seconds = 30s +trigger: cron +#day(1-31), weekday(0-6), hour(0-23), minute(0-59), second(0-59) +on_time: [None, None, None, None, 0] +off_time: [None, None, None, None, 15]