You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The page for SD.write() https://www.arduino.cc/en/Reference/FileWrite
correctly points out that SD.write() can write any number of bytes at once, and gives the syntax as:
file.write(data)
file.write(buf, len)
I proved with a sketch in Arduino 1.0.6 that SD.read() can also read any number of bytes, so it's page should explain this and show the syntax:
file.read(data)
file.read(buf, len)