Skip to content

Commit bd2a613

Browse files
author
PolygonalTree
committed
bug in ip address and list recover
1 parent 41a9a60 commit bd2a613

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

DesktopApp/desktopApp.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,13 @@ def __init__(self, localIp,parent=None):
129129
def piDiscover(self):
130130
global rpiList
131131
global nameList
132-
localIp = self.localIp
132+
localIp = [self.ui.ipEdit.text(),self.ui.ipEdit_2.text(),self.ui.ipEdit_3.text()]
133133
self.ui.progressBar.show()
134-
port = 80
135-
134+
port = 8088
135+
136+
rpiList = []
137+
nameList = []
138+
136139
for i in range(1,255):
137140
url = "http://"+localIp[0]+"."+localIp[1]+"."+localIp[2]+"."+str(i)
138141
#print(url+port)
@@ -156,6 +159,7 @@ def piDiscover(self):
156159
sys.stdout.write( "scaning..."+str(int(i/255*100)) + '%\r'),
157160
self.ui.progressBar.setValue(int(i/255*100))
158161
print("Ended ")
162+
self.ui.listWidget.clear()
159163
self.ui.listWidget.addItems(nameList)
160164
self.rpiList = rpiList
161165
self.ui.progressBar.hide()

0 commit comments

Comments
 (0)