From 14f613434954830979d1faa560dea4aa2a1e2306 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Sun, 25 May 2025 13:03:35 -0600 Subject: [PATCH] run through all 8 ADC inputs, even though we're only using 4 for now --- ui/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app.py b/ui/app.py index 78ddfea..ced6ad8 100755 --- a/ui/app.py +++ b/ui/app.py @@ -25,7 +25,7 @@ ctrl = ctx.find_device('ads8688') # configuration for each channel on ADS8688 OFFSET = "0" SCALE = "0.078127104" -VOLTAGES = ['voltage0', 'voltage1', 'voltage2', 'voltage3'] +VOLTAGES = ['voltage0', 'voltage1', 'voltage2', 'voltage3', 'voltage4', 'voltage5', 'voltage6', 'voltage7'] # set gpio output lines def set_line_values(chip_path, line_values): -- 2.47.2