Starting point code for CS 220 Lab 5.

Dependencies:   TSI mbed

Fork of FRDM_TSI by mbed official

Committer:
chris
Date:
Fri Oct 12 11:42:21 2012 +0000
Revision:
1:51b1b688179a
Parent:
0:0f00f07ebde0
Child:
6:1096b1fd8d0a
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 }