Threading event wait instead of CPU burning wait
All checks were successful
continuous-integration/drone/push Build is passing

XMLRPC client scripts added
This commit is contained in:
2021-04-04 20:05:19 +02:00
parent 229f4ca6e4
commit 9b85e3a633
3 changed files with 71 additions and 47 deletions

8
signalSlave.py Normal file
View File

@@ -0,0 +1,8 @@
import xmlrpc.client
if __name__ == '__main__':
IP = '127.0.0.1'
PORT = '8888'
s = xmlrpc.client.ServerProxy("http://{0}:{1}".format(IP, PORT))
print(s.signalSlave())