Skip to content

Commit b072b5b

Browse files
core: frontend: create compass configuration
1 parent f2ccdea commit b072b5b

File tree

11 files changed

+1705
-1
lines changed

11 files changed

+1705
-1
lines changed

core/frontend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"date-fns": "^2.23.0",
3131
"file-saver": "^2.0.5",
3232
"fuse.js": "^6.6.2",
33+
"gsap": "^3.12.3",
3334
"http-status-codes": "^2.2.0",
3435
"image-js": "^0.35.3",
3536
"is-ip": "^5.0.0",

core/frontend/src/components/vehiclesetup/Configure.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
<script lang="ts">
2828
import Vue from 'vue'
2929
30+
import SpinningLogo from '../common/SpinningLogo.vue'
31+
import ArdupilotMavlinkCompassSetup from './configuration/compass/ArdupilotMavlinkCompassSetup.vue'
3032
import ParamSets from './overview/ParamSets.vue'
3133
3234
export interface Item {
@@ -39,14 +41,16 @@ export default Vue.extend({
3941
name: 'Configure',
4042
components: {
4143
ParamSets,
44+
ArdupilotMavlinkCompassSetup,
45+
SpinningLogo,
4246
},
4347
data() {
4448
return {
4549
page_selected: null as string | null,
4650
pages: [
4751
{ title: 'Parameters', component: ParamSets },
4852
{ title: 'Accelerometer', component: undefined },
49-
{ title: 'Compass', component: undefined },
53+
{ title: 'Compass', component: ArdupilotMavlinkCompassSetup },
5054
{ title: 'Baro', component: undefined },
5155
{ title: 'Gripper', component: undefined },
5256
{ title: 'Lights', component: undefined },

0 commit comments

Comments
 (0)