I am using a USB relay. I trigger it from a command line argument. -c:3 -r:4#1 Where -c:3 is com port 3, -r:4 is relay 4, #1 turns on the relay and #0 turns it off. That all works fine. When I enter -c:3 -r:4#1, -c:3 -r:4#0 The relay turns on then off in a quarter of a second. I need a 1 second delay between on and off. I tried -c:3 -r:4#1, timeout /t 1, -c:3 -r:4#0 With this the command doesn't fire at all. Can you tell me how to get a delay?
Thanks