summaryrefslogtreecommitdiff
path: root/src/app/ccs811test/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/ccs811test/main.cc')
-rw-r--r--src/app/ccs811test/main.cc34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/app/ccs811test/main.cc b/src/app/ccs811test/main.cc
new file mode 100644
index 0000000..a1052f6
--- /dev/null
+++ b/src/app/ccs811test/main.cc
@@ -0,0 +1,34 @@
+#include "arch.h"
+#include "driver/gpio.h"
+#include "driver/stdout.h"
+#if defined(MULTIPASS_ARCH_HAS_I2C) && !defined(DRIVER_SOFTI2C)
+#include "driver/i2c.h"
+#else
+#include "driver/soft_i2c.h"
+#endif
+#include "driver/ccs811.h"
+
+void loop(void)
+{
+ kout << "CCS811 status is " << ccs811.check() << endl;
+}
+
+int main(void)
+{
+
+ arch.setup();
+ gpio.setup();
+ kout.setup();
+
+ if (i2c.setup() != 0) {
+ return 1;
+ }
+
+ kout << "I2C setup OK" << endl;
+
+ ccs811.init();
+
+ arch.idle_loop();
+
+ return 0;
+}