Triggering a pad from another pad
Posted: 01 Feb 2014 22:47
I'd like to trigger two pads (pads 2 and 3) from a single pad (pad 1). I tried:
On expression x
If pad1.x = 1
Then
pad2.x =1
pad3.x =1
Endif
Problem is that just turns the other pads to their on state. I need the single pad to make the two pads act like they were pressed and then released. I think some sort of delay might work, or maybe there's a different way to do this.
On expression x
If pad1.x = 1
Then
pad2.x =1
pad3.x =1
Endif
Problem is that just turns the other pads to their on state. I need the single pad to make the two pads act like they were pressed and then released. I think some sort of delay might work, or maybe there's a different way to do this.