Skip to main content

This is caused by the sketch you downloaded being old. In prior releases, the methods called send()send() and receive()receive() were used to send and receive SPI data. These were renamed to be write()write() and read()read(). If you change your code where there are references to Wire.send()Wire.send() and change to Wire.write()Wire.write() and also change Wire.receive()Wire.receive() to Wire.read()Wire.read(), you should find that your applications compile and run correctly.

This is caused by the sketch you downloaded being old. In prior releases, the methods called send() and receive() were used to send and receive SPI data. These were renamed to be write() and read(). If you change your code where there are references to Wire.send() and change to Wire.write() and also change Wire.receive() to Wire.read(), you should find that your applications compile and run correctly.

This is caused by the sketch you downloaded being old. In prior releases, the methods called send() and receive() were used to send and receive SPI data. These were renamed to be write() and read(). If you change your code where there are references to Wire.send() and change to Wire.write() and also change Wire.receive() to Wire.read(), you should find that your applications compile and run correctly.

edited body
Source Link
Gerben
  • 11.3k
  • 3
  • 22
  • 34

This is caused by the sketch you downloaded being old. In prior releases, the methods called send() and receive() were used to send and receive SPI data. These were renamed to be write() and read(). If you change your code where there are references to Wire.send() and change to Wire.write() and also change Wire.receive() to Wire.read(), you should finefind that your applications compile and run correctly.

This is caused by the sketch you downloaded being old. In prior releases, the methods called send() and receive() were used to send and receive SPI data. These were renamed to be write() and read(). If you change your code where there are references to Wire.send() and change to Wire.write() and also change Wire.receive() to Wire.read(), you should fine that your applications compile and run correctly.

This is caused by the sketch you downloaded being old. In prior releases, the methods called send() and receive() were used to send and receive SPI data. These were renamed to be write() and read(). If you change your code where there are references to Wire.send() and change to Wire.write() and also change Wire.receive() to Wire.read(), you should find that your applications compile and run correctly.

Source Link
Kolban
  • 286
  • 1
  • 8

This is caused by the sketch you downloaded being old. In prior releases, the methods called send() and receive() were used to send and receive SPI data. These were renamed to be write() and read(). If you change your code where there are references to Wire.send() and change to Wire.write() and also change Wire.receive() to Wire.read(), you should fine that your applications compile and run correctly.