«   2024/12   »
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
Tags
more
Archives
Today
Total
관리 메뉴

ITGenerations

[avr]led 배열을이용하여 LED순차적으로 켠다 본문

Univ/AVR atmega128

[avr]led 배열을이용하여 LED순차적으로 켠다

ITGenerations 2017. 12. 8. 20:53

LED 3개를 배열을 이용해서 순차적으로 실행.


//source3

//led 배열을이용하여 LED순차적으로 켠다

/*

#include <avr/io.h>

void msec_delay(int n);

unsigned char pattern[5]

={0xFE, 0xFD, 0xFB, 0xF7,0xF5};


int main()

{

int i=0;

DDRA=0xFF;

while(1)

{

msec_delay(500);

if(++i==5)i=0;

PORTA=pattern[i];

}

}


void msec_delay(int n)

{

 int i;

 for(;n>0; n--)

 {

for(i=0; i<2000; i++)

{

asm("nop"::);asm("nop"::);

}

 }

}

*/