Merge pull request #47 from Prash3r/master

BasicController manages state of item.instance.running
This commit is contained in:
Manuel83 2021-03-11 22:23:44 +01:00 committed by GitHub
commit 9c3a1f564b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 12 deletions

View file

@ -76,9 +76,9 @@ class BasicController:
async def stop(self, id):
logging.info("{} Stop Id {} ".format(self.name, id))
try:
print("STOP NOW")
item = self.find_by_id(id)
await item.instance.stop()
item.instance.running = False
await self.push_udpate()
except Exception as e:
logging.error("{} Cant stop {} - {}".format(self.name, id, e))
@ -87,7 +87,7 @@ class BasicController:
logging.info("{} Start Id {} ".format(self.name, id))
try:
item = self.find_by_id(id)
if item.instance is not None and item.instance.state is True:
if item.instance is not None and item.instance.running is True:
logging.warning("{} already running {}".format(self.name, id))
return
if item.type is None:
@ -97,6 +97,7 @@ class BasicController:
item.instance = clazz(self.cbpi, item.id, item.props)
await item.instance.start()
item.instance.running = True
item.instance.task = self._loop.create_task(item.instance._run())
logging.info("{} started {}".format(self.name, id))

View file

@ -15,7 +15,7 @@ class CustomSensor(CBPiSensor):
self.value = 0
async def run(self):
while True:
while self.running == True:
self.value = random.randint(10,100)
self.log_data(self.value)

View file

@ -66,7 +66,7 @@ class GPIOActor(CBPiActor):
return self.state
async def run(self):
while True:
while self.running == True:
await asyncio.sleep(1)
@ -105,7 +105,7 @@ class GPIOPWMActor(CBPiActor):
return self.state
async def run(self):
while True:
while self.runnin == True:
await asyncio.sleep(1)

View file

@ -18,7 +18,7 @@ class Hysteresis(CBPiKettleLogic):
# self.get_actor_state()
while True:
while self.running == True:
sensor_value = self.get_sensor_value(self.kettle.sensor).get("value")
target_temp = self.get_kettle_target_temp(self.id)

View file

@ -38,7 +38,7 @@ class MashStep(CBPiStep):
self.timer = Timer(int(self.props.Timer) *60 ,on_update=self.on_timer_update, on_done=self.on_timer_done)
async def run(self):
while True:
while self.running == True:
await asyncio.sleep(1)
sensor_value = self.get_sensor_value(self.props.Sensor)
if sensor_value.get("value") >= int(self.props.Temp) and self.timer.is_running is not True:
@ -83,7 +83,7 @@ class WaitStep(CBPiStep):
self.timer = Timer(int(self.props.Timer) * 60,on_update=self.on_timer_update, on_done=self.on_timer_done)
async def run(self):
while True:
while self.running == True:
await asyncio.sleep(1)
return StepResult.DONE
@ -114,8 +114,7 @@ class ActorStep(CBPiStep):
self.timer = Timer(int(self.props.Timer) *60 ,on_update=self.on_timer_update, on_done=self.on_timer_done)
async def run(self):
while True:
while self.running == True:
await asyncio.sleep(1)
return StepResult.DONE
@ -155,7 +154,7 @@ class BoilStep(CBPiStep):
self.timer.start()
async def run(self):
while True:
while self.running == True:
await asyncio.sleep(1)
sensor_value = self.get_sensor_value(self.props.Sensor)
if sensor_value.get("value") >= int(self.props.Temp) and self.timer.is_running is not True:

View file

@ -77,7 +77,7 @@ class OneWire(CBPiSensor):
pass
async def run(self):
while True:
while self.running == True:
self.value = self.t.value
self.log_data(self.value)