8 lines
205 B
C++
8 lines
205 B
C++
#include <StreamCommunicator.h>
|
|
#include <Wire.h>
|
|
|
|
class I2CCommunicator : public StreamCommunicator
|
|
{
|
|
public:
|
|
I2CCommunicator(TwoWire &w_out, int slaveAddr, int timeout, __SIZE_TYPE__ bufferSize);
|
|
};
|