#include #define LED_PORT PORTB0 int main(void) { // set pin to output DDRB |= (_BV(LED_PORT)); // say to pull high the pin PORTB |= (_BV(LED_PORT)); while (1) ; }