Lourdès Abou-tayeh / CCS811

Dependents:   Capteur2

Revision:
1:d0abe05bc21e
Parent:
0:2c1dce3543ae
--- a/main.cpp	Mon Sep 06 09:17:14 2021 +0000
+++ b/main.cpp	Mon Sep 06 11:32:22 2021 +0000
@@ -2,13 +2,13 @@
 #include "CCS811.h"
 
 I2C i2c (I2C_SDA,I2C_SCL);
-Serial bluetooth(p9,p10); 
+Serial bluetooth(p9,p10);
 
 #ifdef TARGET_UBLOX_EVK_ODIN_W2
 CCS811 ccs811(p9, p10);
 #else
 CCS811 ccs811(I2C_SDA, I2C_SCL);
-#endif  
+#endif
 
 uint16_t eco2, tvoc;
 
@@ -18,7 +18,7 @@
     bluetooth.baud(56000);
     //ccs811.readData(&eco2, &tvoc);
     //bluetooth.printf("eCO2 reading :%dppm, TVOC reading :%dppb\r\n", eco2, tvoc);
-    
+
     ccs811.readData(&eco2, &tvoc);
     bluetooth.printf("eCO2 reading :%dppm", eco2);
 }
@@ -29,7 +29,8 @@
     ccs811.init();
     wait(1);
 
-    while(1) {
+    while(1) 
+    {
         ccs811.readstatus(); //0x90 reports everything working, 0x98 measurement ready to be used
         wait(1);
         CCS811Callback();