This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

10 lines
151 B
C
Raw Normal View History

#include "the50.h"
void the50_led_on() {
DDRB |= (1 << 7); PORTB &= ~(1 << 7);
}
void the50_led_off() {
DDRB &= ~(1 << 7); PORTB &= ~(1 << 7);
}