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.
SegDisplay.h
- Committer:
- dpavetic
- Date:
- 2022-11-05
- Revision:
- 1:f694fd763135
- Parent:
- SigDisplay.h@ 0:b400107c7fc3
File content as of revision 1:f694fd763135:
// SegDisplay.h file for Exercise 24
#ifndef SEGDISPLAY_H
#define SEGDISPLAY_H
#include "mbed.h"
extern BusOut Seg1; // allow Seg1 to be manipulated by other files
extern BusOut Seg2; // allow Seg2 to be manipulated by other files
void SegInit(void); // function prototype
char SegConvert(char SegValue); // function prototype
#endif