-
I just started playing around with Berry on tasmota32, and I added some test rules. They get triggered, everything is fine, but... I cannot delete them. Deleting them requires knowing the exact trigger used, and I cannot for the life of me remember what I typed there. And with a web browser refresh, the up-arrow history in the berry console is gone. I have been digging through all available documentation for the last hour or so, and I cannot find a way of listing the existing rules added via Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can't list them, the functions are compiled into bytecode which can't be decompiled. You can delete using Of course, you can restart to get back to zero. |
Beta Was this translation helpful? Give feedback.
You can't list them, the functions are compiled into bytecode which can't be decompiled.
You can delete using
tasmota.remove_rule
, indeed with same triggers as used fortasmota.add_rule
, and possibly anid
in common, if/when you have more than one add_rule for same trigger.Of course, you can restart to get back to zero.