I am sure I am not the only one here who has dabbled in simpl programming, but I am pretty new at it...and I suspect that this answer is starting me in the face; I am just not seeing it...
I'm writing a module. To make it work the way I want it to, I have an input signal that is supposed to indicate a maintained state, so it's an on-off signal. But over on the device, I need to send discrete on/off commands. So I need to send an "on" signal when the control signal goes high, and an "off" signal when it goes low.
Can it be as simple as:
CONTROL------->[ BUFFER ]------->TURN_ON
and
CONTROL------->[ NOT ]------->TURN_OFF
That's what I was about to try, but I wondered if I am just missing something important here
Israel