micropython-samples/DS3231/ds3231_pb.py

126 wiersze
5.0 KiB
Python
Czysty Zwykły widok Historia

2016-01-06 09:39:06 +00:00
# Pyboard driver for DS3231 precison real time clock.
# Adapted from WiPy driver at https://github.com/scudderfish/uDS3231
# Includes routine to calibrate the Pyboard's RTC from the DS3231
# delta method now operates to 1mS precision
2016-01-06 09:39:06 +00:00
# Adapted by Peter Hinch, Jan 2016
import utime, pyb
DS3231_I2C_ADDR = 104
class DS3231Exception(OSError):
pass
rtc = pyb.RTC()
def now(): # Return the current time from the RTC in secs and millisecs from year 2000
secs = utime.time()
2016-01-06 10:45:20 +00:00
ms = 1000 * (255 -rtc.datetime()[7]) >> 8
2016-01-06 09:39:06 +00:00
if ms < 50: # Might have just rolled over
secs = utime.time()
return secs, ms
# Driver for DS3231 accurate RTC module (+- 1 min/yr) needs adapting for Pyboard
# source https://github.com/scudderfish/uDS3231
def bcd2dec(bcd):
2016-01-06 10:45:20 +00:00
return (((bcd & 0xf0) >> 4) * 10 + (bcd & 0x0f))
2016-01-06 09:39:06 +00:00
def dec2bcd(dec):
tens, units = divmod(dec, 10)
return (tens << 4) + units
2016-01-06 09:39:06 +00:00
class DS3231:
def __init__(self, side = 'X'):
side = side.lower()
if side == 'x':
bus = 1
elif side == 'y':
bus = 2
else:
raise ValueError('Side must be "X" or "Y"')
self.ds3231 = pyb.I2C(bus, mode=pyb.I2C.MASTER, baudrate=400000)
if DS3231_I2C_ADDR not in self.ds3231.scan():
raise DS3231Exception("DS3231 not found on I2C bus at %d" % DS3231_I2C_ADDR)
def get_time(self, set_rtc = False):
2016-01-06 10:45:20 +00:00
if set_rtc:
data = self.await_transition() # For accuracy set RTC immediately after a seconds transition
2016-01-06 10:45:20 +00:00
else:
data = self.ds3231.mem_read(7, DS3231_I2C_ADDR, 0) # don't wait
ss = bcd2dec(data[0])
mm = bcd2dec(data[1])
2016-01-06 09:39:06 +00:00
if data[2] & 0x40:
2016-01-06 10:45:20 +00:00
hh = bcd2dec(data[2] & 0x1f)
2016-01-06 09:39:06 +00:00
if data[2] & 0x20:
hh += 12
else:
hh = bcd2dec(data[2])
wday = data[3]
DD = bcd2dec(data[4])
MM = bcd2dec(data[5] & 0x1f)
YY = bcd2dec(data[6])
if data[5] & 0x80:
YY += 2000
else:
YY += 1900
if set_rtc:
rtc.datetime((YY, MM, DD, wday, hh, mm, ss, 0))
return (YY, MM, DD, hh, mm, ss, wday -1, 0) # Time from DS3231 in time.time() format (less yday)
def save_time(self):
(YY, MM, DD, wday, hh, mm, ss, subsecs) = rtc.datetime()
self.ds3231.mem_write(dec2bcd(ss), DS3231_I2C_ADDR, 0)
self.ds3231.mem_write(dec2bcd(mm), DS3231_I2C_ADDR, 1)
self.ds3231.mem_write(dec2bcd(hh), DS3231_I2C_ADDR, 2) # Sets to 24hr mode
self.ds3231.mem_write(dec2bcd(wday), DS3231_I2C_ADDR, 3) # 1 == Monday, 7 == Sunday
self.ds3231.mem_write(dec2bcd(DD), DS3231_I2C_ADDR, 4)
if YY >= 2000:
self.ds3231.mem_write(dec2bcd(MM) | 0b10000000, DS3231_I2C_ADDR, 5)
self.ds3231.mem_write(dec2bcd(YY-2000), DS3231_I2C_ADDR, 6)
else:
self.ds3231.mem_write(dec2bcd(MM), DS3231_I2C_ADDR, 5)
self.ds3231.mem_write(dec2bcd(YY-1900), DS3231_I2C_ADDR, 6)
def delta(self): # Return no. of mS RTC leads DS3231
self.await_transition()
rtc_time = now()
rtc_ms = rtc_time[0] * 1000 + rtc_time[1]
t_ds3231 = utime.mktime(self.get_time()) # To second precision, still in same sec as transition
return rtc_ms - 1000 * t_ds3231
2016-01-06 09:39:06 +00:00
def await_transition(self): # Wait until DS3231 seconds value changes
2016-01-06 09:39:06 +00:00
data = self.ds3231.mem_read(7, DS3231_I2C_ADDR, 0)
2016-01-06 10:45:20 +00:00
ss = data[0]
2016-01-06 09:39:06 +00:00
while ss == data[0]:
data = self.ds3231.mem_read(7, DS3231_I2C_ADDR, 0)
2016-01-06 10:45:20 +00:00
return data
2016-01-06 09:39:06 +00:00
# Get calibration factor for Pyboard RTC. Note that the DS3231 doesn't have millisecond resolution so we
# wait for a seconds transition to emulate it.
# This function returns the required calibration factor for the RTC (approximately the no. of ppm the
# RTC lags the DS3231).
# For accurate results the delay should be at least two minutes. Longer is better.
2016-01-06 09:39:06 +00:00
# Note calibration factor is not saved on power down unless an RTC backup battery is used. An option is
# to store the calibration factor on disk and issue rtc.calibration(factor) on boot.
def getcal(self, minutes=5):
rtc.calibration(0) # Clear existing cal
2016-01-06 09:39:06 +00:00
self.save_time() # Set DS3231 from RTC
self.await_transition()
rtcstart = now()
dsstart = utime.mktime(self.get_time())
pyb.delay(minutes * 60000)
2016-01-06 09:39:06 +00:00
self.await_transition()
rtcend = now()
dsend = utime.mktime(self.get_time())
dsdelta = (dsend - dsstart) *1000
rtcdelta = rtcend[0] * 1000 + rtcend[1] - rtcstart[0] * 1000 - rtcstart[1]
ppm = (1000000* (rtcdelta - dsdelta))/dsdelta
return int(-ppm/0.954)
2016-01-06 09:39:06 +00:00
def calibrate(self, minutes=5):
print('Waiting {} minutes to acquire calibration factor...'.format(minutes))
cal = self.getcal(minutes)
rtc.calibration(cal)
print('Pyboard RTC is calibrated. Factor is {}.'.format(cal))
return cal