
touch
main.cpp
- Committer:
- sergio_restrepo
- Date:
- 2019-10-07
- Revision:
- 0:630620db0649
File content as of revision 0:630620db0649:
#include "mbed.h" #include "TSISensor.h" int main() { PwmOut led(LED_GREEN); TSISensor tsi; while(true) { led=1.0-tsi.readPercentage(); wait(0.1); } }