mirror of
https://github.com/glitchwolfe/audacity-glitcher.git
synced 2026-02-05 17:09:21 +01:00
8 lines
197 B
Python
8 lines
197 B
Python
# Import the module:
|
|
import pipeclient
|
|
# Create a client instance:
|
|
client = pipeclient.PipeClient()
|
|
# Send a command:
|
|
client.write("Command", timer=True)
|
|
# Read the last reply:
|
|
print(client.read()) |