If you don’t want to enter IP address after open the client, you can make some modification as below:
1. Open “Client_Ui.py” under directory “Client”, then find code in the thirty-sixth line from the bottom.
self.IP.setText(_translate("Client", "IP address", None))
2. Modify IP address to IP address of your Raspberry Pi. For example, my rpi IP is 192.168.1.116. After
modification, it should be as below:
self.IP.setText(_translate("Client", "192.168.1.116", None))
Then save and close. And then restart your client. You can see it is modified successfully.