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

display.h

Committer:
CSTritt
Date:
2021-11-11
Revision:
112:3e59dadc569e

File content as of revision 112:3e59dadc569e:

#ifndef MY_DSPLY
#define MY_DSPLY
#include "mbed.h"
// File: display.h by Dr. C. S. Tritt, v. 1.0
// BusOut and Serial objects must be passed by reference because they cannot be
// copied.
void display(int disVal, BusOut &disBus, Serial &pc);
#endif