Các bạn nhìn hình ảnh xem mình kết nối sai ở đâu không???
Vì sao cái led của mình lại không sáng?
http://ns5.upanh.com/b4.s30.d2/bb480...115565.dot.jpg
Còn đây là code C viết trên chương trình CodevisionAVR của mình:
#include <mega16.h>
#include <delay.h>
// Declare your global variables here
void main(void)
{
DDRA=0x00;
DDRD=0xFF;
PORTD.0=0;
while (1)
{
// Place your code here
if (PINA==0)
{
PORTD.0=1;
delay_ms(500);
}
else
PORTD.0=0;
}
}
Vì sao cái led của mình lại không sáng?
http://ns5.upanh.com/b4.s30.d2/bb480...115565.dot.jpg
Còn đây là code C viết trên chương trình CodevisionAVR của mình:
#include <mega16.h>
#include <delay.h>
// Declare your global variables here
void main(void)
{
DDRA=0x00;
DDRD=0xFF;
PORTD.0=0;
while (1)
{
// Place your code here
if (PINA==0)
{
PORTD.0=1;
delay_ms(500);
}
else
PORTD.0=0;
}
}
Comment