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 4e90dca commit 82d2505Copy full SHA for 82d2505
adafruit_ds3231.py
@@ -97,12 +97,6 @@ class DS3231:
97
def __init__(self, i2c):
98
self.i2c_device = I2CDevice(i2c, 0x68)
99
100
- # Try and verify this is the RTC we expect by checking change in secs
101
- check = self.datetime_register.tm_sec
102
- time.sleep(1.1)
103
- if self.datetime_register.tm_sec == check:
104
- raise ValueError("Unable to find DS3231 at i2c address 0x68.")
105
-
106
@property
107
def datetime(self):
108
"""Gets the current date and time or sets the current date and time
0 commit comments