active property

  1. @TagNumber(4)
bool get active

IF this is true, the 'output' Pin will be pulled active high, false means active low.

Implementation

@$pb.TagNumber(4)
$core.bool get active => $_getBF(3);
  1. @TagNumber(4)
set active (bool value)

Implementation

@$pb.TagNumber(4)
set active($core.bool value) => $_setBool(3, value);