#include #include I2CCommunicator::I2CCommunicator(TwoWire &w_out, int slaveAddr, int timeout) : StreamCommunicator(w_out) { w_out.begin(); w_out.setTimeout(timeout); this->slaveAddr = slaveAddr; } void I2CCommunicator::sendMessage(const char message[]) { TwoWire *foo = static_cast(&stream); foo->beginTransmission(slaveAddr); StreamCommunicator::sendMessage(message); foo->endTransmission(slaveAddr); }