#include "Output.h" Output::Output(uint8_t pin) { this->pin = pin; state = 0; isEnabled = false; } void Output::turnOn() {} void Output::turnOff() {}