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.
Dependents: CSC1300_EduBaseV2_Lab0 mbed_blinky EduBaseV2_Lab0 mbed_blinky ... more
Template Code
Template Code¶
You are provided this template code to use in each of your EduBase labs. Copy and paste this code into your main.cpp after you have created a new program and imported the TTU_CSC1300 library. Be sure to only write your solution within the inner pair of brackets ({...}) under the comment that says, "WRITE SOLUTION HERE."
/* * Lab #: * Lab Title: * Author(s): * Date: * Purpose: */ #include "mbed.h" #include "TTU_CSC1300.h" //FUNCTION PROTOTYPES GO HERE int main() { //this while(TRUE) loop keeps the program running while(TRUE) { //WRITE SOLUTION HERE } }