summaryrefslogtreecommitdiff
path: root/keyboard/keyboard.c
blob: dbba98118e594aba4ef054b864acff9ca343521b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <avr/eeprom.h>
#include <avr/io.h>
#define F_CPU 16500000L  // 16.5 MHZ
#include <util/delay.h>

int main() {
	DDRB |= _BV(DDB1);
	while (1) {
		PORTB ^= _BV(PB1);
		_delay_ms(100);
		PORTB ^= _BV(PB1);
		_delay_ms(900);
	}
}