Minute 6bits
()
| 45 | |
| 46 | // Minute 6bits |
| 47 | func (t *Timer) Minute() (m int) { |
| 48 | m = int(t.En1Month4Day5Week3Hour5Min6 & 0x00003f) |
| 49 | if m == 0b111111 { |
| 50 | m = -1 |
| 51 | } |
| 52 | return |
| 53 | } |
| 54 | |
| 55 | // SetEn ... |
| 56 | func (t *Timer) SetEn(en bool) { |
no outgoing calls
no test coverage detected