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.
Dependencies: mbed TTU_CSC1300
main.cpp@0:733cd53309ed, 2020-11-04 (annotated)
- Committer:
- coltonbreeding
- Date:
- Wed Nov 04 04:32:20 2020 +0000
- Revision:
- 0:733cd53309ed
- Child:
- 1:4d134e02f836
blinks LED
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| coltonbreeding | 0:733cd53309ed | 1 | /* |
| coltonbreeding | 0:733cd53309ed | 2 | * Lab #: |
| coltonbreeding | 0:733cd53309ed | 3 | * Lab Title: |
| coltonbreeding | 0:733cd53309ed | 4 | * Author(s): |
| coltonbreeding | 0:733cd53309ed | 5 | * Date: |
| coltonbreeding | 0:733cd53309ed | 6 | * Purpose: |
| coltonbreeding | 0:733cd53309ed | 7 | */ |
| coltonbreeding | 0:733cd53309ed | 8 | |
| coltonbreeding | 0:733cd53309ed | 9 | #include "mbed.h" |
| coltonbreeding | 0:733cd53309ed | 10 | #include "TTU_CSC1300.h" |
| coltonbreeding | 0:733cd53309ed | 11 | |
| coltonbreeding | 0:733cd53309ed | 12 | //FUNCTION PROTOTYPES GO HERE |
| coltonbreeding | 0:733cd53309ed | 13 | TextLCD lcd(TextLCD::LCD_CURSOR_ON_BLINKING_ON); |
| coltonbreeding | 0:733cd53309ed | 14 | int main() |
| coltonbreeding | 0:733cd53309ed | 15 | { |
| coltonbreeding | 0:733cd53309ed | 16 | //this while(TRUE) loop keeps the program running |
| coltonbreeding | 0:733cd53309ed | 17 | while(TRUE) |
| coltonbreeding | 0:733cd53309ed | 18 | { |
| coltonbreeding | 0:733cd53309ed | 19 | //WRITE SOLUTION HERE |
| coltonbreeding | 0:733cd53309ed | 20 | //blinks "Hello, World!" every other second |
| coltonbreeding | 0:733cd53309ed | 21 | lcd.printf("Hello, World!"); |
| coltonbreeding | 0:733cd53309ed | 22 | wait_ms(1000); |
| coltonbreeding | 0:733cd53309ed | 23 | lcd.cls(); |
| coltonbreeding | 0:733cd53309ed | 24 | wait_ms(1000); } |
| coltonbreeding | 0:733cd53309ed | 25 | } |