arduino-sram icon indicating copy to clipboard operation
arduino-sram copied to clipboard

Arduino library for interfacing with 23K256 and 23LC1024 SRAM chips from Arduino

Results 3 arduino-sram issues
Sort by recently updated
recently updated
newest added

> But be aware this is not the fastest way to do it because of that (setting the address for every byte transfered) 23LC1024 datasheet says that its "SPI-Compatible Bus...

char test [] = "hello, world abcdefghijklmnopqrstuvwxyz"; sram.seek(1); sram.write((byte *) test, sizeof test); // sram.write('x'); char buf[20]; sram.seek(1); sram.readBytes((char *) buf, 20); Serial.println(buf); by the way ,i cant find mothod...

Hi, i get following message...what i wrong ? libraries\sram/sram.h:8:19: warning: character constant too long for its type [enabled by default] ``` ``` Thank you!