Pulse Mode
How to implement pulse mode?
After turning on, I need my relay automatically turn off after a while (for example, 5 seconds).
Tasmota has a special command for this mode:
PulseTime<x> <value>
But here I did not find anything like this in the configuration and documentation.
You can use scripting to do that (located under webapp/filesistem/create file and name it autoexec.bat, and enter:
delas_s 5 ToggleChannel 1
it will execute on every startup assuming your relay is on channel 1 (ToggleChannel channel number)
You can also use this as a startup command from your index page, under Config/Change startup command and enter:
addRepeatingEvent 5 1 ToggleChannel 1
It will also execute on every startup where addRepeatingEvenet time in seconds number of repeats command to execute
If you need more info let us know.
Perhaps I expressed myself incorrectly and that is why you misunderstood me. I don't need the relay to switch at startup. I need the relay to automatically turn off after N seconds after each turn on. For example, N= 5 or 10 seconds etc.
?__?
https://github.com/openshwprojects/OpenBK7231T_App/blob/main/docs/autoexecExamples.md
Many Thanks!!!