Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- sarahboydster
- Date:
- 2014-05-26
- Revision:
- 0:b6d19a9ddd81
File content as of revision 0:b6d19a9ddd81:
#include "mbed.h" #include "tsi_sensor.h" #define ELEC0 9 #define ELEC1 10 AnalogOut analogOut(PTE30); int main(void) { PwmOut led(LED_GREEN); TSIAnalogSlider tsi(ELEC0, ELEC1, 40); while (true) { led = 1.0 - tsi.readPercentage(); analogOut = tsi.readPercentage(); wait(0.1); } }