Hour 5bits
()
| 36 | |
| 37 | // Hour 5bits |
| 38 | func (t *Timer) Hour() (h int) { |
| 39 | h = int((t.En1Month4Day5Week3Hour5Min6 & 0x0007c0) >> 6) |
| 40 | if h == 0b11111 { |
| 41 | h = -1 |
| 42 | } |
| 43 | return |
| 44 | } |
| 45 | |
| 46 | // Minute 6bits |
| 47 | func (t *Timer) Minute() (m int) { |
no outgoing calls
no test coverage detected