gate: start reorder
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
This commit is contained in:
0
source/gate/__init__.py
Normal file
0
source/gate/__init__.py
Normal file
45
source/gate/close.py
Normal file
45
source/gate/close.py
Normal file
@@ -0,0 +1,45 @@
|
||||
'''
|
||||
Created on Dec 23, 2016
|
||||
|
||||
@author: klaehn
|
||||
'''
|
||||
import sys
|
||||
import time
|
||||
from datetime import datetime as dt
|
||||
|
||||
from data_buffer import DataBuffer
|
||||
from gate.gate_handler import GateHandler
|
||||
from power_sensor import PowerSensor
|
||||
|
||||
POWER_SENSOR_I2C_BUS = 1
|
||||
POWER_SENSOR_I2C_ADDRESS = 0x40
|
||||
|
||||
CONSECUTIVE_POWER_READS = 1000
|
||||
|
||||
MAX_ENGINE_POWER = {"up":330, "down":280}
|
||||
|
||||
def main(argv):
|
||||
gate_handler = GateHandler()
|
||||
power_sensor = PowerSensor(POWER_SENSOR_I2C_BUS, POWER_SENSOR_I2C_ADDRESS)
|
||||
power_data = DataBuffer(CONSECUTIVE_POWER_READS)
|
||||
gate_handler.close()
|
||||
try:
|
||||
while True:
|
||||
rd = power_sensor.power_mw()
|
||||
power_data.push(rd)
|
||||
average = power_data.average()
|
||||
print str(time.time()) + " " + str(rd)
|
||||
if average != None:
|
||||
if average > MAX_ENGINE_POWER["down"]:
|
||||
gate_handler.stop()
|
||||
# print "Gate successfully closed"
|
||||
return 0
|
||||
|
||||
except KeyboardInterrupt:
|
||||
gate_handler.stop()
|
||||
# print "Closing procedure interrupted."
|
||||
return 1
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main(sys.argv[1:]))
|
24
source/gate/gate_handler.py
Normal file
24
source/gate/gate_handler.py
Normal file
@@ -0,0 +1,24 @@
|
||||
'''
|
||||
Created on Dec 19, 2016
|
||||
|
||||
@author: klaehn
|
||||
'''
|
||||
|
||||
from engine import Engine
|
||||
|
||||
class GateHandler(object):
|
||||
"""Gate handler class"""
|
||||
def __init__(self):
|
||||
self.__engine = Engine(13, 19)
|
||||
|
||||
def open(self):
|
||||
"""Open the gate"""
|
||||
self.__engine.up()
|
||||
|
||||
def close(self):
|
||||
"""Close the gate"""
|
||||
self.__engine.down()
|
||||
|
||||
def stop(self):
|
||||
"""Stop the Engine"""
|
||||
self.__engine.stop()
|
176
source/gate/gate_state.py
Normal file
176
source/gate/gate_state.py
Normal file
@@ -0,0 +1,176 @@
|
||||
'''
|
||||
Created on Dec 19, 2016
|
||||
|
||||
@author: klaehn
|
||||
'''
|
||||
from time import time, sleep
|
||||
from communiate import Mqtt
|
||||
from data_buffer import DataBuffer
|
||||
from light_sensor.light_sensor import light_sensor
|
||||
from gate.gate_handler import GateHandler
|
||||
from power_sensor import PowerSensor
|
||||
|
||||
STATE_INIT = "init"
|
||||
STATE_OPENED = "open"
|
||||
STATE_CLOSED = "close"
|
||||
STATE_OPENING = "opening"
|
||||
STATE_CLOSING = "closing"
|
||||
STATE_ERROR = "error"
|
||||
|
||||
LIGHT_READ_DELAY_S = 30
|
||||
LIGHT_CONSECUTIVE_READS = 10
|
||||
LIGHT_LX_THRESHOLD = {"open":10, "close":5}
|
||||
|
||||
MQTT_HOST = "proxy"
|
||||
MQTT_TOPIC = "outdoor/chickenhouse/gate"
|
||||
|
||||
LIGHT_SENSOR_I2C_BUS = 1
|
||||
LIGHT_SENSOR_I2C_ADDRESS = 0x23
|
||||
|
||||
POWER_SENSOR_I2C_BUS = 1
|
||||
POWER_SENSOR_I2C_ADDRESS = 0x40
|
||||
POWER_CONSECUTIVE_READS = 1000
|
||||
|
||||
MAX_ENGINE_POWER = {"up":330, "down":280}
|
||||
MAX_GATE_RUNTIME = {"open":300, "close":300}
|
||||
MIN_GATE_RUNTIME = {"open":10, "close":10}
|
||||
|
||||
|
||||
class GateState(object):
|
||||
def __init__(self):
|
||||
self.__state_handler = {STATE_INIT:self.__init_handler, \
|
||||
STATE_OPENED:self.__opened_handler, \
|
||||
STATE_CLOSED:self.__closed_handler, \
|
||||
STATE_OPENING:self.__opening_handler, \
|
||||
STATE_CLOSING:self.__closing_handler, \
|
||||
STATE_ERROR:self.__error_handler}
|
||||
self.__next_state = "init"
|
||||
self.__last_state = "error"
|
||||
|
||||
self.__light_sensor = light_sensor(LIGHT_SENSOR_I2C_BUS, \
|
||||
LIGHT_SENSOR_I2C_ADDRESS)
|
||||
self.__light_data = DataBuffer(LIGHT_CONSECUTIVE_READS)
|
||||
self.__comserver = Mqtt(MQTT_HOST)
|
||||
self.__gate_handler = GateHandler()
|
||||
self.__power_sensor = PowerSensor(POWER_SENSOR_I2C_BUS, \
|
||||
POWER_SENSOR_I2C_ADDRESS)
|
||||
self.__power_data = DataBuffer(POWER_CONSECUTIVE_READS)
|
||||
self.__gate_move_timeout = 0
|
||||
self.__light_read_timeout = 0
|
||||
self.__error_count = 0
|
||||
self.__runtime_open = 0
|
||||
self.__runtime_close = 0
|
||||
|
||||
def poll(self):
|
||||
current_time = time()
|
||||
if current_time >= self.__light_read_timeout:
|
||||
self.__light_read_timeout = current_time + LIGHT_READ_DELAY_S
|
||||
self.__light_data.push(self.__light_sensor.read())
|
||||
self.__state_handler[self.__next_state](self.__light_data.average())
|
||||
|
||||
def __update_state(self, new_state):
|
||||
self.__last_state = self.__next_state
|
||||
self.__next_state = new_state
|
||||
|
||||
|
||||
def __is_transition(self):
|
||||
if self.__last_state != self.__next_state:
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
def __init_handler(self, light_avg):
|
||||
'''
|
||||
In init we don't know anything neither about gate state nor about
|
||||
light. So first we try to reach STATE_CLOSED.
|
||||
'''
|
||||
#pylint: disable=unused-argument
|
||||
self.__comserver.connect()
|
||||
self.__comserver.transmit(MQTT_TOPIC, str(time()) + \
|
||||
" gate gard initiated")
|
||||
self.__comserver.disconnect()
|
||||
self.__update_state(STATE_OPENING)
|
||||
|
||||
|
||||
def __opened_handler(self, light_avg):
|
||||
next_state = self.__next_state
|
||||
if self.__is_transition():
|
||||
self.__gate_handler.close()
|
||||
sleep(5)
|
||||
self.__gate_handler.stop()
|
||||
self.__comserver.transmit(MQTT_TOPIC, str(time()) + " Opened " + \
|
||||
str(self.__power_data.average()) + " mW")
|
||||
self.__power_data.clear()
|
||||
|
||||
if light_avg <= LIGHT_LX_THRESHOLD["close"]:
|
||||
next_state = STATE_CLOSING
|
||||
|
||||
self.__update_state(next_state)
|
||||
|
||||
|
||||
def __closed_handler(self, light_avg):
|
||||
next_state = self.__next_state
|
||||
if self.__is_transition():
|
||||
self.__gate_handler.open()
|
||||
sleep(5)
|
||||
self.__gate_handler.stop()
|
||||
self.__comserver.transmit(MQTT_TOPIC, str(time()) + " Closed " + \
|
||||
str(self.__power_data.average()) + " mW")
|
||||
self.__power_data.clear()
|
||||
|
||||
if light_avg > LIGHT_LX_THRESHOLD["open"]:
|
||||
next_state = STATE_OPENING
|
||||
|
||||
self.__update_state(next_state)
|
||||
|
||||
|
||||
def __opening_handler(self, light_avg):
|
||||
next_state = self.__next_state
|
||||
if self.__is_transition():
|
||||
self.__runtime_open = time() + MIN_GATE_RUNTIME["open"]
|
||||
self.__gate_handler.open()
|
||||
self.__gate_move_timeout = time() + MAX_GATE_RUNTIME["open"]
|
||||
self.__comserver.transmit(MQTT_TOPIC, str(time()) + \
|
||||
" Opening " + str(light_avg) + " lx")
|
||||
|
||||
if time() > self.__gate_move_timeout:
|
||||
next_state = STATE_ERROR
|
||||
else:
|
||||
self.__power_data.push(self.__power_sensor.power_mw())
|
||||
current_avg = self.__power_data.average()
|
||||
if current_avg != None:
|
||||
if current_avg > MAX_ENGINE_POWER["up"]:
|
||||
if time() > self.__runtime_open:
|
||||
next_state = STATE_OPENED
|
||||
|
||||
self.__update_state(next_state)
|
||||
|
||||
def __closing_handler(self, light_avg):
|
||||
next_state = self.__next_state
|
||||
if self.__is_transition():
|
||||
self.__runtime_close = time() + MIN_GATE_RUNTIME["close"]
|
||||
self.__gate_handler.close()
|
||||
self.__gate_move_timeout = time() + MAX_GATE_RUNTIME["close"]
|
||||
self.__comserver.transmit(MQTT_TOPIC, str(time()) + \
|
||||
" Closing " + str(light_avg) + " lx")
|
||||
|
||||
if time() > self.__gate_move_timeout:
|
||||
next_state = STATE_ERROR
|
||||
else:
|
||||
self.__power_data.push(self.__power_sensor.power_mw())
|
||||
current_avg = self.__power_data.average()
|
||||
if current_avg != None:
|
||||
if current_avg > MAX_ENGINE_POWER["down"]:
|
||||
if time() > self.__runtime_close:
|
||||
next_state = STATE_CLOSED
|
||||
|
||||
self.__update_state(next_state)
|
||||
|
||||
|
||||
def __error_handler(self, light_avg):
|
||||
#pylint: disable=unused-argument
|
||||
if self.__is_transition():
|
||||
self.__gate_handler.stop()
|
||||
self.__comserver.transmit(MQTT_TOPIC, str(time()) + \
|
||||
" Error handler!!!")
|
||||
self.__update_state(STATE_INIT)
|
18
source/gate/light.py
Normal file
18
source/gate/light.py
Normal file
@@ -0,0 +1,18 @@
|
||||
'''
|
||||
Created on Dec 24, 2016
|
||||
|
||||
@author: tkl
|
||||
'''
|
||||
import sys
|
||||
import time
|
||||
from light_sensor.light_sensor import light_sensor
|
||||
import mqtt
|
||||
|
||||
def main():
|
||||
conn = mqtt.Mqtt(hostname='proxy')
|
||||
light = light_sensor(1, 0x23)
|
||||
conn.transmit("outdoor/chickenhouse/sensors/light", str(int(time.time())) + " " + \
|
||||
str(light.read()) + " lx")
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
45
source/gate/open.py
Normal file
45
source/gate/open.py
Normal file
@@ -0,0 +1,45 @@
|
||||
'''
|
||||
Created on Dec 23, 2016
|
||||
|
||||
@author: klaehn
|
||||
'''
|
||||
import sys
|
||||
import time
|
||||
from datetime import datetime as dt
|
||||
|
||||
from data_buffer import DataBuffer
|
||||
from gate.gate_handler import GateHandler
|
||||
from power_sensor import PowerSensor
|
||||
|
||||
POWER_SENSOR_I2C_BUS = 1
|
||||
POWER_SENSOR_I2C_ADDRESS = 0x40
|
||||
|
||||
CONSECUTIVE_POWER_READS = 1000
|
||||
|
||||
MAX_ENGINE_POWER = {"up":330, "down":290}
|
||||
|
||||
def main(argv):
|
||||
gate_handler = GateHandler()
|
||||
power_sensor = PowerSensor(POWER_SENSOR_I2C_BUS, POWER_SENSOR_I2C_ADDRESS)
|
||||
power_data = DataBuffer(CONSECUTIVE_POWER_READS)
|
||||
gate_handler.open()
|
||||
try:
|
||||
while True:
|
||||
rd = power_sensor.power_mw()
|
||||
power_data.push(rd)
|
||||
average = power_data.average()
|
||||
print str(time.time()) + " " + str(rd)
|
||||
if average != None:
|
||||
if average > MAX_ENGINE_POWER["up"]:
|
||||
gate_handler.stop()
|
||||
# print "Gate successfully opened"
|
||||
return 0
|
||||
|
||||
except KeyboardInterrupt:
|
||||
gate_handler.stop()
|
||||
print "Closing procedure interrupted."
|
||||
return 1
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main(sys.argv[1:]))
|
Reference in New Issue
Block a user