Levi Mariën
/
STC3100ppp
Custom project for driving a STC3100 sensor
Fork of STC3100 by
Diff: main.cpp
- Revision:
- 1:dbc1e56be2cc
- Parent:
- 0:014d4be7a437
--- a/main.cpp Sun Oct 29 00:11:17 2017 +0000 +++ b/main.cpp Sat Nov 04 13:07:17 2017 +0000 @@ -1,12 +1,13 @@ #include "mbed.h" - -DigitalOut myled(LED1); +#include "STC3100Sensor.h" int main() { + + stc3100Configure(); + while(1) { - myled = 1; // LED is ON - wait(0.2); // 200 ms - myled = 0; // LED is OFF - wait(1.0); // 1 sec + + printf("%f\n", getVoltage()); + } } \ No newline at end of file