Skip to content

Commit 567a899

Browse files
committed
fix: bug fixes
1 parent 77b8f83 commit 567a899

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/communication/science_lab.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ class ScienceLab {
121121
if (getIt<BoardStateProvider>().pslabVersion == 6) {
122122
dacChannels['PCS'] = DACChannel('PCS', [0, 3.3], 0, 0);
123123
dacChannels['PV3'] = DACChannel('PV3', [0, 3.3], 1, 1);
124-
dacChannels['PC2'] = DACChannel('PC2', [-3.3, 3.3], 2, 0);
124+
dacChannels['PV2'] = DACChannel('PV2', [-3.3, 3.3], 2, 0);
125125
dacChannels['PV1'] = DACChannel('PV1', [-5, 5], 3, 1);
126126
} else {
127127
dacChannels['PCS'] = DACChannel('PCS', [0, 3.3], 0, 0);
128128
dacChannels['PV3'] = DACChannel('PV3', [0, 3.3], 1, 1);
129-
dacChannels['PC2'] = DACChannel('PC2', [-3.3, 3.3], 2, 2);
129+
dacChannels['PV2'] = DACChannel('PV2', [-3.3, 3.3], 2, 2);
130130
dacChannels['PV1'] = DACChannel('PV1', [-5, 5], 3, 3);
131131
}
132132

0 commit comments

Comments
 (0)