mirror of
https://github.com/Kugelschieber/arduino-c.git
synced 2026-01-18 19:10:25 +00:00
13 lines
178 B
C
13 lines
178 B
C
#include <avr/io.h>
|
|
#include <util/delay.h>
|
|
#include "pins.h"
|
|
|
|
int main(){
|
|
while(1){
|
|
digitalWrite(5, HIGH);
|
|
_delay_ms(1000);
|
|
digitalWrite(5, LOW);
|
|
_delay_ms(1000);
|
|
}
|
|
}
|