the50.c 151 B

123456789
  1. #include "the50.h"
  2. void the50_led_on() {
  3. DDRB |= (1 << 7); PORTB &= ~(1 << 7);
  4. }
  5. void the50_led_off() {
  6. DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
  7. }