@@ -80,7 +80,9 @@ def reset(self):
80
80
81
81
@property
82
82
def measurement_interval (self ):
83
- """Sets the interval between readings in seconds. The interval value must be from 2-1800"""
83
+ """Sets the interval between readings in seconds. The interval value must be from 2-1800
84
+
85
+ **NOTE** This value will be saved and will not be reset on boot."""
84
86
85
87
return self ._read_register (_CMD_SET_MEASUREMENT_INTERVAL )
86
88
@@ -96,8 +98,11 @@ def self_calibration_enabled(self):
96
98
be on and active for 7 days after enabling ASC, and exposed to fresh air for at least 1 hour
97
99
per day. Consult the manufacturer's documentation for more information.
98
100
99
- ´**NOTE**: Enabling self calibration will override any values set by specifying a
100
- `forced_recalibration_reference`"""
101
+ **NOTE**: Enabling self calibration will override any values set by specifying a
102
+ `forced_recalibration_reference`
103
+
104
+ **NOTE** This setting will be saved and will not be reset on boot."""
105
+
101
106
return self ._read_register (_CMD_AUTOMATIC_SELF_CALIBRATION ) == 1
102
107
103
108
@self_calibration_enabled .setter
@@ -126,7 +131,9 @@ def ambient_pressure(self, pressure_mbar):
126
131
def altitude (self ):
127
132
"""Specifies the altitude at the measurement location in meters above sea level. Setting
128
133
this value adjusts the CO2 measurement calculations to account for the air pressure's effect
129
- on readings"""
134
+ on readings.
135
+
136
+ **NOTE** This value will be stored and will not be reset on boot."""
130
137
return self ._read_register (_CMD_SET_ALTITUDE_COMPENSATION )
131
138
132
139
@altitude .setter
@@ -137,7 +144,10 @@ def altitude(self, altitude):
137
144
def temperature_offset (self ):
138
145
"""Specifies the offset to be added to the reported measurements to account for a bias in
139
146
the measured signal. Value is in degrees C with a resolution of 0.01 degrees and a maximum
140
- value of 655.35"""
147
+ value of 655.35
148
+
149
+ **NOTE** This value will be saved and will not be reset on boot."""
150
+
141
151
raw_offset = self ._read_register (_CMD_SET_TEMPERATURE_OFFSET )
142
152
return raw_offset / 100.0
143
153
0 commit comments