def ReadSystemTime(self): rtc = self.GenericReadCommand(constants.READ_SYSTEM_TIME).data return util.ReceiverTimeToTime(struct.unpack('I', rtc)[0])
def meter_time(self): return util.ReceiverTimeToTime(self.data[3])
def ReadRTC(self): rtc = self.GenericReadCommand(constants.READ_RTC).data return util.ReceiverTimeToTime(struct.unpack('I', rtc)[0])
def display_time(self): return util.ReceiverTimeToTime(self.data[4])
def applied (self): return util.ReceiverTimeToTime(self.data[3])
def entered (self): return util.ReceiverTimeToTime(self.data[0])
def insertion_time(self): if self.data[2] == 0xFFFFFFFF: return self.system_time return util.ReceiverTimeToTime(self.data[2])
def system_time(self): return util.ReceiverTimeToTime(self.data[0])