#ifndef __LED_HPP #define __LED_HPP // TODO : Change Cmake to include "pin.hpp" #include "../../bsl/csl/interfaces/pin.hpp" class Led { public: Led(Pin& pin); ~Led(); void on(); void off(); void toggle(); private: Pin& pin; }; #endif /* __LED_HPP */