I essentially wish to have a C# or python component that does the following
time_since_last_execution = time_now - time_when_this_component_was_last_executed
time_since_last_execution > 10s:
do_Something()
else:
do_something_else()
The “time_when_this_component_was_last_executed”-part is where I struggle
3 posts - 3 participants