Program using Touch Sensor and PWM function. This code set a value of brightness in RGB led using Touch Sensor like a slider. The begining of touch is used to select a color. The end of touch is used to select an effect.

Dependencies:   MMA8451Q TSI mbed

Fork of FRDM_TSI by Subhrajit Mitra

Committer:
chris
Date:
Fri Oct 12 11:42:21 2012 +0000
Revision:
1:51b1b688179a
Parent:
0:0f00f07ebde0
Child:
5:7f7b888f616b
Tidied up formatting

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emilmont 0:0f00f07ebde0 1 #include "mbed.h"
chris 1:51b1b688179a 2 #include "TSISensor.h"
emilmont 0:0f00f07ebde0 3
emilmont 0:0f00f07ebde0 4 int main(void) {
chris 1:51b1b688179a 5 PwmOut led(LED_GREEN);
chris 1:51b1b688179a 6 TSISensor tsi;
emilmont 0:0f00f07ebde0 7
emilmont 0:0f00f07ebde0 8 while (true) {
chris 1:51b1b688179a 9 led = 1.0 - tsi.readPercentage();
chris 1:51b1b688179a 10 wait(0.1);
emilmont 0:0f00f07ebde0 11 }
chris 1:51b1b688179a 12 }