virtual int read();
Reads a byte of data which are sent from master to slave or from slave to master. The master makes requests by using requestFrom().
The byte of data read.
#include <Wire.h> void setup() { Wire.begin(); } void loop() { Wire.requestFrom(0x27,6); while((Wire.available())) { int c = Wire.read(); } }
Wire.h
TwoWire Class