7-segment, up-down counter. Solution to the 2021 Week 10 Lab Practical.

Committer:
CSTritt
Date:
Thu Nov 11 03:45:49 2021 +0000
Revision:
112:3e59dadc569e
First complete version. Solution to the 2021, Week 10 lab practical.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
CSTritt 112:3e59dadc569e 1 #ifndef MY_DSPLY
CSTritt 112:3e59dadc569e 2 #define MY_DSPLY
CSTritt 112:3e59dadc569e 3 #include "mbed.h"
CSTritt 112:3e59dadc569e 4 // File: display.h by Dr. C. S. Tritt, v. 1.0
CSTritt 112:3e59dadc569e 5 // BusOut and Serial objects must be passed by reference because they cannot be
CSTritt 112:3e59dadc569e 6 // copied.
CSTritt 112:3e59dadc569e 7 void display(int disVal, BusOut &disBus, Serial &pc);
CSTritt 112:3e59dadc569e 8 #endif