Example program to control the brightness of an LED using the touch sensor interface
Dependents: FRDM-KL46Z_LCD_Test FRDM-KL46Z_LCD_Test FRDM-KL46Z_I2C-Scanner
Legacy Warning
This is an mbed 2 example. To learn more about mbed OS 5, visit the docs.
Diff: main.cpp
- Revision:
- 0:0f00f07ebde0
- Child:
- 1:51b1b688179a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Oct 11 11:05:51 2012 +0000 @@ -0,0 +1,14 @@ +#include "mbed.h" +#include "TSI_Sensor.h" + +int main(void) { + DigitalOut led(LED_GREEN); + TSI_Sensor tsi; + + while (true) { + printf("slider percentage: %d%\r\n", tsi.getPercentage()); + printf("slider distance: %dmm\r\n", tsi.getDistance()); + wait(1); + led = !led; + } +}