bạn ơi không biết bạn thử trên mạch thực chưa.
minh thử thì nó bị thế này: mình diều khiển led 1 sáng 50%.khi nạp vào, chạy thì thấy led 1 sáng 50% nhưng 7 led còn lại chớp tắt liên tục. mình thử các kiểu thi thấy led nào không bật sáng đều bị chớp tắt như vậy.
đây là đoạn code mình lấy ra từ chương trình
#include<regx51.h>
char NumPort=8;
char PWM[32];
char chuki=0;
void SetLed(char i, char v)
{
switch (i)
{
case 0:
P1_0 = v; return;
case 1:
P1_1 = v; return;
case 2:
P1_2 = v; return;
case 3:
P1_3 = v; return;
case 4:
P1_4 = v; return;
case 5:
P1_5 = v; return;
case 6:
P1_6 = v; return;
case 7:
P1_7 = v; return;
case 8:
P3_0 = v; return;
case 9:
P3_1 = v; return;
case 10:
P3_2 = v; return;
case 11:
P3_3 = v; return;
case 12:
P3_4 = v; return;
case 13:
P3_5 = v; return;
case 14:
P3_6 = v; return;
case 15:
P3_7 = v; return;
case 16:
P2_0 = v; return;
case 17:
P2_1 = v; return;
case 18:
P2_2 = v; return;
case 19:
P2_3 = v; return;
case 20:
P2_4 = v; return;
case 21:
P2_5 = v; return;
case 22:
P2_6 = v; return;
case 23:
P2_7 = v; return;
case 24:
P0_0 = v; return;
case 25:
P0_1 = v; return;
case 26:
P0_2 = v; return;
case 27:
P0_3 = v; return;
case 28:
P0_4 = v; return;
case 29:
P0_5 = v; return;
case 30:
P0_6 = v; return;
case 31:
P0_7 = v; return;
}
}
/*--------------------------------------*/
void Timer0()interrupt 1
{
char i;
TF0=0;
TR0=0; //stop ngat
for (i=0 ; i<NumPort ; i++)
if (chuki <= PWM[i]) SetLed(i,1);
else SetLed(i,0);
if (++chuki == 100) chuki=0;
TR0=1; //tiep tuc ngat
}
void delay(unsigned int ms)
{
unsigned int i, j;
for(i=0 ; i<ms ; i++)
for(j=0 ; j<120 ; j++) {}
}
void ResetPWM()
{
unsigned char i;
for(i=0 ; i<NumPort ; i++) PWM[i]=0;
}
main()
{
EA=0;
TMOD=0x02; //timer 0: che do 2: 8 bit tu dong nap lai
TH0 = 156;
TL0 = 156;
ET0=1;
EA=1;
TR0=1;
while (1)
{
delay(17);
ResetPWM();
PWM[0]=100;//1
delay(17);
ResetPWM();
PWM[0]=51;PWM[1]=100;//2
delay(17);
ResetPWM();
PWM[0]=37;PWM[1]=52;PWM[2]=100;//3
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=37;PWM[2]=53;PWM[3]=100;//4
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=5;PWM[2]=36;PWM[3]=52;PWM[4]=100;//5
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=5;PWM[2]=5;PWM[3]=36;PWM[4]=52;PWM[5]=100;//6
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=5;PWM[2]=5;PWM[3]=5;PWM[4]=36;PWM[5]=52;PWM[6]=100;//7
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=5;PWM[2]=5;PWM[3]=5;PWM[4]=5;PWM[5]=36;PWM[6]=52;PWM[7]=100;//8
delay(17);
ResetPWM();
//9
delay(17);
ResetPWM();
//10
delay(17);
ResetPWM();
//11
}
}
minh thử thì nó bị thế này: mình diều khiển led 1 sáng 50%.khi nạp vào, chạy thì thấy led 1 sáng 50% nhưng 7 led còn lại chớp tắt liên tục. mình thử các kiểu thi thấy led nào không bật sáng đều bị chớp tắt như vậy.
đây là đoạn code mình lấy ra từ chương trình
#include<regx51.h>
char NumPort=8;
char PWM[32];
char chuki=0;
void SetLed(char i, char v)
{
switch (i)
{
case 0:
P1_0 = v; return;
case 1:
P1_1 = v; return;
case 2:
P1_2 = v; return;
case 3:
P1_3 = v; return;
case 4:
P1_4 = v; return;
case 5:
P1_5 = v; return;
case 6:
P1_6 = v; return;
case 7:
P1_7 = v; return;
case 8:
P3_0 = v; return;
case 9:
P3_1 = v; return;
case 10:
P3_2 = v; return;
case 11:
P3_3 = v; return;
case 12:
P3_4 = v; return;
case 13:
P3_5 = v; return;
case 14:
P3_6 = v; return;
case 15:
P3_7 = v; return;
case 16:
P2_0 = v; return;
case 17:
P2_1 = v; return;
case 18:
P2_2 = v; return;
case 19:
P2_3 = v; return;
case 20:
P2_4 = v; return;
case 21:
P2_5 = v; return;
case 22:
P2_6 = v; return;
case 23:
P2_7 = v; return;
case 24:
P0_0 = v; return;
case 25:
P0_1 = v; return;
case 26:
P0_2 = v; return;
case 27:
P0_3 = v; return;
case 28:
P0_4 = v; return;
case 29:
P0_5 = v; return;
case 30:
P0_6 = v; return;
case 31:
P0_7 = v; return;
}
}
/*--------------------------------------*/
void Timer0()interrupt 1
{
char i;
TF0=0;
TR0=0; //stop ngat
for (i=0 ; i<NumPort ; i++)
if (chuki <= PWM[i]) SetLed(i,1);
else SetLed(i,0);
if (++chuki == 100) chuki=0;
TR0=1; //tiep tuc ngat
}
void delay(unsigned int ms)
{
unsigned int i, j;
for(i=0 ; i<ms ; i++)
for(j=0 ; j<120 ; j++) {}
}
void ResetPWM()
{
unsigned char i;
for(i=0 ; i<NumPort ; i++) PWM[i]=0;
}
main()
{
EA=0;
TMOD=0x02; //timer 0: che do 2: 8 bit tu dong nap lai
TH0 = 156;
TL0 = 156;
ET0=1;
EA=1;
TR0=1;
while (1)
{
delay(17);
ResetPWM();
PWM[0]=100;//1
delay(17);
ResetPWM();
PWM[0]=51;PWM[1]=100;//2
delay(17);
ResetPWM();
PWM[0]=37;PWM[1]=52;PWM[2]=100;//3
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=37;PWM[2]=53;PWM[3]=100;//4
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=5;PWM[2]=36;PWM[3]=52;PWM[4]=100;//5
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=5;PWM[2]=5;PWM[3]=36;PWM[4]=52;PWM[5]=100;//6
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=5;PWM[2]=5;PWM[3]=5;PWM[4]=36;PWM[5]=52;PWM[6]=100;//7
delay(17);
ResetPWM();
PWM[0]=5;PWM[1]=5;PWM[2]=5;PWM[3]=5;PWM[4]=5;PWM[5]=36;PWM[6]=52;PWM[7]=100;//8
delay(17);
ResetPWM();
//9
delay(17);
ResetPWM();
//10
delay(17);
ResetPWM();
//11
}
}
Comment