environmentDisplayFahrenheit property

  1. @TagNumber(5)
bool get environmentDisplayFahrenheit

We'll always read the sensor in Celsius, but sometimes we might want to display the results in Fahrenheit as a "user preference".

Implementation

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

Implementation

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