eric6/MicroPython/MicroPythonDevices.py

changeset 8051
b78279548993
parent 8038
73ec029d4107
child 8055
52fdd41517f3
equal deleted inserted replaced
8050:2090a7b8a326 8051:b78279548993
450 Public method to download the device firmware. 450 Public method to download the device firmware.
451 """ 451 """
452 url = self.getFirmwareUrl() 452 url = self.getFirmwareUrl()
453 if url: 453 if url:
454 e5App().getObject("UserInterface").launchHelpViewer(url) 454 e5App().getObject("UserInterface").launchHelpViewer(url)
455
456 def getDownloadMenuEntries(self):
457 """
458 Public method to retrieve the entries for the downloads menu.
459
460 @return list of tuples with menu text and URL to be opened for each
461 entry
462 @rtype list of tuple of (str, str)
463 """
464 return []

eric ide

mercurial