|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- import paho.mqtt.client as mqtt
- import json
- import threading
- import os
- import signal
- import time
- from raspy_sensors import RaspySensors
-
- #region global Varaibles
- #sensors:RaspySensors()
- leftRight = 50
- plantNumber = 0
-
- sensorData = {
- "Air Temperature [°C]" : 0,
- "Air Humidity [%]" : 0,
- "Earth Humidity [%]" : 0,
- "Brightness [Lux]" : 0,
- "Plant ID": 0,
- "Action ID": 0
- }
-
- gpsPosition = {
- "Position": 0,
- "Action ID": 0
- }
-
- batteryStatus = {
- "Battery": 0,
- "Action ID": 0
- }
-
-
- #endregion
-
- #region global functions
-
- def measure_send_data(plantID, actionID):
- '''Measure data for one plant via sensor class and send via MQTT'''
- sensorData = sensors.readSensors()
- sensorData["Plant_ID"] = plantID
- sensorData["Action_ID"] = actionID
- client.publish("Robot/Data/SensorData", json.dumps(sensorData, indent=4))
-
-
- def drive_home():
- '''Function to drive robot back to starting position in thread'''
- thread = threading.Thread(target= os.system(f'sshpass -p maker ssh robot@ev3dev.local python3 /home/robot/Programme/drive_back.py {leftRight}'), daemon=True)
- thread.start()
-
-
- def drive_plant():
- '''Function to drive to plant according to number from MQTT message in thread'''
- print(f"Driving to Plant {plantNumber}")
- os.system(f'sshpass -p maker ssh robot@ev3dev.local python3 /home/robot/Programme/plant_{plantNumber}.py')
- print("Raising Signal")
- signal.raise_signal(signal.SIGUSR1)
-
-
- def init_mqtt():
- '''Initialise MQTT client'''
- mqttBroker = "mqtt.eclipseprojects.io"
- global client
- client = mqtt.Client("Robot")
-
- #Add callbacks
- client.message_callback_add("ROBOT/DATA", send_data_json) #Testing
- client.message_callback_add("ROBOT/ACTION/DRIVE", drive_plant)
- client.message_callback_add("ROBOT/ACTION/GETPOSITION", get_position)
- client.message_callback_add("ROBOT/ACTION/GETBATTERY", get_BatteryStatus)
-
- #Subscribe to topics
- client.subscribe("ROBOT/DATA") #Testing
- client.subscribe("ROBOT/ACTION/DRIVE")
- client.subscribe("ROBOT/Action/GETPOSITION")
- client.subscribe("ROBOT/ACTION/GETBATTERY")
-
- client.connect(mqttBroker)
-
-
- def signal_measure():
- '''Signal function to measure one plant and start driving home'''
- print("Measuring Sensors")
- #measure_send_data()
- print("Driving Home")
- drive_home()
-
- #endregion
-
- #region MQTT callbacks
-
- #Testing
- def send_data_json(client, userdata, message):
- strIn = str(message.payload.decode("UTF-8"))
- dataDict = json.loads(strIn)
- print("Received data: ", json.dumps(dataDict))
-
-
- def drive_plant(clients, userdata, message):
- '''Function to drive to plant according to request'''
-
- print("received drive to plant")
-
- plantNumber = int(message.payload.decode("UTF-8"))
- if plantNumber % 2 == 0:
- leftRight = -50 #rotating left
- else:
- leftRight = 50 #rotating right
-
- thread = threading.Thread(target= drive_plant, daemon=True)
- thread.start()
-
-
- def get_position(clients, userdata, message):
- '''Callback function for GPS position request
- Function to send actual GPS position via MQTT'''
-
- #[ ]TODO handle MQTT message
- gpsPosition["Position"] = sensors.readPosition()
- gpsPosition["Action_ID"] = message
- client.publish("Robot/Data/Position", json.dumps(gpsPosition, indent=4))
-
-
- def get_BatteryStatus(clients, userdata, message):
-
- '''Callback function for battery status request
- Function to read battery status from ev3 and send via MQTT'''
-
- #[ ]TODO handle MQTT message
- batteryStatus["Battery"] = sensors.readBattery()
- batteryStatus["Action ID"] = message
- client.publish("Robot/Data/Battery", json.dumps(batteryStatus, indent=4))
-
- batteryStatus()
-
-
-
- #endregion
-
-
-
- def main():
- init_mqtt()
- print("MQTT initialized")
- signal.signal(signal.SIGUSR1, signal_measure)
- # dataDict = {} #Testing
-
- client.loop_forever()
-
- print("Starting Loop")
- while True:
- pass
-
-
-
-
- if __name__ == "__main__":
- main()
|