blocked property

  1. @TagNumber(19)
bool blocked

If a device is blocked, connections or requests from this device will fail. Can be used to temporarily prevent the device from connecting if, for example, the sensor is generating bad data and needs maintenance.

Implementation

@$pb.TagNumber(19)
$core.bool get blocked => $_getBF(13);
  1. @TagNumber(19)
void blocked=(bool v)

Implementation

@$pb.TagNumber(19)
set blocked($core.bool v) { $_setBool(13, v); }