Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MVP fill station telemetry #169

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions ground-server/src/lib/telemetry-channels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,54 @@ export const TELEMETRY_CHANNELS: TelemetryChannel[] = [
modes: ["Value", "15m Chart", "60m Chart"],
component: GraphWidget,
},
{
id: "lc1",
label: "Load Cell 1",
requiresAuth: false,
dbField: "lc1",
modes: ["Value", "15m Chart", "60m Chart"],
component: GraphWidget,
},
{
id: "ign1Cont",
label: "Igniter 1 Continuity",
requiresAuth: false,
dbField: "ign1Cont",
modes: ["Value", "15m Chart", "60m Chart"],
component: GraphWidget,
},
{
id: "ign2Cont",
label: "Igniter 2 Continuity",
requiresAuth: false,
dbField: "ign2Cont",
modes: ["Value", "15m Chart", "60m Chart"],
component: GraphWidget,
},
{
id: "pt3_pressure",
label: "Pressure Transducer 3",
requiresAuth: false,
dbField: "pt3",
modes: ["Value", "15m Chart", "60m Chart"],
component: GraphWidget,
},
{
id: "pt4_pressure",
label: "Pressure Transducer 4",
requiresAuth: false,
dbField: "pt4",
modes: ["Value", "15m Chart", "60m Chart"],
component: GraphWidget,
},
{
id: "rtd_temp",
label: "RTD Temp",
requiresAuth: false,
dbField: "rtdTemp",
modes: ["Value", "15m Chart", "60m Chart"],
component: GraphWidget,
},
{
id: "fuel",
label: "Fuel",
Expand Down
14 changes: 7 additions & 7 deletions ground-server/src/proto-out/command.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading