Skip to content

Commit

Permalink
reduce delay to write
Browse files Browse the repository at this point in the history
  • Loading branch information
sweemeng committed May 3, 2011
1 parent 4922bc5 commit 4337473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/storyboard/WordStorage.cpp
Expand Up @@ -18,7 +18,7 @@ void WordStorage::write(unsigned int eeaddress,int data){
Wire.send((int)(eeaddress & 0xFF)); // LSB Wire.send((int)(eeaddress & 0xFF)); // LSB
Wire.send(rdata); Wire.send(rdata);
Wire.endTransmission(); Wire.endTransmission();
delay(100); delay(20);
} }


int WordStorage::read_int(unsigned int eeaddress){ int WordStorage::read_int(unsigned int eeaddress){
Expand Down

0 comments on commit 4337473

Please sign in to comment.