This commit is contained in:
CPD 2025-03-17 18:14:47 +01:00
parent ff35e7ea28
commit b566ee4c67

View File

@ -306,8 +306,8 @@ class LedScript:
raise InvalidScriptUpdate(f"Cannot update row {idx+1} because with the new duration it would be skipped") raise InvalidScriptUpdate(f"Cannot update row {idx+1} because with the new duration it would be skipped")
self.script["dt"][idx] = dt self.script["dt"][idx] = dt
self.script["led"][idx] = led self.script["led"][idx] = led
log.info(f"Updated row {idx+1} with values dt={dt}, led={led}")
self._update_script_dtsums(idx) self._update_script_dtsums(idx)
log.critical("Updated!")
def _update_script_dtsums(self, from_idx: int): def _update_script_dtsums(self, from_idx: int):
for i in range(from_idx, self.script["dtsum"].shape[0]): for i in range(from_idx, self.script["dtsum"].shape[0]):