| 25 | |
| 26 | == Scheduling == |
| 27 | || ''Option'' || ''Kind'' || ''Default Value'' || ''Description'' || |
| 28 | || '''ratio-limit'''|| Number || 2.0 || |
| 29 | || '''ratio-limit-enabled''' || Boolean || false || |
| 30 | || '''alt-speed-time-enabled''' || Boolean || false || ''Note: When enabled, this will toggle the '''alt-speed-enabled''' setting.'' || |
| 31 | || '''alt-speed-time-begin''' || Number || 540 ==9am || Minutes from midnight || |
| 32 | || '''alt-speed-time-end''' || Number || 1020 ==5pm || Minutes from midnight|| |
| 33 | || '''alt-speed-time-day''' || Number/bitfield || 127 == all days || |
| 34 | * '''alt-speed-time-day''' Start with 0, then for each day you want the scheduler enabled, add: |
| 35 | * '''Sunday''': 1 (binary: {{{0000001}}}) |
| 36 | * '''Monday''': 2 (binary: {{{0000010}}}) |
| 37 | * '''Tuesday''': 4 (binary: {{{0000100}}}) |
| 38 | * '''Wednesday''': 8 (binary: {{{0001000}}}) |
| 39 | * '''Thursday''': 16 (binary: {{{0010000}}}) |
| 40 | * '''Friday''': 32 (binary: {{{0100000}}}) |
| 41 | * '''Saturday''': 64 (binary: {{{1000000}}}) |
| 42 | * Examples: |
| 43 | * '''Weekdays''': 62 (binary: {{{0111110}}}) |
| 44 | * '''Weekends''': 65 (binary: {{{1000001}}}) |
| 45 | * '''All Days''': 127 (binary: {{{1111111}}}) || |