base-station/Firmware/lib/I2CCommunicator/I2CCommunicator.h

9 lines
205 B
C
Raw Normal View History

2022-04-09 20:07:19 +02:00
#include <StreamCommunicator.h>
#include <Wire.h>
class I2CCommunicator : public StreamCommunicator
{
public:
I2CCommunicator(TwoWire &w_out, int slaveAddr, int timeout, __SIZE_TYPE__ bufferSize);
};