From 8608f08fd90b53ae742a177502aca478e6df098a Mon Sep 17 00:00:00 2001 From: avollkopf <43980694+avollkopf@users.noreply.github.com> Date: Sun, 2 May 2021 10:03:25 +0200 Subject: [PATCH] Update __init__.py Updated property description. No functional change --- cbpi/extension/onewire/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbpi/extension/onewire/__init__.py b/cbpi/extension/onewire/__init__.py index e1d3641..6d1e604 100644 --- a/cbpi/extension/onewire/__init__.py +++ b/cbpi/extension/onewire/__init__.py @@ -52,7 +52,7 @@ class ReadThread (threading.Thread): time.sleep(1) @parameters([Property.Select(label="Sensor", options=getSensors()), - Property.Number(label="offset",configurable = True, default_value = 0, description="Offset for the PT Sensor (Default is 0)"), + Property.Number(label="offset",configurable = True, default_value = 0, description="Sensor Offset (Default is 0)"), Property.Select(label="Interval", options=[1,5,10,30,60], description="Interval in Seconds")]) class OneWire(CBPiSensor):