From e5d4c820d684aa302cbc51da8828bf8bc268e666 Mon Sep 17 00:00:00 2001 From: visocicaguy Date: Thu, 9 Jun 2016 21:56:26 +0200 Subject: [PATCH] set both start and stop pumping levels by default to full --- controller/config/copy__init__.py.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller/config/copy__init__.py.example b/controller/config/copy__init__.py.example index 453bf67..52ec8d4 100644 --- a/controller/config/copy__init__.py.example +++ b/controller/config/copy__init__.py.example @@ -10,8 +10,8 @@ GPIO_PIN_TANKLEVEL4 = 26 # BCM GPIO_PIN_TANKFULL = 20 # BCM GPIO_PIN_OUT_VALVE = 21 # BCM GPIO_PIN_IN_VALVE = 18 # BCM -START_PUMPING_AT = 'TANKLEVEL4' -STOP_PUMPING_AT = 'TANKFULL' +START_PUMPING_AT = 'TANKFULL' # start pumping when this level = 0 +STOP_PUMPING_AT = 'TANKFULL' # stop pumping when this level = 1 API_BASE_URL = 'http://agrar.zoblak.com/api/v1.0' CONTROLLER_ID = '120' # every controller must have a different one STATE_FILE = '/var/run/controller_state'