Demo for the Mbed Connect Cloud board
Dependencies: C12832 CCS811 MMA7660 Sht31 TSL2561
View the tutorial for this demo here.
Revision 1:6791f0504ab0, committed 2017-11-09
- Comitter:
- Jenny Plunkett
- Date:
- Thu Nov 09 12:36:44 2017 -0600
- Parent:
- 0:801b555a3dd8
- Commit message:
- Fixed typo
Changed in this revision
working/main_working.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 801b555a3dd8 -r 6791f0504ab0 working/main_working.h --- a/working/main_working.h Thu Nov 09 12:29:25 2017 -0600 +++ b/working/main_working.h Thu Nov 09 12:36:44 2017 -0600 @@ -53,7 +53,7 @@ uint16_t eco2, tvoc; air_sensor.readData(&eco2, &tvoc); char val[32]; - sprintf(val, "eCO2: %dppm, TVOC : %dppb", eco2, tvoc); + sprintf(val, "eCO2: %dppm, TVOC: %dppb", eco2, tvoc); lcd_print(val); }