Skip to content

Commit

Permalink
merged drone-nav
Browse files Browse the repository at this point in the history
  • Loading branch information
neuenfeldttj committed Apr 19, 2024
2 parents 34bb15b + a3a6433 commit 2a04bcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/teleoperation/frontend/src/components/AutonTask.vue
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ export default defineComponent({
this.odom.longitude_deg = msg.longitude
this.odom.altitude = msg.altitude
this.odom.status = msg.status
console.log(this.odom.status)
} else if (msg.type == 'auton_tfclient') {
this.odom.bearing_deg = quaternionToMapAngle(msg.rotation)
} else if (msg.type == "center_map") {
Expand Down
3 changes: 2 additions & 1 deletion src/teleoperation/frontend/src/components/DMESTask.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export default defineComponent({
},
computed: {
...mapState('websocket', ['message'])
...mapState('websocket', ['message']),
},
watch: {
Expand All @@ -149,6 +149,7 @@ export default defineComponent({
this.odom.latitude_deg = msg.latitude
this.odom.longitude_deg = msg.longitude
}
}
},
Expand Down

0 comments on commit 2a04bcd

Please sign in to comment.