Skip to content

Releases: RobTillaart/I2C_EEPROM

1.9.2 release

25 Nov 07:55
e57418b
Compare
Choose a tag to compare
  • update version to 1.9.2
  • fix #79 parameter

1.9.1 release

26 Oct 18:11
43f4886
Compare
Choose a tag to compare
  • fix #77, updateBlock() returns bytes actually written.
  • minor edits

1.9.0 release

09 Oct 07:39
8cb180d
Compare
Choose a tag to compare
  • Fix #74, memory leak in setBlockVerify()

1.8.5 release

22 Apr 16:38
0de303f
Compare
Choose a tag to compare
  • Fix #72, force requestFrom parameters to use int type

1.8.4 release

21 Apr 08:57
6c3cb30
Compare
Choose a tag to compare
  • Fix #70, increase length internal buffer.
  • add compile time flag EN_AUTO_WRITE_PROTECT (thanks to microfoundry)
  • improve readability: cnt => count addr => address
  • add URL to examples
  • minor edits.

1.8.3 release

28 Mar 09:35
f3e70ff
Compare
Choose a tag to compare
  • Fix #64, compiler warning.
  • add verifyBlock(memoryAddress, buffer, length)
  • add example I2C_eeprom_verifyBlock.ino
  • update GitHub actions
  • update keywords.txt
  • update examples
  • update readme.md

1.8.2 release

02 Jan 15:07
ee4d38a
Compare
Choose a tag to compare
Improved  determineNoWrite, removed static references to Serial (#63)

* Improved  determineNoWrite, now works with larger EEPROMS. tested with AT24C02, AT24C23 and AT24C256
* Added loop exit, updated license and changelog

---------

Co-authored-by: Roeland Kluit <[email protected]>

1.8.1 release

14 Dec 10:56
42cdf1a
Compare
Choose a tag to compare
add determineSizeNoWrite() (#62)

- add **uint32_t determineSizeNoWrite()**, kudos to roelandkluit
- add example
- minor edits

1.8.0 release

25 Nov 12:20
ff21bd6
Compare
Choose a tag to compare
simplify begin() (#60)

- simplify **begin()**, remove setting Wire pins from library.
- add **getAddress()**
- update readme.md
- update examples

1.7.4 release

08 Sep 09:32
e7c5075
Compare
Choose a tag to compare
add WP writeProtect support (#58)

- solve #57 add support for WriteProtectPin
- add writeProtectPin as optional parameter in **begin()**
- add **bool hasWriteProtectPin()**
- add **void allowWrite()**
- add **void preventWrite()**
- add **void setAutoWriteProtect(bool b)**
- add **bool getAutoWriteProtect()**
- optimized **waitEEReady()**
- update keywords.txt
- update readme.md