nibcq.calibration.Entry
- class nibcq.calibration.Entry
Represents a single calibration entry in a calibration diary.
Contains the timestamp and temperature information for when a calibration was performed on a measurement device. Used to track calibration history and determine when recalibration might be needed.
- timestamp
When the calibration was performed
- Type:
datetime
Examples
>>> entry = Entry(datetime.now(), 25.5) >>> print(entry) CalibrationEntry(timestamp=2025-01-01 12:00:00, temperature=25.5)