1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| #ifndef _TM1638_H #define _TM1638_H
#include <STC32G.H>
sbit DIO=P1^3; sbit CLK=P1^0; sbit STB=P1^1;
unsigned char code dis[11]={0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07, 0x7F,0x6F,0x00}; unsigned char while_one[8]={0xc0,0xc2,0xc4,0xc6,0xc8,0xca,0xcc,0xce}; void TM1638_Write(unsigned char Data) { unsigned char i; for(i=0;i<8;i++) { CLK=0; DIO=Data&0x01; Data>>=1; CLK=1; } }
void Write_Command(unsigned char Command) { STB=0; TM1638_Write(Command); STB=1; }
void Write_Data(unsigned char add,unsigned char Data) { STB=0; TM1638_Write(0x00|add); TM1638_Write(Data); STB=1; }
void init_TM1638(void) { unsigned char i; Write_Command(0x8F); Write_Command(0x40);
STB=0; TM1638_Write(0xc0);
for(i=0;i<16;i++) TM1638_Write(0x00); STB=1; } #endif
|