write method
Sets the state of the GPIO to value
.
Implementation
void write(bool value) {
_checkStatus();
_checkError(_nativeGPIOwrite(_gpioHandle, value ? 1 : 0));
}
Sets the state of the GPIO to value
.
void write(bool value) {
_checkStatus();
_checkError(_nativeGPIOwrite(_gpioHandle, value ? 1 : 0));
}