@@ -103,11 +103,17 @@ export default function DashboardDut() {
103
103
< ColumnLayout columns = { 2 } variant = "text-grid" >
104
104
< Box >
105
105
< Box variant = "awsui-key-label" > DUT voltage (V)</ Box >
106
- < MqttChart topic = "/v1/dut/feedback/voltage" />
106
+ < MqttChart
107
+ title = "DUT Voltage"
108
+ topic = "/v1/dut/feedback/voltage"
109
+ />
107
110
</ Box >
108
111
< Box >
109
112
< Box variant = "awsui-key-label" > DUT current (A)</ Box >
110
- < MqttChart topic = "/v1/dut/feedback/current" />
113
+ < MqttChart
114
+ title = "DUT Current"
115
+ topic = "/v1/dut/feedback/current"
116
+ />
111
117
</ Box >
112
118
</ ColumnLayout >
113
119
< ColumnLayout columns = { 4 } variant = "text-grid" >
@@ -239,7 +245,10 @@ export default function DashboardDut() {
239
245
additionalInfo = "The absolute voltage is independent of pin orientation"
240
246
/>
241
247
< UnloadingSection header = { `OUT_${ port } voltage plot (V)` } >
242
- < MqttChart topic = { `/v1/output/out_${ port } /feedback/voltage` } />
248
+ < MqttChart
249
+ title = { `OUT_${ port } Voltage` }
250
+ topic = { `/v1/output/out_${ port } /feedback/voltage` }
251
+ />
243
252
</ UnloadingSection >
244
253
</ SpaceBetween >
245
254
</ ColumnLayout >
@@ -304,7 +313,10 @@ export default function DashboardDut() {
304
313
additionalInfo = "Too many devices may overload the bus"
305
314
/>
306
315
< UnloadingSection header = "IOBus current plot" >
307
- < MqttChart topic = "/v1/iobus/feedback/current" />
316
+ < MqttChart
317
+ title = "IOBus current"
318
+ topic = "/v1/iobus/feedback/current"
319
+ />
308
320
</ UnloadingSection >
309
321
< MqttBarMeter
310
322
topic = "/v1/iobus/feedback/voltage"
@@ -318,7 +330,10 @@ export default function DashboardDut() {
318
330
additionalInfo = "The voltage will go down if the bus is overloaded"
319
331
/>
320
332
< UnloadingSection header = "IOBus voltage plot" >
321
- < MqttChart topic = "/v1/iobus/feedback/voltage" />
333
+ < MqttChart
334
+ title = "IOBus current"
335
+ topic = "/v1/iobus/feedback/voltage"
336
+ />
322
337
</ UnloadingSection >
323
338
</ SpaceBetween >
324
339
</ ColumnLayout >
@@ -380,6 +395,7 @@ export default function DashboardDut() {
380
395
/>
381
396
< UnloadingSection header = { `USB Port ${ port } current plot` } >
382
397
< MqttChart
398
+ title = { `Port ${ port } current` }
383
399
topic = { `/v1/usb/host/port${ port } /feedback/current` }
384
400
/>
385
401
</ UnloadingSection >
0 commit comments