Greetings!
I'm reading Simon Monk's book Programming Arduino: Next Steps. In his chapter on the I2C protocol where he uses the Wire.h library, he uses both Wire.send() and Wire.write(). This caused me to wonder what the difference was. When I checked the Wire.h file I only saw the write() method (and only the read() method but not receive()).
I've seen a couple of statements on the web that write() has replaced send(), but nothing "official". Further, the link below from the Arduino site only mentions send() and receive()...
http://playground.arduino.cc/Main/WireLibraryDetailedReference
I'm confused.
Thanks!