#include "led.h" #include void led(uint8_t on) { if (on) { LED_PORT |= (1 << LED_PIN); } else { LED_PORT &= ~(1 << LED_PIN); } }