Skip to content

Commit

Permalink
[temp] Rusty's proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl committed Nov 27, 2023
1 parent 57d2c37 commit b9b5d93
Showing 1 changed file with 30 additions and 17 deletions.
47 changes: 30 additions & 17 deletions src/assets/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ export const widgetProfiles: Profile[] = [
name: 'Virtual Horizon',
component: WidgetType.VirtualHorizon,
position: {
x: 0.425,
y: 0.81,
x: 0.863,
y: 0.07,
},
size: {
width: 0.074,
height: 0.12,
width: 0.08,
height: 0.1,
},
options: {},
managerVars: defaultWidgetManagerVars,
Expand All @@ -47,12 +47,12 @@ export const widgetProfiles: Profile[] = [
name: 'Compass',
component: WidgetType.Compass,
position: {
x: 0.501,
y: 0.81,
x: 0.9275,
y: 0.07,
},
size: {
width: 0.074,
height: 0.12,
width: 0.08,
height: 0.1,
},
options: {
headingStyle: 'North Up',
Expand All @@ -76,6 +76,10 @@ export const widgetProfiles: Profile[] = [
miniWidgetContainers: [
{
name: 'Bottom-left container',
widgets: [],
},
{
name: 'Bottom-center container',
widgets: [
{
component: MiniWidgetType.DepthIndicator,
Expand All @@ -89,22 +93,31 @@ export const widgetProfiles: Profile[] = [
{
component: MiniWidgetType.VeryGenericIndicator,
options: {
displayName: 'Tether Turns',
variableName: 'TetherTrn',
fractionalDigits: 1,
iconName: 'mdi-horizontal-rotate-clockwise',
variableUnit: 'x',
displayName: 'Lights (1)',
variableName: 'Lights1',
iconName: 'mdi-flashlight',
variableUnit: '%',
fractionalDigits: 0,
variableMultiplier: 100,
},
hash: '9d22559c-550e-4929-949d-492fbe8298db',
managerVars: defaultMiniWidgetManagerVars,
},
{
component: MiniWidgetType.VeryGenericIndicator,
options: {
displayName: 'Pilot Gain',
variableName: 'PilotGain',
iconName: 'mdi-account-hard-hat',
variableUnit: '%',
fractionalDigits: 0,
variableMultiplier: 100,
},
hash: '9d22559c-550e-4929-949d-492fbe8298db',
managerVars: defaultMiniWidgetManagerVars,
},
],
},
{
name: 'Bottom-center container',
widgets: [],
},
{
name: 'Bottom-right container',
widgets: [
Expand Down

0 comments on commit b9b5d93

Please sign in to comment.