Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <avr/io.h> //biblioteka odpowiedzialna za wejscie wyjscie
- #include <util/delay.h> // bibilioteka zawierajaca funkcje delay
- int main(){
- DDRA = 0xff; // ustawienie całego interfejsu a jako wyjsciowy. Aby przyjmował dane na wszystkich liniach: DDRA = 0x00;
- for(;;){
- PORTA = 0x01; // zapalenie lampki
- _delay_ms(100); // czekaj 100ms
- PORTA = 0x00; // zgaś lampke
- _delay_ms(100);
- }
- }
Add Comment
Please, Sign In to add comment