|
|
@@ -66,19 +66,6 @@ export class MqttRequestService { |
|
|
|
console.error('Error:', err); |
|
|
|
}); |
|
|
|
|
|
|
|
// this.mqttService.subscribeToTopic("BACKEND/DATA/POSITION").subscribe(data => { |
|
|
|
// if (typeof data !== "object") { |
|
|
|
// const payload = JSON.parse(data) as Position; |
|
|
|
// this.mqttSetDataService.setRobotPosition(payload); |
|
|
|
// } |
|
|
|
// }, err => { |
|
|
|
// this.dialog.open(ErrorDialogComponent, { |
|
|
|
// data: err, |
|
|
|
// width: '400px', |
|
|
|
// }); |
|
|
|
// console.error('Error:', err); |
|
|
|
// }); |
|
|
|
|
|
|
|
this.mqttService.subscribeToTopic("BACKEND/DATA/BATTERY").subscribe(data => { |
|
|
|
if (typeof data !== "object") { |
|
|
|
const payload = JSON.parse(data) as RobotBattery; |
|
|
@@ -119,22 +106,6 @@ export class MqttRequestService { |
|
|
|
console.error('Error:', err); |
|
|
|
}); |
|
|
|
|
|
|
|
// this.mqttService.subscribeToTopic("BACKEND/DATA/PICTURE").subscribe(data => { |
|
|
|
// if (typeof data !== "object") { |
|
|
|
// const payload = JSON.parse(data) as Plant; |
|
|
|
// this.mqttSetDataService.setDataPlant(payload); |
|
|
|
// } |
|
|
|
// }, err => { |
|
|
|
// console.error('Error:', err); |
|
|
|
// }); |
|
|
|
|
|
|
|
//Request to get ALL DATA every 10sec!! |
|
|
|
// this.timerSubscription = timer(0, 10000).pipe( |
|
|
|
// map(() => { |
|
|
|
// this.mqttService.publishToTopic('BACKEND/ACTION/GETALLDATA'); |
|
|
|
// }) |
|
|
|
// ).subscribe(); |
|
|
|
|
|
|
|
//Publish to the Topic to recieve the first Data |
|
|
|
this.publishToPLANTCOUNT(); |
|
|
|
this.publishToGETBATTERY(); |
|
|
@@ -145,18 +116,14 @@ export class MqttRequestService { |
|
|
|
publishToGETALLDATA() { |
|
|
|
this.mqttService.publishToTopic('BACKEND/ACTION/GETALLDATA', JSON.stringify(this.storeService.getAllPlantNames())); |
|
|
|
} |
|
|
|
publishToDRIVE() { |
|
|
|
this.mqttService.publishToTopic('BACKEND/ACTION/DRIVE'); |
|
|
|
} |
|
|
|
|
|
|
|
publishToGETBATTERY() { |
|
|
|
this.mqttService.publishToTopic('BACKEND/ACTION/GETBATTERY'); |
|
|
|
} |
|
|
|
|
|
|
|
publishToROBOTREADY() { |
|
|
|
this.mqttService.publishToTopic('BACKEND/ACTION/ROBOTREADY'); |
|
|
|
} |
|
|
|
publishToGETPOSITION() { |
|
|
|
this.mqttService.publishToTopic('BACKEND/ACTION/GETPOSITION'); |
|
|
|
} |
|
|
|
|
|
|
|
publishToNEWPLANT(plant: Plant) { |
|
|
|
this.mqttService.publishToTopic('BACKEND/ACTION/NEWPLANT', JSON.stringify(plant)); |
|
|
@@ -173,6 +140,7 @@ export class MqttRequestService { |
|
|
|
publishToPLANTCOUNT() { |
|
|
|
this.mqttService.publishToTopic('BACKEND/ACTION/PLANTCOUNT'); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* publishToINPUT wird die Spracheingabe übermittelt, die dann mit |
|
|
|
* mehreren if else anweisungen einen Request an das Backend sendet und |