Levi Mariën
/
STC3100
Custom project for driving a STC3100 sensor
main.cpp
- Committer:
- tommienator
- Date:
- 2017-10-29
- Revision:
- 0:014d4be7a437
File content as of revision 0:014d4be7a437:
#include "mbed.h" DigitalOut myled(LED1); int main() { while(1) { myled = 1; // LED is ON wait(0.2); // 200 ms myled = 0; // LED is OFF wait(1.0); // 1 sec } }