OnSignal with multiple signals

Hi all,

I need to create a singular python script that responds to two incoming signals.
But the problem is that the signals could come at the same time, and in that case I want to reassure that one of them is not neglected.
Can I use OnSignal for this? Or is it edge-triggered

OnSignal is very reliable for receiving signals that come in bunches. I would recommend using it for that purpose.

1 Like