2020年6月29日 星期一

loop up_down

#include <at89x52.h>
char P0table[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xff};
/*                                                                  a   b     c   d     e   f    
1111 1110  1111 1111 0xfe 0xff a   off                             10   11    12  13    14  15  16
1111 1111  1111 1110 0xff 0xfe off a
1111 1111  1111 1101 0xff 0xfd off b
1111 1111  1111 1011 0xff 0xfb off c
1111 1111  1111 0111 0xff 0xf7 off d
1111 0111  1111 1111 0xf7 0xff d off
1110 1111  1111 1111 0xef 0xff e off
1101 1111  1111 1111 0xdf 0xff f 0ff
*/
char P2table[]={0xfe,0xfd,0xfb,0xf7};
char bdata flag;
sbit up_flag=flag^0;
sbit down_flag=flag^1;
sbit cck_flag=flag^2;
sbit anti_cck_flag=flag^3;
char bcd[]={4,0,7,0};
int count=0;
int cck_cnt;
int time=20;
int j;
sbit btn1=P3^0;
sbit btn2=P3^1;
void delay_1ms(int k)
{
int i,j;
for(i=0;i<k;i++)
for(j=0;j<114;j++)
      ;
}
main()
{
IE=0x8A;
TMOD=0x10;
TH0=(8192-5000)/32;
TL0=(8192-5000)%32;
TH1=(65536-50000)/256;
TL1=(65536-50000)%256;
TR0=1;
TR1=1;
up_flag=1;down_flag=0;
cck_flag=1;anti_cck_flag=0;
while(1)
{
if(btn1==0)
{
up_flag=~up_flag;down_flag=~down_flag;delay_1ms(20);while(btn1!=1);delay_1ms(20);
}
if(btn2==0)
{
cck_flag=~cck_flag;anti_cck_flag=~anti_cck_flag;delay_1ms(20);while(btn2!=1);delay_1ms(20);
}
}
}
void t0_int0(void) interrupt 1
{
TH0=(8192-5000)/32;
TL0=(8192-5000)%32;
P0=P0table[bcd[j]];
P2=P2table[j];
j++;
if(j==4)
j=0;
}
void t1_int0(void) interrupt 3
{
TH1=(65536-50000)/256;
TL1=(65536-50000)%256;
time--;
if(time==0)
{
time=20;
if(up_flag==1)
{
  count++;
  if(count>99)//兩個獨立的系統,所以用if else if  if else if
  count=0;
}
else if(down_flag==1)
{
count--;
if(count<0)
count=99;
}
if(cck_flag==1)
{
cck_cnt++;
if(cck_cnt>7)
cck_cnt=0;
}
else if(anti_cck_flag==1)
{
cck_cnt--;
if(cck_cnt<0)
cck_cnt=7;
}
if(cck_cnt==0){ bcd[3]=10;bcd[2]=16;}
if(cck_cnt==1){ bcd[3]=16;bcd[2]=10;}
if(cck_cnt==2){      bcd[3]=16;bcd[2]=11;}
if(cck_cnt==3){ bcd[3]=16;bcd[2]=12;}
if(cck_cnt==4){ bcd[3]=16;bcd[2]=13;}
if(cck_cnt==5){ bcd[3]=13;bcd[2]=16;}
if(cck_cnt==6){ bcd[3]=14;bcd[2]=16;}
if(cck_cnt==7){ bcd[3]=15;bcd[2]=16;}
bcd[0]=count%10;
bcd[1]=count/10;
}
}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...