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.
myFuncs.h
- Committer:
- CSTritt
- Date:
- 2021-10-17
- Revision:
- 116:8990686eedf5
- Parent:
- 115:6ba84689e2c9
- Child:
- 117:e072f162cbce
File content as of revision 116:8990686eedf5:
/* File: myFuncs.h
This file declares my utility functions. Headers must match definitions.
Created by Dr. C. S. Tritt
Last reviseed: 10/16/21 (v. 1.0)
*/
// The next two lines and final endif prevents multiple inclusion.
#ifndef MY_FUNCS
#define MY_FUNCS
// Function declarations...
void clrTerm(Serial & pc);
void blueText(Serial & pc);
void whiteText(Serial & pc);
// Ends if. Don't put comments in pre-processor lines.
#endif