J.W. BRUCE / TTU_CSC1300

Dependents:   CSC1300_EduBaseV2_Lab0 mbed_blinky EduBaseV2_Lab0 mbed_blinky ... more

Template Code

Table of Contents

  1. 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
    }
}


All wikipages