>>> ds.Date()
[2000, 1, 1]
>>> ds.DateTime([2019,3,11,1,12,58,8])
>>> ds.Date()
[2019, 3, 11]
>>> ds.ALARM(12, 20, 10, ds.PER_DISABLE)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'DS3231' object has no attribute 'PER_DISABLE'
>>> ds.ALARM(ds,12, 20, 10, ds.PER_DISABLE)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'DS3231' object has no attribute 'PER_DISABLE'
>>> ds.ALARM(ds, 12, 20, 10, ds.PER_DISABLE)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'DS3231' object has no attribute 'PER_DISABLE'
Getting following error.