nibcq.temperature.CenteredRange =============================== .. py:class:: nibcq.temperature.CenteredRange A container what stores a range, defined by a center value, and a ± delta from it. This is used for example to track the current temperature reading along with the acceptable temperature delta for compensation validation. .. attribute:: center A value representing the center of the range. None if the range is not set. :type: float .. attribute:: delta The acceptable deviation from the center value. None if the range is not set. :type: float .. rubric:: Examples >>> param = CenteredRange(25.5, 2.0) >>> print(f"Temperature: {param.center}°C ±{param.delta}°C")