This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/Devices/Control/Firmware/lib/Communicator/I2CCommunicator.cpp

17 lines
No EOL
348 B
C++

#include <I2CCommunicator.h>
#include <Wire.h>
I2CCommunicator::I2CCommunicator(int slaveAddr, __SIZE_TYPE__ bufferSize) : Communicator(bufferSize)
{
Wire.begin(slaveAddr);
//Wire.onReceive(receiveEvent);
}
void I2CCommunicator::sendMessage(int *values)
{
}
void I2CCommunicator::sendMessage(char *message)
{
Wire.println(message);
}