Low sets this GPIO pin to low, assuming it has been configured as an output pin. It is hardware dependent (and often undefined) what happens if you set a pin to low that is not configured as an output pin.
()
| 59 | // pin. It is hardware dependent (and often undefined) what happens if you set a |
| 60 | // pin to low that is not configured as an output pin. |
| 61 | func (p Pin) Low() { |
| 62 | p.Set(false) |
| 63 | } |
| 64 | |
| 65 | type ADC struct { |
| 66 | Pin Pin |
no test coverage detected