1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
pub use crate::internal::scd30::I2C_ADDRESS;
use crate::asynchronous::i2c::{i2c_read, i2c_write};
use crate::error::Error;
use crate::measurement::Measurement;
use embedded_hal_async::delay::DelayNs;
use embedded_hal_async::i2c::I2c;
use crate::internal::scd30::{
decode_measurement_data, Command, AMBIENT_PRESSURE_DISABLE_COMPENSATION,
AMBIENT_PRESSURE_RANGE_HPA, BOOT_DELAY_MILLIS, FRC_PPM_RANGE, GET_DATA_READY_STATUS,
GET_SET_ALTITUDE_COMPENSATION, GET_SET_MEASUREMENT_INTERVAL, GET_SET_TEMPERATURE_OFFSET,
MANAGE_AUTOMATIC_SELF_CALIBRATION, MEASUREMENT_INTERVAL_RANGE, READ_FIRMWARE_VERSION,
READ_MEASUREMENT, SET_FORCED_RECALIBRATION_VALUE, SOFT_RESET, START_CONTINUOUS_MEASUREMENT,
STOP_CONTINUOUS_MEASUREMENT, WRITE_DELAY_MILLIS,
};
/// Driver implementation for the SCD30 CO2 sensor.
///
/// This sensor needs to be enabled via the `scd30` feature flag
pub struct Scd30<I2C, D> {
i2c: I2C,
delay: D,
}
impl<I2C, D, E> Scd30<I2C, D>
where
I2C: I2c<Error = E>,
D: DelayNs,
{
/// Create a new SCD30 sensor using the provided I2C and delay implementations
pub fn new(i2c: I2C, delay: D) -> Self {
Self { i2c, delay }
}
/// Release the I2C bus held by this sensor
pub fn release(self) -> I2C {
self.i2c
}
async fn read_response(&mut self, read_buf: &mut [u8]) -> Result<(), Error<E>> {
i2c_read(&mut self.i2c, I2C_ADDRESS, read_buf).await
}
async fn write_command(&mut self, cmd: Command) -> Result<(), Error<E>> {
i2c_write(&mut self.i2c, I2C_ADDRESS, &cmd.prepare()).await?;
self.delay.delay_ms(WRITE_DELAY_MILLIS).await;
Ok(())
}
async fn write_command_with_data(&mut self, cmd: Command, data: u16) -> Result<(), Error<E>> {
i2c_write(&mut self.i2c, I2C_ADDRESS, &cmd.prepare_with_data(data)).await?;
self.delay.delay_ms(WRITE_DELAY_MILLIS).await;
Ok(())
}
async fn command_with_response(
&mut self,
cmd: Command,
read_buf: &mut [u8],
) -> Result<(), Error<E>> {
self.write_command(cmd).await?;
self.read_response(read_buf).await
}
/// Starts continuous measurement of the SCD30 to measure CO2 concentration, humidity and temperature. Measurement data
/// which is not read from the sensor will be overwritten. The measurement interval is adjustable via the command documented in
/// chapter 1.4.3, initial measurement rate is 2s.
///
/// Continuous measurement status is saved in non-volatile memory. When the sensor is powered down while continuous
/// measurement mode is active SCD30 will measure continuously after repowering without sending the measurement command.
///
/// The CO2 measurement value can be compensated for ambient pressure by feeding the pressure value in mBar to the sensor.
/// Setting the ambient pressure will overwrite previous settings of altitude compensation. Setting the argument to zero will
/// deactivate the ambient pressure compensation (default ambient pressure = 1013.25 mBar). For setting a new ambient pressure
/// when continuous measurement is running the whole command has to be written to SCD30.
///
/// The valid range for the ambient pressure is 0 (disable) and `700..=1400` HPa.
pub async fn start_continuous_measurement(
&mut self,
ambient_pressure_hpa: u16,
) -> Result<(), Error<E>> {
if !AMBIENT_PRESSURE_RANGE_HPA.contains(&ambient_pressure_hpa)
&& AMBIENT_PRESSURE_DISABLE_COMPENSATION != ambient_pressure_hpa
{
return Err(Error::InvalidInput);
}
self.write_command_with_data(START_CONTINUOUS_MEASUREMENT, ambient_pressure_hpa)
.await
}
/// Stops the continuous measurement of the SCD30.
pub async fn stop_continuous_measurement(&mut self) -> Result<(), Error<E>> {
self.write_command(STOP_CONTINUOUS_MEASUREMENT).await
}
/// Sets the interval used by the SCD30 sensor to measure in continuous
/// measurement mode (see chapter 1.4.1). Initial value is 2 s.
///
/// The chosen measurement interval is saved in non-volatile memory and thus
/// is not reset to its initial value after power up.
///
/// The valid range is `2..=1800` seconds
pub async fn set_measurement_interval(
&mut self,
interval_seconds: u16,
) -> Result<(), Error<E>> {
if !MEASUREMENT_INTERVAL_RANGE.contains(&interval_seconds) {
return Err(Error::InvalidInput);
}
self.write_command_with_data(GET_SET_MEASUREMENT_INTERVAL, interval_seconds)
.await
}
/// Retrieve the configured measurement interval
pub async fn get_measurement_interval(&mut self) -> Result<u16, Error<E>> {
let mut buf = [0; 3];
self.command_with_response(GET_SET_MEASUREMENT_INTERVAL, &mut buf)
.await?;
Ok(u16::from_be_bytes([buf[0], buf[1]]))
}
/// Data ready command is used to determine if a measurement can be read
/// from the sensor’s buffer. Whenever there is a measurement available
/// from the internal buffer this command returns `true` and `false`
/// otherwise.
///
/// As soon as the measurement has been read, the return value changes
/// to `false`.
///
/// It is recommended to use data ready status byte before
/// readout of the measurement values.
pub async fn data_ready(&mut self) -> Result<bool, Error<E>> {
let mut buf = [0; 3];
self.command_with_response(GET_DATA_READY_STATUS, &mut buf)
.await?;
let val = u16::from_be_bytes([buf[0], buf[1]]);
Ok(val == 1)
}
/// When new measurement data is available it can be read out with the
/// following command. Note that the read header should be send with a
/// delay of > 3ms following the write sequence. Make sure that the
/// measurement is completed by reading the data ready status bit
/// before read out.
pub async fn read_measurement(&mut self) -> Result<Measurement, Error<E>> {
let mut buf = [0; 18];
self.command_with_response(READ_MEASUREMENT, &mut buf)
.await?;
Ok(decode_measurement_data(buf))
}
/// Continuous automatic self-calibration can be (de-)activated with the
/// following command. When activated for the first time a period of
/// minimum 7 days is needed so that the algorithm can find its initial
/// parameter set for ASC. The sensor has to be exposed to fresh air for
/// at least 1 hour every day. Also during that period, the sensor may not
/// be disconnected from the power supply, otherwise the procedure to find
/// calibration parameters is aborted and has to be restarted from the
/// beginning. The successfully calculated parameters are stored in
/// non-volatile memory of the SCD30 having the effect that after a
/// restart the previously found parameters for ASC are still present.
///
/// Note that the most recently found self-calibration parameters will be
/// actively used for self-calibration disregarding the status of this
/// feature. Finding a new parameter set by the here described method will
/// always overwrite the settings from external recalibration
/// (see chapter 0) and vice-versa. The feature is switched off by default.
///
/// To work properly SCD30 has to see fresh air on a regular basis. Optimal
/// working conditions are given when the sensor sees fresh air for one
/// hour every day so that ASC can constantly re-calibrate. ASC only works
/// in continuous measurement mode.
///
/// ASC status is saved in non-volatile memory. When the sensor is powered
/// down while ASC is activated SCD30 will continue with automatic
/// self-calibration after repowering without sending the command.
pub async fn enable_automatic_self_calibration(
&mut self,
enable: bool,
) -> Result<(), Error<E>> {
self.write_command_with_data(MANAGE_AUTOMATIC_SELF_CALIBRATION, enable as u16)
.await
}
/// Check if the automatic self calibration algorithm is enabled
pub async fn get_automatic_self_calibration(&mut self) -> Result<bool, Error<E>> {
let mut buf = [0; 3];
self.command_with_response(MANAGE_AUTOMATIC_SELF_CALIBRATION, &mut buf)
.await?;
let raw_status = u16::from_be_bytes([buf[0], buf[1]]);
Ok(raw_status != 0)
}
/// Forced recalibration (FRC) is used to compensate for sensor drifts when
/// a reference value of the CO2 concentration in close proximity to the
/// SCD30 is available. For best results, the sensor has to be run in a
/// stable environment in continuous mode at a measurement rate of 2s for
/// at least two minutes before applying the FRC command and sending the
/// reference value. Setting a reference CO2 concentration by the method
/// described here will always supersede corrections from the ASC
/// (see chapter 1.4.6) and vice-versa. The reference CO2 concentration has
/// to be within the range 400 ppm ≤ cref(CO2) ≤ 2000 ppm.
///
/// The FRC method imposes a permanent update of the CO2 calibration curve
/// which persists after repowering the sensor. The most recently used
/// reference value is retained in volatile memory and can be read out
/// with the command sequence given below.
///
/// After repowering the sensor, the command will return the standard
/// reference value of 400 ppm.
pub async fn set_forced_recalibration_value(&mut self, ppm: u16) -> Result<(), Error<E>> {
if !FRC_PPM_RANGE.contains(&ppm) {
return Err(Error::InvalidInput);
}
self.write_command_with_data(SET_FORCED_RECALIBRATION_VALUE, ppm)
.await
}
/// The on-board RH/T sensor is influenced by thermal self-heating of
/// SCD30 and other electrical components. Design-in alters the thermal
/// properties of SCD30 such that temperature and humidity offsets may
/// occur when operating the sensor in end-customer devices.
/// Compensation of those effects is achievable by writing the temperature
/// offset found in continuous operation of the device into the sensor.
///
/// Temperature offset value is saved in non-volatile memory. The last
/// set value will be used for temperature offset compensation after
/// repowering.
///
/// Unit: C * 100 => one tick corresponds to 0.01 degrees Celsius
pub async fn set_temperature_offset(&mut self, offset: u16) -> Result<(), Error<E>> {
self.write_command_with_data(GET_SET_TEMPERATURE_OFFSET, offset)
.await
}
/// Retrieve the configured temperature offset
pub async fn get_temperature_offset(&mut self) -> Result<u16, Error<E>> {
let mut buf = [0; 3];
self.command_with_response(GET_SET_TEMPERATURE_OFFSET, &mut buf)
.await?;
Ok(u16::from_be_bytes([buf[0], buf[1]]))
}
/// Measurements of CO2 concentration based on the NDIR principle are
/// influenced by altitude. SCD30 offers to compensate deviations due to
/// altitude by using the following command. Setting altitude is
/// disregarded when an ambient pressure is given to the sensor,
/// please see section 1.4.1.
///
/// Altitude value is saved in non-volatile memory. The last set value
/// will be used for altitude compensation after repowering.
pub async fn set_altitude_compensation(&mut self, altitude: u16) -> Result<(), Error<E>> {
self.write_command_with_data(GET_SET_ALTITUDE_COMPENSATION, altitude)
.await
}
// Read the configured altitude compensation value
pub async fn get_altitude_compensation(&mut self) -> Result<u16, Error<E>> {
let mut buf = [0; 3];
self.command_with_response(GET_SET_ALTITUDE_COMPENSATION, &mut buf)
.await?;
Ok(u16::from_be_bytes([buf[0], buf[1]]))
}
/// Following command can be used to read out the firmware version of
/// SCD30 module. The returned value is in the format `(Major, Minor)`
pub async fn read_firmware_version(&mut self) -> Result<(u8, u8), Error<E>> {
let mut buf = [0; 3];
self.command_with_response(READ_FIRMWARE_VERSION, &mut buf)
.await?;
Ok((buf[0], buf[1]))
}
/// The SCD30 provides a soft reset mechanism that forces the sensor into
/// the same state as after powering up without the need for removing the
/// power-supply. It does so by restarting its system controller.
/// After soft reset the sensor will reload all calibrated data.
///
/// However, it is worth noting that the sensor reloads calibration data
/// prior to every measurement by default. This includes previously set
/// reference values from ASC or FRC as well as temperature offset values
/// last setting.
///
/// The sensor is able to receive the command at any time, regardless of
/// its internal state.
pub async fn soft_reset(&mut self) -> Result<(), Error<E>> {
self.write_command(SOFT_RESET).await?;
self.delay.delay_ms(BOOT_DELAY_MILLIS).await;
Ok(())
}
}