sen6x 0.1.4

A rust no-std driver for the SEN6X sensor modules.
Documentation
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
//! # Blocking API
//!
//! This module contains the blocking API for the SEN6X sensor modules.
//! It is based on the `embedded-hal` traits and is intended to be used
//! with synchronous blocking code.
//!
//! The methods usually return `Result` with the error type being `Sen6xError`.

use crate::{
    CommandId, DeviceStatus, MAX_RX_BYTES, MAX_TX_BYTES, MODULE_ADDR, MeasuredSample, ModuleState,
    RawConcentrationSample, RawMeasuredSample, Result, Sen6xError, TempAccelPars, TempOffsetPars,
    crc_internal, get_execution_time,
};

#[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
use crate::AlgorithmTuningParameters;

/// Represents an I2C-connected SEN6X sensor module.
#[derive(Copy, Clone, Debug)]
pub struct Sen6x<I2C, D> {
    /// Marker to satisfy the compiler.
    delay: D,

    /// I2C Interface for communicating with the module.
    i2c: I2C,

    /// The current measurement state of the module
    state: ModuleState,
}

impl<I2C, D> Sen6x<I2C, D>
where
    D: embedded_hal::delay::DelayNs,
    I2C: embedded_hal::i2c::I2c,
{
    /// Creates SEN6X instance representation.
    pub fn new(delay: D, i2c: I2C) -> Self {
        Self {
            delay,
            i2c,
            state: ModuleState::Idle,
        }
    }

    /// Convenience function to raise error if we're measuring
    /// for commands that cannot be executed during measuring
    fn check_not_measuring(&mut self) -> Result<()> {
        if self.state == ModuleState::Measuring {
            return Err(Sen6xError::InvalidState);
        }
        Ok(())
    }

    /// Start continuous measurement (1/second)
    pub fn start_continuous_measurement(&mut self) -> Result<()> {
        self.check_not_measuring()?;
        // Set state regardless of the result of the command (conservative)
        self.state = ModuleState::Measuring;
        self.send_wait(CommandId::StartContinuousMeasurement)
    }

    /// Stops continuous measuring mode
    pub fn stop_measurement(&mut self) -> Result<()> {
        let result = self.send_wait(CommandId::StopMeasurement);
        if result.is_ok() {
            self.state = ModuleState::Idle;
        }
        result
    }

    /// Check if new data can be retrieved from the sensor module
    pub fn get_is_data_ready(&mut self) -> Result<bool> {
        let mut data = [0 as u16; 1];
        self.send_wait_read(CommandId::GetDataReady, &mut data)?;
        Ok(data[0] == 0x1)
    }

    /// Read the last measured values from the sensor module
    pub fn get_sample(&mut self) -> Result<MeasuredSample> {
        #[cfg(any(feature = "sen66", feature = "sen68"))]
        let mut data = [0 as u16; 9];
        #[cfg(feature = "sen65")]
        let mut data = [0 as u16; 8];
        #[cfg(feature = "sen63c")]
        let mut data = [0 as u16; 7];
        self.send_wait_read(CommandId::ReadMeasuredValues, &mut data)?;

        Ok(MeasuredSample::from(data))
    }

    /// Read the last measured raw values from the sensor module
    ///
    /// This excludes the concentration raw values, which can be
    /// read with `get_raw_concentration_sample`.
    ///
    /// This is for advanced use only, normally you would use `get_sample`.
    pub fn get_raw_sample(&mut self) -> Result<RawMeasuredSample> {
        #[cfg(any(feature = "sen65", feature = "sen68"))]
        let mut data = [0 as u16; 4];
        #[cfg(feature = "sen66")]
        let mut data = [0 as u16; 5];
        #[cfg(feature = "sen63c")]
        let mut data = [0 as u16; 2];
        self.send_wait_read(CommandId::ReadMeasuredRawValues, &mut data)?;

        Ok(RawMeasuredSample::from(data))
    }

    /// Read the last measured concentration values from the sensor module
    ///
    /// This only includes the concentration (PM) values, all other raw values
    /// can be read with `get_raw_sample`.
    ///
    /// This is for advanced use only, normally you would use `get_sample`.
    pub fn get_raw_concentration_sample(&mut self) -> Result<RawConcentrationSample> {
        let mut data = [0 as u16; 4];
        self.send_wait_read(CommandId::ReadNumberConcentrationValues, &mut data)?;

        Ok(RawConcentrationSample::from(data))
    }

    /// Set the temperature offset parameters
    pub fn set_temp_offset_pars(&mut self, temp_offset_pars: TempOffsetPars) -> Result<()> {
        let data: [u16; 4] = <[u16; 4]>::from(temp_offset_pars);
        self.send_write_wait(CommandId::SetTempOffsetPars, &data)
    }

    /// Set the temperature acceleration parameters
    pub fn set_temp_accel_pars(&mut self, temp_accel_pars: TempAccelPars) -> Result<()> {
        let data: [u16; 4] = <[u16; 4]>::from(temp_accel_pars);
        self.send_write_wait(CommandId::SetTempAccelPars, &data)
    }

    /// Get the product name of the sensor module
    /// (to provide the string slice back, a 32-byte u32 buffer must be provided
    /// by the caller)
    pub fn get_product_name<'a>(&mut self, buffer: &'a mut [u8; 32]) -> Result<&'a str> {
        let mut data = [0 as u16; 16];
        self.send_wait_read(CommandId::GetProductName, &mut data)?;

        let mut len = 0;
        for i in 0..data.len() {
            let bytes = data[i].to_be_bytes();

            // Check first byte
            if bytes[0] == 0 {
                break;
            }
            buffer[len] = bytes[0];
            len += 1;

            // Check second byte
            if bytes[1] == 0 {
                break;
            }
            buffer[len] = bytes[1];
            len += 1;
        }

        match core::str::from_utf8(&buffer[..len]) {
            Ok(s) => Ok(s),
            Err(_) => Err(Sen6xError::InvalidData),
        }
    }

    /// Return the module serial number as a string slice
    /// (to provide the string slice back, a 32-byte u32 buffer must be provided
    /// by the caller)
    pub fn get_serial_number<'a>(&mut self, buffer: &'a mut [u8; 32]) -> Result<&'a str> {
        let mut data = [0 as u16; 16]; // Changed array size to match buffer size / 2
        self.send_wait_read(CommandId::GetSerialNumber, &mut data)?;

        let mut len = 0;
        for i in 0..data.len() {
            let bytes = data[i].to_be_bytes();

            // Check first byte
            if bytes[0] == 0 {
                break;
            }
            buffer[len] = bytes[0];
            len += 1;

            // Check second byte
            if bytes[1] == 0 {
                break;
            }
            buffer[len] = bytes[1];
            len += 1;
        }

        match core::str::from_utf8(&buffer[..len]) {
            Ok(s) => Ok(s),
            Err(_) => Err(Sen6xError::InvalidData),
        }
    }

    /// Read the device status (no clearing of flags!)
    pub fn read_device_status(&mut self) -> Result<DeviceStatus> {
        let mut data = [0 as u16; 2];
        self.send_wait_read(CommandId::ReadDeviceStatus, &mut data)?;

        Ok(DeviceStatus::from(data))
    }

    /// Read the device status (no clearing of flags!)
    pub fn read_and_clear_device_status(&mut self) -> Result<DeviceStatus> {
        let mut data = [0 as u16; 2];
        self.send_wait_read(CommandId::ReadAndClearDeviceStatus, &mut data)?;

        Ok(DeviceStatus::from(data))
    }

    /// Reset the sensor module
    pub fn reset(&mut self) -> Result<()> {
        self.check_not_measuring()?;
        self.send_wait(CommandId::DeviceReset)
    }

    /// Start the fan cleaning process
    pub fn start_fan_cleaning(&mut self) -> Result<()> {
        self.check_not_measuring()?;
        self.send_wait(CommandId::StartFanCleaning)
    }

    /// Activate the SHT heater
    pub fn activate_sht_heater(&mut self) -> Result<()> {
        self.check_not_measuring()?;
        self.send_wait(CommandId::ActivateShtHeater)
    }

    /// Get the VOC algorithm tuning parameters
    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    pub fn get_voc_algo_tuning_parameters(&mut self) -> Result<AlgorithmTuningParameters> {
        self.check_not_measuring()?;
        let mut data = [0 as u16; 6];
        self.send_wait_read(CommandId::VocAlgoTuningPars, &mut data)?;

        Ok(AlgorithmTuningParameters::from(data))
    }

    /// Set the VOC algorithm tuning parameters
    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    pub fn set_voc_algo_tuning_parameters(
        &mut self,
        tuning_pars: AlgorithmTuningParameters,
    ) -> Result<()> {
        self.check_not_measuring()?;
        let data: [u16; 6] = <[u16; 6]>::from(tuning_pars);
        self.send_write_wait(CommandId::VocAlgoTuningPars, &data)
    }

    /// Set the VOC algorithm state
    ///
    /// Due to the long initialization phase of the algorithm and no sensor-internal
    /// persistent storing of it's state, the algorithm state ideally should be preserved
    /// between restarts.
    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    pub fn get_voc_algo_state(&mut self) -> Result<[u16; 4]> {
        let mut data = [0 as u16; 4];
        self.send_wait_read(CommandId::VocAlgoState, &mut data)?;

        Ok(data)
    }

    /// Set the VOC algorithm state
    ///
    /// Due to the long initialization phase of the algorithm and no sensor-internal
    /// persistent storing of it's state, the algorithm state ideally should be preserved
    /// between restarts.
    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    pub fn set_voc_algo_state(&mut self, state: [u16; 4]) -> Result<()> {
        self.check_not_measuring()?;
        self.send_write_wait(CommandId::VocAlgoState, &state)
    }

    /// Get the NOx algorithm tuning parameters
    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    pub fn get_nox_algo_tuning_parameters(&mut self) -> Result<AlgorithmTuningParameters> {
        self.check_not_measuring()?;
        let mut data = [0 as u16; 6];
        self.send_wait_read(CommandId::NoxAlgoTuningPars, &mut data)?;

        Ok(AlgorithmTuningParameters::from(data))
    }

    /// Set the NOx algorithm tuning parameters
    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    pub fn set_nox_algo_tuning_parameters(
        &mut self,
        tuning_pars: AlgorithmTuningParameters,
    ) -> Result<()> {
        self.check_not_measuring()?;
        let data: [u16; 6] = <[u16; 6]>::from(tuning_pars);
        self.send_write_wait(CommandId::NoxAlgoTuningPars, &data)
    }

    /// Perform a forced CO2 recalibration
    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    pub fn perform_forced_co2_recalibration(&mut self, target_concentration: u16) -> Result<u16> {
        self.check_not_measuring()?;
        let mut data = [0 as u16; 1];
        self.send_write_wait_read(
            CommandId::PerformForcedCo2Recalibration,
            &[target_concentration],
            &mut data,
        )?;

        Ok(data[0])
    }

    /// Get the automatic self-calibration state of the CO2 sensor
    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    pub fn get_is_co2_auto_self_calibrated(&mut self) -> Result<bool> {
        self.check_not_measuring()?;
        let mut data = [0 as u16; 1];
        self.send_wait_read(CommandId::Co2SensorAutoCalibrationState, &mut data)?;

        Ok(data[0] == 0x1)
    }

    /// Enable or disable the automatic self-calibration of the CO2 sensor
    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    pub fn set_co2_auto_self_calibration(&mut self, enabled: bool) -> Result<()> {
        self.check_not_measuring()?;
        let data: [u16; 1] = [if enabled { 0x01 } else { 0x00 }];
        self.send_write_wait(CommandId::Co2SensorAutoCalibrationState, &data)
    }

    /// Get the ambient pressure in hPa that is assumed by the sensor
    /// (used by the sensor for pressure compensation)
    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    pub fn get_ambient_pressure(&mut self) -> Result<u16> {
        let mut data = [0 as u16; 1];
        self.send_wait_read(CommandId::AmbientPressure, &mut data)?;

        Ok(data[0])
    }

    /// Set the ambient pressure in hPa that is assumed by the sensor
    /// (used by the sensor for pressure compensation)
    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    pub fn set_ambient_pressure(&mut self, pressure: u16) -> Result<()> {
        self.send_write_wait(CommandId::AmbientPressure, &[pressure])
    }

    /// Get the altitude in meters that is assumed by the sensor
    /// (used by the sensor for pressure compensation)
    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    pub fn get_altitude(&mut self) -> Result<u16> {
        self.check_not_measuring()?;
        let mut data = [0 as u16; 1];
        self.send_wait_read(CommandId::SensorAltitude, &mut data)?;

        Ok(data[0])
    }

    /// Set the sensor altitude in meters that is assumed by the sensor
    /// (used by the sensor for pressure compensation)
    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    pub fn set_altitude(&mut self, altitude: u16) -> Result<()> {
        self.check_not_measuring()?;
        self.send_write_wait(CommandId::SensorAltitude, &[altitude])
    }

    /// Send a command to the sensor module and wait for the execution time associated to the command
    fn send_wait(&mut self, command: CommandId) -> Result<()> {
        self.i2c
            .write(MODULE_ADDR, &(command as u16).to_be_bytes())
            .map_err(|_| Sen6xError::WriteI2CError)?;
        self.delay.delay_ms(get_execution_time(command));
        Ok(())
    }

    /// Send a command to the sensor module, wait for the execution time associated to the command
    /// and read the data from the sensor module
    fn send_wait_read(&mut self, command: CommandId, data: &mut [u16]) -> Result<()> {
        self.send_wait(command)?;
        self.read(data)
    }

    /// Read data from the sensor module (no command, just data, command must be sent separately)
    fn read(&mut self, data: &mut [u16]) -> Result<()> {
        let mut raw_data = [0 as u8; MAX_RX_BYTES];
        let internal_length = data.len() * 3;

        self.i2c
            .read(MODULE_ADDR, &mut raw_data[0..internal_length])
            .map_err(|_| Sen6xError::ReadI2CError)?;

        // Validate return values
        match crc_internal::validate_and_extract_data(&raw_data[..internal_length], data) {
            Ok(_) => Ok(()),
            Err(e) => Err(Sen6xError::from(e)),
        }
    }

    /// Send command, write data to the sensor module and wait for the execution time associated to the command
    fn send_write_wait(&mut self, command: CommandId, data: &[u16]) -> Result<()> {
        let mut raw_data = [0 as u8; MAX_TX_BYTES + 2];
        let internal_length = data.len() * 3 + 2;

        if internal_length > MAX_TX_BYTES + 2 {
            return Err(Sen6xError::TooMuchData);
        }

        // Encode command ID
        let command_bytes = (command as u16).to_be_bytes();
        raw_data[0] = command_bytes[0];
        raw_data[1] = command_bytes[1];

        // Fill raw data structure with data and CRCs
        for (i, &d) in data.iter().enumerate() {
            let crc = crc_internal::generate_crc(&d.to_be_bytes());
            let data_bytes = d.to_be_bytes();
            raw_data[i * 3 + 2] = data_bytes[0];
            raw_data[i * 3 + 3] = data_bytes[1];
            raw_data[i * 3 + 4] = crc;
        }

        self.i2c
            .write(MODULE_ADDR, &raw_data[0..internal_length])
            .map_err(|_| Sen6xError::WriteI2CError)?;
        self.delay.delay_ms(get_execution_time(command));
        Ok(())
    }

    /// Send command, write some data in one transaction, then wait for the execution time
    /// associated to the command and finally the data from the sensor module without
    /// any command sent again
    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    fn send_write_wait_read(
        &mut self,
        command: CommandId,
        data_in: &[u16],
        data_out: &mut [u16],
    ) -> Result<()> {
        self.send_write_wait(command, data_in)?;
        self.read(data_out)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use embedded_hal_mock::eh1::{
        delay::NoopDelay as DelayMock,
        i2c::{Mock as I2cMock, Transaction as I2cTransaction},
    };

    // helper to create a CRC algorithm instance
    const CRC_ALGO: crc::Crc<u8> = crc::Crc::<u8>::new(&crc::CRC_8_NRSC_5);

    // Helper macro to generate data bytes with correct CRC
    macro_rules! bytes_with_crc {
        ($msb:expr, $lsb:expr) => {{
            let data = [$msb, $lsb];
            let crc = CRC_ALGO.checksum(&data);
            vec![$msb, $lsb, crc]
        }};
    }

    // Helper to combine multiple bytes with CRC
    macro_rules! combine_bytes_with_crc {
        ($( [$msb:expr, $lsb:expr] ),*) => {{
            let mut result = Vec::new();
            $(
                let mut bytes = bytes_with_crc!($msb, $lsb);
                result.append(&mut bytes);
            )*
            result
        }};
    }

    #[test]
    fn test_new() {
        let i2c = I2cMock::new(&[]);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        // Verify the initial state
        assert_eq!(sensor.state, ModuleState::Idle);

        sensor.i2c.done();
    }

    #[test]
    fn test_start_continuous_measurement() {
        let expectations = [I2cTransaction::write(MODULE_ADDR, vec![0x00, 0x21])];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.start_continuous_measurement().is_ok());
        assert_eq!(sensor.state, ModuleState::Measuring);

        sensor.i2c.done();
    }

    #[test]
    fn test_stop_measurement() {
        let expectations = [I2cTransaction::write(MODULE_ADDR, vec![0x01, 0x04])];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);
        sensor.state = ModuleState::Measuring;

        assert!(sensor.stop_measurement().is_ok());
        assert_eq!(sensor.state, ModuleState::Idle);

        sensor.i2c.done();
    }

    #[test]
    fn test_get_is_data_ready_true() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x02, 0x02]),
            I2cTransaction::read(MODULE_ADDR, bytes_with_crc!(0x00, 0x01)),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert_eq!(sensor.get_is_data_ready().unwrap(), true);

        sensor.i2c.done();
    }

    #[test]
    fn test_get_is_data_ready_false() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x02, 0x02]),
            I2cTransaction::read(MODULE_ADDR, bytes_with_crc!(0x00, 0x00)),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert_eq!(sensor.get_is_data_ready().unwrap(), false);

        sensor.i2c.done();
    }

    #[cfg(feature = "sen63c")]
    #[test]
    fn test_get_sample_sen63c() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x04, 0x71]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x00, 0x0A], // PM1.0 = 1.0 μg/m³
                    [0x00, 0x0F], // PM2.5 = 1.5 μg/m³
                    [0x00, 0x14], // PM4.0 = 2.0 μg/m³
                    [0x00, 0x19], // PM10 = 2.5 μg/m³
                    [0x13, 0x88], // Humidity = 50.00 %RH (5000)
                    [0x09, 0xC4], // Temperature = 12.5 °C
                    [0x01, 0x90]  // CO2 = 400 ppm
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let sample = sensor.get_sample().unwrap();

        assert_eq!(sample.pm1, 1.0);
        assert_eq!(sample.pm2_5, 1.5);
        assert_eq!(sample.pm4, 2.0);
        assert_eq!(sample.pm10, 2.5);
        assert_eq!(sample.humidity, 50.0);
        assert_eq!(sample.temperature, 12.5);
        assert_eq!(sample.co2, 400);

        sensor.i2c.done();
    }

    #[cfg(feature = "sen65")]
    #[test]
    fn test_get_sample_sen65() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x04, 0x46]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x00, 0x0A], // PM1.0 = 1.0 μg/m³
                    [0x00, 0x0F], // PM2.5 = 1.5 μg/m³
                    [0x00, 0x14], // PM4.0 = 2.0 μg/m³
                    [0x00, 0x19], // PM10 = 2.5 μg/m³
                    [0x13, 0x88], // Humidity = 50.00 %RH (5000)
                    [0x09, 0xC4], // Temperature = 12.5 °C
                    [0x00, 0x64], // VOC = 10.0
                    [0x00, 0x01]  // NOX = 0.1
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let sample = sensor.get_sample().unwrap();

        assert_eq!(sample.pm1, 1.0);
        assert_eq!(sample.pm2_5, 1.5);
        assert_eq!(sample.pm4, 2.0);
        assert_eq!(sample.pm10, 2.5);
        assert_eq!(sample.humidity, 50.0);
        assert_eq!(sample.temperature, 12.5);
        assert_eq!(sample.voc, 10.0);
        assert_eq!(sample.nox, 0.1);

        sensor.i2c.done();
    }

    #[cfg(feature = "sen66")]
    #[test]
    fn test_get_sample_sen66() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x03, 0x00]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x00, 0x0A], // PM1.0 = 1.0 μg/m³
                    [0x00, 0x0F], // PM2.5 = 1.5 μg/m³
                    [0x00, 0x14], // PM4.0 = 2.0 μg/m³
                    [0x00, 0x19], // PM10 = 2.5 μg/m³
                    [0x13, 0x88], // Humidity = 50.00 %RH (5000)
                    [0x09, 0xC4], // Temperature = 12.5 °C
                    [0x00, 0x64], // VOC = 10.0
                    [0x00, 0x01], // NOX = 0.1
                    [0x01, 0x90]  // CO2 = 400 ppm
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let sample = sensor.get_sample().unwrap();

        assert_eq!(sample.pm1, 1.0);
        assert_eq!(sample.pm2_5, 1.5);
        assert_eq!(sample.pm4, 2.0);
        assert_eq!(sample.pm10, 2.5);
        assert_eq!(sample.humidity, 50.0);
        assert_eq!(sample.temperature, 12.5);
        assert_eq!(sample.co2, 400);
        assert_eq!(sample.voc, 10.0);
        assert_eq!(sample.nox, 0.1);

        sensor.i2c.done();
    }

    #[cfg(feature = "sen68")]
    #[test]
    fn test_get_sample_sen68() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x04, 0x67]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x00, 0x0A], // PM1.0 = 1.0 μg/m³
                    [0x00, 0x0F], // PM2.5 = 1.5 μg/m³
                    [0x00, 0x14], // PM4.0 = 2.0 μg/m³
                    [0x00, 0x19], // PM10 = 2.5 μg/m³
                    [0x13, 0x88], // Humidity = 50.00 %RH (5000)
                    [0x09, 0xC4], // Temperature = 12.5 °C
                    [0x00, 0x64], // VOC = 10.0
                    [0x00, 0x01], // NOX = 0.1
                    [0x01, 0x90]  // HCHO = 40.0 ppb
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let sample = sensor.get_sample().unwrap();

        assert_eq!(sample.pm1, 1.0);
        assert_eq!(sample.pm2_5, 1.5);
        assert_eq!(sample.pm4, 2.0);
        assert_eq!(sample.pm10, 2.5);
        assert_eq!(sample.humidity, 50.0);
        assert_eq!(sample.temperature, 12.5);
        assert_eq!(sample.hcho, 40.0);

        sensor.i2c.done();
    }

    #[cfg(feature = "sen63c")]
    #[test]
    fn test_get_raw_sample_sen63c() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x04, 0x92]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x30, 0x39], // Raw humidity = 12345
                    [0xFF, 0x85]  // Raw temperature = -123
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let raw_sample = sensor.get_raw_sample().unwrap();

        assert_eq!(raw_sample.raw_humidity, 12345);
        assert_eq!(raw_sample.raw_temperature, -123);

        sensor.i2c.done();
    }

    #[cfg(feature = "sen66")]
    #[test]
    fn test_get_raw_sample_sen66() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x04, 0x05]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x30, 0x39], // Raw humidity = 12345
                    [0xFF, 0x85], // Raw temperature = -123
                    [0x02, 0x37], // Raw VOC = 567
                    [0x00, 0x59], // Raw NOx = 89
                    [0x03, 0x15]  // Raw CO2 = 789
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let raw_sample = sensor.get_raw_sample().unwrap();

        assert_eq!(raw_sample.raw_humidity, 12345);
        assert_eq!(raw_sample.raw_temperature, -123);
        assert_eq!(raw_sample.raw_voc, 567);
        assert_eq!(raw_sample.raw_nox, 89);
        assert_eq!(raw_sample.raw_co2, 789);

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen65", feature = "sen68"))]
    #[test]
    fn test_get_raw_sample_sen65_sen68() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x04, 0x55]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x30, 0x39], // Raw humidity = 12345
                    [0xFF, 0x85], // Raw temperature = -123
                    [0x02, 0x37], // Raw VOC = 567
                    [0x00, 0x59]  // Raw NOx = 89
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let raw_sample = sensor.get_raw_sample().unwrap();

        assert_eq!(raw_sample.raw_humidity, 12345);
        assert_eq!(raw_sample.raw_temperature, -123);
        assert_eq!(raw_sample.raw_voc, 567);
        assert_eq!(raw_sample.raw_nox, 89);

        sensor.i2c.done();
    }

    #[test]
    fn test_get_raw_concentration_sample() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x03, 0x16]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x00, 0x0A], // PM1.0 = 10
                    [0x00, 0x0F], // PM2.5 = 15
                    [0x00, 0x14], // PM4.0 = 20
                    [0x00, 0x19]  // PM10 = 25
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let raw_conc = sensor.get_raw_concentration_sample().unwrap();

        assert_eq!(raw_conc.pm1, 10);
        assert_eq!(raw_conc.pm2_5, 15);
        assert_eq!(raw_conc.pm4, 20);
        assert_eq!(raw_conc.pm10, 25);

        sensor.i2c.done();
    }

    #[test]
    fn test_set_temp_offset_pars() {
        let temp_offset_pars = TempOffsetPars {
            offset: 100,
            slope: 200,
            time_constant: 300,
            slot: 1,
        };

        let expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x60, 0xB2],            // Command
                bytes_with_crc!(0x00, 0x64), // offset = 100
                bytes_with_crc!(0x00, 0xC8), // slope = 200
                bytes_with_crc!(0x01, 0x2C), // time_constant = 300
                bytes_with_crc!(0x00, 0x01), // slot = 1
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_temp_offset_pars(temp_offset_pars).is_ok());

        sensor.i2c.done();
    }

    #[test]
    fn test_set_temp_accel_pars() {
        let temp_accel_pars = TempAccelPars {
            k: 100,
            p: 200,
            t1: 300,
            t2: 400,
        };

        let expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x61, 0x00],            // Command
                bytes_with_crc!(0x00, 0x64), // k = 100
                bytes_with_crc!(0x00, 0xC8), // p = 200
                bytes_with_crc!(0x01, 0x2C), // t1 = 300
                bytes_with_crc!(0x01, 0x90), // t2 = 400
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_temp_accel_pars(temp_accel_pars).is_ok());

        sensor.i2c.done();
    }

    #[test]
    fn test_get_product_name() {
        // For text data, we need to create character bytes + CRC sequences
        let product_name_bytes = [
            // "SEN6X" + null + padding
            bytes_with_crc!(0x53, 0x45), // "SE"
            bytes_with_crc!(0x4E, 0x36), // "N6"
            bytes_with_crc!(0x58, 0x00), // "X" + null terminator
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
        ]
        .concat();

        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0xD0, 0x14]),
            I2cTransaction::read(MODULE_ADDR, product_name_bytes),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let mut buffer = [0u8; 32];
        let product_name = sensor.get_product_name(&mut buffer).unwrap();

        assert_eq!(product_name, "SEN6X");

        sensor.i2c.done();
    }

    #[test]
    fn test_get_serial_number() {
        // For text data, we need to create character bytes + CRC sequences
        let serial_number_bytes = [
            // "1234567890" + null + padding
            bytes_with_crc!(0x31, 0x32), // "12"
            bytes_with_crc!(0x33, 0x34), // "34"
            bytes_with_crc!(0x35, 0x36), // "56"
            bytes_with_crc!(0x37, 0x38), // "78"
            bytes_with_crc!(0x39, 0x30), // "90"
            bytes_with_crc!(0x00, 0x00), // null terminator
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
            bytes_with_crc!(0x00, 0x00), // padding
        ]
        .concat();

        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0xD0, 0x33]),
            I2cTransaction::read(MODULE_ADDR, serial_number_bytes),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let mut buffer = [0u8; 32];
        let serial_number = sensor.get_serial_number(&mut buffer).unwrap();

        assert_eq!(serial_number, "1234567890");

        sensor.i2c.done();
    }

    #[test]
    fn test_read_device_status() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0xD2, 0x06]),
            I2cTransaction::read(
                MODULE_ADDR,
                [
                    bytes_with_crc!(0b00000000, 0b00100000), // Status word 2 - (fan speed warning)
                    bytes_with_crc!(0b00000000, 0b10010000), // Status word 1 - (fan error and gas error)
                ]
                .concat(),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let status = sensor.read_device_status().unwrap();

        assert_eq!(status.fan_speed_warning, true);
        assert_eq!(status.co2_error, false);
        assert_eq!(status.pm_error, false);
        assert_eq!(status.gas_error, true);
        assert_eq!(status.rh_t_error, false);
        assert_eq!(status.fan_error, true);

        sensor.i2c.done();
    }

    #[test]
    fn test_reset() {
        let expectations = [I2cTransaction::write(MODULE_ADDR, vec![0xD3, 0x04])];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.reset().is_ok());

        sensor.i2c.done();
    }

    #[test]
    fn test_start_fan_cleaning() {
        let expectations = [I2cTransaction::write(MODULE_ADDR, vec![0x56, 0x07])];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.start_fan_cleaning().is_ok());

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    #[test]
    fn test_set_voc_algo_tuning_parameters() {
        let tuning_pars = AlgorithmTuningParameters {
            index_offset: 100,
            learning_time_offset_hours: 12,
            learning_time_gain_hours: 12,
            gating_max_duration_minutes: 180,
            std_initial: 50,
            gain_factor: 230,
        };

        let expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x60, 0xD0],            // Command
                bytes_with_crc!(0x00, 0x64), // index_offset = 100
                bytes_with_crc!(0x00, 0x0C), // learning_time_offset_hours = 12
                bytes_with_crc!(0x00, 0x0C), // learning_time_gain_hours = 12
                bytes_with_crc!(0x00, 0xB4), // gating_max_duration_minutes = 180
                bytes_with_crc!(0x00, 0x32), // std_initial = 50
                bytes_with_crc!(0x00, 0xE6), // gain_factor = 230
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_voc_algo_tuning_parameters(tuning_pars).is_ok());

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    #[test]
    fn test_get_voc_algo_tuning_parameters() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x60, 0xD0]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x00, 0x64], // index_offset = 100
                    [0x00, 0x0C], // learning_time_offset_hours = 12
                    [0x00, 0x0C], // learning_time_gain_hours = 12
                    [0x00, 0xB4], // gating_max_duration_minutes = 180
                    [0x00, 0x32], // std_initial = 50
                    [0x00, 0xE6]  // gain_factor = 230
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let tuning_pars = sensor.get_voc_algo_tuning_parameters().unwrap();

        assert_eq!(tuning_pars.index_offset, 100);
        assert_eq!(tuning_pars.learning_time_offset_hours, 12);
        assert_eq!(tuning_pars.learning_time_gain_hours, 12);
        assert_eq!(tuning_pars.gating_max_duration_minutes, 180);
        assert_eq!(tuning_pars.std_initial, 50);
        assert_eq!(tuning_pars.gain_factor, 230);

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    #[test]
    fn test_set_and_get_ambient_pressure() {
        // Test setting ambient pressure
        let pressure = 1013;
        let set_expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x67, 0x20],            // Command
                bytes_with_crc!(0x03, 0xF5), // pressure = 1013
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&set_expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_ambient_pressure(pressure).is_ok());
        sensor.i2c.done();

        // Test getting ambient pressure
        let get_expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x67, 0x20]),
            I2cTransaction::read(MODULE_ADDR, bytes_with_crc!(0x03, 0xF5)),
        ];

        let i2c = I2cMock::new(&get_expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let read_pressure = sensor.get_ambient_pressure().unwrap();
        assert_eq!(read_pressure, 1013);

        sensor.i2c.done();
    }

    #[test]
    fn test_error_handling() {
        // Test I2C write error
        let expectations = [I2cTransaction::write(MODULE_ADDR, vec![0x00, 0x21])
            .with_error(embedded_hal::i2c::ErrorKind::Bus)];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let result = sensor.start_continuous_measurement();
        assert!(result.is_err());
        assert!(matches!(result, Err(Sen6xError::WriteI2CError)));

        sensor.i2c.done();

        // Test I2C read error
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x02, 0x02]),
            I2cTransaction::read(MODULE_ADDR, vec![0; 3])
                .with_error(embedded_hal::i2c::ErrorKind::Bus),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let result = sensor.get_is_data_ready();
        assert!(result.is_err());
        assert!(matches!(result, Err(Sen6xError::ReadI2CError)));

        sensor.i2c.done();

        // Test invalid state error
        let expectations = []; // No I2C transactions expected

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);
        sensor.state = ModuleState::Measuring;

        let result = sensor.reset();
        assert!(result.is_err());
        assert!(matches!(result, Err(Sen6xError::InvalidState)));

        sensor.i2c.done();

        // Test CRC error
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x02, 0x02]),
            I2cTransaction::read(MODULE_ADDR, vec![0x00, 0x01, 0xFF]), // Invalid CRC
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let result = sensor.get_is_data_ready();
        assert!(result.is_err());

        sensor.i2c.done();
    }

    #[test]
    fn test_activate_sht_heater() {
        let expectations = [I2cTransaction::write(MODULE_ADDR, vec![0x67, 0x65])];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.activate_sht_heater().is_ok());

        sensor.i2c.done();
    }

    #[test]
    fn test_read_and_clear_device_status() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0xD2, 0x10]),
            I2cTransaction::read(
                MODULE_ADDR,
                [
                    bytes_with_crc!(0b00000000, 0b00100000), // Status word 2 - (fan speed warning)
                    bytes_with_crc!(0b00000000, 0b10010000), // Status word 1 - (fan error and gas error)
                ]
                .concat(),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let status = sensor.read_and_clear_device_status().unwrap();

        assert_eq!(status.fan_speed_warning, true);
        assert_eq!(status.fan_error, true);
        assert_eq!(status.gas_error, true);
        assert_eq!(status.rh_t_error, false);
        assert_eq!(status.pm_error, false);
        assert_eq!(status.co2_error, false);

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    #[test]
    fn test_set_altitude() {
        let expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x67, 0x36],            // Command
                bytes_with_crc!(0x01, 0xF4), // altitude = 500
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_altitude(500).is_ok());

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    #[test]
    fn test_get_altitude() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x67, 0x36]),
            I2cTransaction::read(MODULE_ADDR, bytes_with_crc!(0x01, 0xF4)), // 500
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let altitude = sensor.get_altitude().unwrap();
        assert_eq!(altitude, 500);

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    #[test]
    fn test_get_voc_algo_state() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x61, 0x81]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x12, 0x34], // state[0] = 0x1234
                    [0x56, 0x78], // state[1] = 0x5678
                    [0x9A, 0xBC], // state[2] = 0x9ABC
                    [0xDE, 0xF0]  // state[3] = 0xDEF0
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let state = sensor.get_voc_algo_state().unwrap();
        assert_eq!(state, [0x1234, 0x5678, 0x9ABC, 0xDEF0]);

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    #[test]
    fn test_set_voc_algo_state() {
        let state = [0x1234, 0x5678, 0x9ABC, 0xDEF0];
        let expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x61, 0x81],            // Command
                bytes_with_crc!(0x12, 0x34), // state[0] = 0x1234
                bytes_with_crc!(0x56, 0x78), // state[1] = 0x5678
                bytes_with_crc!(0x9A, 0xBC), // state[2] = 0x9ABC
                bytes_with_crc!(0xDE, 0xF0), // state[3] = 0xDEF0
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_voc_algo_state(state).is_ok());

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    #[test]
    fn test_get_nox_algo_tuning_parameters() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x60, 0xE1]),
            I2cTransaction::read(
                MODULE_ADDR,
                combine_bytes_with_crc!(
                    [0x00, 0x64], // index_offset = 100
                    [0x00, 0x0C], // learning_time_offset_hours = 12
                    [0x00, 0x0C], // learning_time_gain_hours = 12
                    [0x00, 0xB4], // gating_max_duration_minutes = 180
                    [0x00, 0x32], // std_initial = 50
                    [0x00, 0xE6]  // gain_factor = 230
                ),
            ),
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let tuning_pars = sensor.get_nox_algo_tuning_parameters().unwrap();

        assert_eq!(tuning_pars.index_offset, 100);
        assert_eq!(tuning_pars.learning_time_offset_hours, 12);
        assert_eq!(tuning_pars.learning_time_gain_hours, 12);
        assert_eq!(tuning_pars.gating_max_duration_minutes, 180);
        assert_eq!(tuning_pars.std_initial, 50);
        assert_eq!(tuning_pars.gain_factor, 230);

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen65", feature = "sen66", feature = "sen68"))]
    #[test]
    fn test_set_nox_algo_tuning_parameters() {
        let tuning_pars = AlgorithmTuningParameters {
            index_offset: 100,
            learning_time_offset_hours: 12,
            learning_time_gain_hours: 12,
            gating_max_duration_minutes: 180,
            std_initial: 50,
            gain_factor: 230,
        };

        let expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x60, 0xE1],            // Command
                bytes_with_crc!(0x00, 0x64), // index_offset = 100
                bytes_with_crc!(0x00, 0x0C), // learning_time_offset_hours = 12
                bytes_with_crc!(0x00, 0x0C), // learning_time_gain_hours = 12
                bytes_with_crc!(0x00, 0xB4), // gating_max_duration_minutes = 180
                bytes_with_crc!(0x00, 0x32), // std_initial = 50
                bytes_with_crc!(0x00, 0xE6), // gain_factor = 230
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_nox_algo_tuning_parameters(tuning_pars).is_ok());

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    #[test]
    fn test_perform_forced_co2_recalibration() {
        let target_concentration = 400;

        let expectations = [
            I2cTransaction::write(
                MODULE_ADDR,
                [
                    vec![0x67, 0x07],            // Command
                    bytes_with_crc!(0x01, 0x90), // target_concentration = 400
                ]
                .concat(),
            ),
            I2cTransaction::read(MODULE_ADDR, bytes_with_crc!(0x01, 0x90)), // correction value = 400
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let correction = sensor
            .perform_forced_co2_recalibration(target_concentration)
            .unwrap();
        assert_eq!(correction, 400);

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    #[test]
    fn test_get_is_co2_auto_self_calibrated() {
        let expectations = [
            I2cTransaction::write(MODULE_ADDR, vec![0x67, 0x11]),
            I2cTransaction::read(MODULE_ADDR, bytes_with_crc!(0x00, 0x01)), // enabled
        ];

        let i2c = I2cMock::new(&expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        let is_enabled = sensor.get_is_co2_auto_self_calibrated().unwrap();
        assert_eq!(is_enabled, true);

        sensor.i2c.done();
    }

    #[cfg(any(feature = "sen63c", feature = "sen66"))]
    #[test]
    fn test_set_co2_auto_self_calibration() {
        // Test enabling
        let enable_expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x67, 0x11],            // Command
                bytes_with_crc!(0x00, 0x01), // enable = true
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&enable_expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_co2_auto_self_calibration(true).is_ok());
        sensor.i2c.done();

        // Test disabling
        let disable_expectations = [I2cTransaction::write(
            MODULE_ADDR,
            [
                vec![0x67, 0x11],            // Command
                bytes_with_crc!(0x00, 0x00), // enable = false
            ]
            .concat(),
        )];

        let i2c = I2cMock::new(&disable_expectations);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);

        assert!(sensor.set_co2_auto_self_calibration(false).is_ok());
        sensor.i2c.done();
    }

    #[test]
    fn test_invalid_state_errors() {
        // Test functions that should fail when in measuring state
        let i2c = I2cMock::new(&[]);
        let delay = DelayMock::new();
        let mut sensor = Sen6x::new(delay, i2c);
        sensor.state = ModuleState::Measuring;

        // Try operations that should fail in measuring state
        assert!(matches!(
            sensor.start_continuous_measurement(),
            Err(Sen6xError::InvalidState)
        ));
        assert!(matches!(sensor.reset(), Err(Sen6xError::InvalidState)));
        assert!(matches!(
            sensor.start_fan_cleaning(),
            Err(Sen6xError::InvalidState)
        ));
        assert!(matches!(
            sensor.activate_sht_heater(),
            Err(Sen6xError::InvalidState)
        ));
        #[cfg(any(feature = "sen63c", feature = "sen66"))]
        assert!(matches!(
            sensor.set_altitude(500),
            Err(Sen6xError::InvalidState)
        ));

        sensor.i2c.done();
    }
}