9 lines
113 B
Bash
Executable File
9 lines
113 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
for x in $(seq -32000 133 32000)
|
|
do
|
|
echo $x
|
|
oscsend localhost 9001 /joystick/xy ii $x -9999
|
|
done
|