inspektors/base_station/include/led.h

12 lines
187 B
C
Raw Normal View History

#ifndef LED_H
#define LED_H
#define LED_DDR DDRD
#define LED_PORT PORTD
#define LED_GREEN_BIT PD3
#define LED_BLUE_BIT PD4
void init_leds(void);
#endif /* LED_H */