Browse Source

Architecture added, spelling fixes

master
waldluis 1 year ago
parent
commit
d3ee161444

BIN
documentation/Kommunikation.pdf View File


+ 1
- 1
software/roboter/raspy/functions.py View File

clients.publish(Topics["ROBOT_DATA_POSITION"], json.dumps(position, indent=4)) clients.publish(Topics["ROBOT_DATA_POSITION"], json.dumps(position, indent=4))




def get_BatteryStatus(clients: mqtt.Client, userdata, message: mqtt.MQTTMessage):
def get_batteryStatus(clients: mqtt.Client, userdata, message: mqtt.MQTTMessage):
""" """
Callback function for battery status request Callback function for battery status request
Function to read battery status from ev3 and send via MQTT Function to read battery status from ev3 and send via MQTT

+ 2
- 2
software/roboter/raspy/raspy_sensors.py View File

#TODO - take picture function #TODO - take picture function
def takePicture(self): def takePicture(self):
""" """
Take picture and return image
Take picture and return picture
Returns: Returns:
_type_: _description_ _type_: _description_
""" """
return self.image
return self.picture
#TODO - read position with sensor #TODO - read position with sensor
def readPosition(self): def readPosition(self):

Loading…
Cancel
Save