saveBytes() Input/Output Files Application byte[] nums = { 0, 34, 5, 127, 52}; // now write the bytes to a file saveBytes("numbers.txt", nums); Opposite of loadBytes(), will write an entire array of bytes to a file. This file is saved to the sketch's folder, which is opened by selecting "Show sketch folder" from the "Sketch" menu. saveBytes(filename, bytes) name of file to write to array of bytes to be written None loadStrings() loadBytes() saveStrings() 1.0 Function Core Extended