Ejemplo n.º 1
0
 def scan(self):
     self.timer.stop()
     scanner = GBIpboxScan(self.session)
     self.scanresults = scanner.scan()
     self.messagebox.close()
     self.timer = eTimer()
     self.timer.callback.append(self.parseScanResults)
     self.timer.start(100)
Ejemplo n.º 2
0
	def scan(self):
		self.timer.stop()
		scanner = GBIpboxScan(self.session)
		self.scanresults = scanner.scan()
		self.messagebox.close()
		self.timer = eTimer()
		self.timer.callback.append(self.parseScanResults)
		self.timer.start(100)
Ejemplo n.º 3
0
 def doscan(self):
     self.timer.stop()
     scanner = GBIpboxScan(self.session)
     self.scanresults = scanner.scan()
     if self.scanresults and len(self.scanresults) > 0:
         self.currStep = self.getStepWithID('choose')
     else:
         self.currStep = self.getStepWithID('nodevices')
     self.currStep += 1
     self.updateValues()
Ejemplo n.º 4
0
	def doscan(self):
		self.timer.stop()
		scanner = GBIpboxScan(self.session)
		self.scanresults = scanner.scan()
		if self.scanresults and len(self.scanresults) > 0:
			self.currStep = self.getStepWithID('choose')
		else:
			self.currStep = self.getStepWithID('nodevices')
		self.currStep += 1
		self.updateValues()