We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dba90f commit c0645afCopy full SHA for c0645af
adafruit_24lc32.py
@@ -223,6 +223,8 @@ class EEPROM_I2C(EEPROM):
223
Default is ``False``.
224
:param wp_pin: (Optional) Physical pin connected to the ``WP`` breakout pin.
225
Must be a ``DigitalInOut`` object.
226
+ :param max_int: (Optional) Maximum # bytes stored in the EEPROM.
227
+ Default is ``_MAX_SIZE_I2C``
228
"""
229
230
# pylint: disable=too-many-arguments
@@ -232,7 +234,7 @@ def __init__(
232
234
address: int = 0x50,
233
235
write_protect: bool = False,
236
wp_pin: Optional[DigitalInOut] = None,
- max_size: in = _MAX_SIZE_I2C
237
+ max_size: int = _MAX_SIZE_I2C
238
) -> None:
239
from adafruit_bus_device.i2c_device import ( # pylint: disable=import-outside-toplevel
240
I2CDevice as i2cdev,
0 commit comments