#include "led.hpp" void Pin::on() { pin.write(true); } void Pin::off() { pin.write(false); } void Pin::toggle() { pin.toggle(); }