Set initial led value
This commit is contained in:
parent
c955d7a8f9
commit
4fc43e7db3
@ -94,8 +94,12 @@ def measure(
|
|||||||
if flush_after == 0: flush_after = None
|
if flush_after == 0: flush_after = None
|
||||||
try:
|
try:
|
||||||
i = 0
|
i = 0
|
||||||
led_val = None
|
led_val = led_script.start()
|
||||||
led_script.start()
|
try:
|
||||||
|
led_dev.set_level(led_val)
|
||||||
|
except Exception as e:
|
||||||
|
log.error(f"Error setting led to {led_val:03}%: {e}")
|
||||||
|
raise e
|
||||||
t_iter_start = time.time()
|
t_iter_start = time.time()
|
||||||
while True:
|
while True:
|
||||||
# using while True and if, to be able to log the stop reason
|
# using while True and if, to be able to log the stop reason
|
||||||
|
Loading…
x
Reference in New Issue
Block a user