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@1:51b1b688179a, 2012-10-12 (annotated)
- Committer:
- chris
- Date:
- Fri Oct 12 11:42:21 2012 +0000
- Revision:
- 1:51b1b688179a
- Parent:
- 0:0f00f07ebde0
- Child:
- 6:333a2763ad29
Tidied up formatting
Who changed what in which revision?
| User | Revision | Line number | New 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 | } |