clean up
This commit is contained in:
parent
4fa8c52157
commit
6515ff4c97
48
blink/main.c
48
blink/main.c
|
@ -1,34 +1,32 @@
|
|||
#define F_CPU 16000000UL
|
||||
#define __AVR_ATmega328P__
|
||||
#include <avr/io.h>
|
||||
#include <util/delay.h>
|
||||
|
||||
int main(void) {
|
||||
DDRB = 0xff;
|
||||
|
||||
int main(void)
|
||||
{
|
||||
DDRB = 0xff;
|
||||
while (1) {
|
||||
// green
|
||||
PORTB |= (1 << PORTB5);
|
||||
_delay_ms(500);
|
||||
PORTB &= ~(1 << PORTB5);
|
||||
|
||||
while (1)
|
||||
{
|
||||
// green
|
||||
PORTB |= (1<<PORTB5);
|
||||
_delay_ms(500);
|
||||
PORTB &= ~(1<<PORTB5);
|
||||
// yellow
|
||||
PORTB |= (1 << PORTB4);
|
||||
_delay_ms(500);
|
||||
PORTB &= ~(1 << PORTB4);
|
||||
|
||||
// yellow
|
||||
PORTB |= (1<<PORTB4);
|
||||
_delay_ms(500);
|
||||
PORTB &= ~(1<<PORTB4);
|
||||
// red
|
||||
PORTB |= (1 << PORTB3);
|
||||
_delay_ms(500);
|
||||
PORTB &= ~(1 << PORTB3);
|
||||
|
||||
// red
|
||||
PORTB |= (1<<PORTB3);
|
||||
_delay_ms(500);
|
||||
PORTB &= ~(1<<PORTB3);
|
||||
|
||||
// red and yellow
|
||||
PORTB |= (1<<PORTB3);
|
||||
PORTB |= (1<<PORTB4);
|
||||
_delay_ms(500);
|
||||
PORTB &= ~(1<<PORTB3);
|
||||
PORTB &= ~(1<<PORTB4);
|
||||
}
|
||||
// red and yellow
|
||||
PORTB |= (1 << PORTB3);
|
||||
PORTB |= (1 << PORTB4);
|
||||
_delay_ms(500);
|
||||
PORTB &= ~(1 << PORTB3);
|
||||
PORTB &= ~(1 << PORTB4);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue