Closed

Description
It seems necessary to add a new method to the Wire library to avoid buffer limitation.
We could create a method which pass directly a buffer of data to send directly to the i2c core without to use the write()
method several time:
uint8_t write(uint8_t *buffer, uint16_t size);
shouldn't call write(data[i])
but save and pass the pointer to endTransmission()
.