19 lines
223 B
C
19 lines
223 B
C
|
#ifndef __HC595_H
|
||
|
#define __HC595_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void SendOneByte(uint8_t dat);
|
||
|
void SendTwoBytes(uint16_t dat);
|
||
|
void HanziDiplay(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|