Colton breeding / Mbed 2 deprecated CSC1300_EduBaseV2_Lab0

Dependencies:   mbed TTU_CSC1300

Revision:
0:733cd53309ed
Child:
1:4d134e02f836
diff -r 000000000000 -r 733cd53309ed main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Nov 04 04:32:20 2020 +0000
@@ -0,0 +1,25 @@
+/*
+ *     Lab #:
+ * Lab Title:
+ * Author(s):
+ *      Date:
+ *   Purpose:
+ */
+
+#include "mbed.h"
+#include "TTU_CSC1300.h"
+
+//FUNCTION PROTOTYPES GO HERE
+TextLCD lcd(TextLCD::LCD_CURSOR_ON_BLINKING_ON);
+int main()
+{
+    //this while(TRUE) loop keeps the program running
+    while(TRUE)
+    {
+        //WRITE SOLUTION HERE
+ //blinks "Hello, World!" every other second
+lcd.printf("Hello, World!");
+wait_ms(1000);
+lcd.cls();
+wait_ms(1000);   }
+}
\ No newline at end of file