usePwm property

  1. @TagNumber(7)
bool get usePwm

use a PWM output instead of a simple on/off output. This will ignore the 'output', 'output_ms' and 'active' settings and use the device.buzzer_gpio instead.

Implementation

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

Implementation

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