usePullup property

  1. @TagNumber(8)
bool get usePullup

Whether or not use INPUT_PULLUP mode for GPIO pin Only applicable if the board uses pull-up resistors on the pin

Implementation

@$pb.TagNumber(8)
$core.bool get usePullup => $_getBF(7);
  1. @TagNumber(8)
set usePullup (bool value)

Implementation

@$pb.TagNumber(8)
set usePullup($core.bool value) => $_setBool(7, value);