Project

General

Profile

Statistics
| Branch: | Revision:

root / scout_avr / bom / blinky.c @ d88f80e5

History | View | Annotate | Download (152 Bytes)

1
#include <avr/io.h>
2
#include <util/delay.h>
3

    
4
int main() {
5
  DDRB |= _BV(PB4);
6
  while (1) {
7
    PINB |= _BV(PB4);
8
    _delay_ms(500);
9
  }
10
  return 0;
11
}