Seven Segment Display Header

 

#ifndef _SEVEN_SEGMENT_DISPLAY_H_

#define _SEVEN_SEGMENT_DISPLAY_H_

 

#include <stdio.h>

#include <ME218_C32.h>

#include <timers12.h>

 

 //data  Port M2

 //clock Port M3

 

void Display(int Number);

void DisplayInit( void);

void ClockPulse( void);

void DataHigh ( void);

void DataLow ( void);

void delay(unsigned int time_in_ms);

void ClearDisplay( void);

 

#endif

 

Back to Pseudo Code

Back to the Starting Line