ads1115 only
Fork of mbed by
Diff: Timeout.h
- Revision:
- 55:d722ed6a4237
- Parent:
- 54:71b101360fb9
- Child:
- 59:0883845fe643
diff -r 71b101360fb9 -r d722ed6a4237 Timeout.h --- a/Timeout.h Tue Jan 08 12:46:36 2013 +0000 +++ b/Timeout.h Wed Jan 16 12:56:34 2013 +0000 @@ -28,23 +28,23 @@ /** A Timeout is used to call a function at a point in the future * - * You can use as many seperate Timeout objects as you require. + * You can use as many seperate Timeout objects as you require. * * Example: * @code * // Blink until timeout. * * #include "mbed.h" - * + * * Timeout timeout; * DigitalOut led(LED1); - * + * * int on = 1; - * + * * void attimeout() { * on = 0; * } - * + * * int main() { * timeout.attach(&attimeout, 5); * while(on) {