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
00001 /* Program Example 6.7: SegDisplay.h file for modular 7-seg keyboard controller 00002 */ 00003 #ifndef SEGDISPLAY_H 00004 #define SEGDISPLAY_H 00005 00006 #include "mbed.h" 00007 00008 extern BusOut Seg1; // allow Seg1 to be manipulated by other files 00009 extern BusOut Seg2; // allow Seg2 to be manipulated by other files 00010 00011 void SegInit(void); // function prototype 00012 char SegConvert(char SegValue); // function prototype 00013 00014 #endif
Generated on Tue Jul 26 2022 08:34:23 by
1.7.2