eric6/MicroPython/EspDevices.py

branch
micropython
changeset 7114
f416440c8be1
parent 7108
4f6133a01c6a
child 7115
fe89c98430b6
equal deleted inserted replaced
7113:04ac3f9a87e6 7114:f416440c8be1
103 @return tuple containing a flag indicating it is safe to start a 103 @return tuple containing a flag indicating it is safe to start a
104 File Manager and a reason why it cannot. 104 File Manager and a reason why it cannot.
105 @rtype tuple of (bool, str) 105 @rtype tuple of (bool, str)
106 """ 106 """
107 return True, "" 107 return True, ""
108
109 @pyqtSlot()
110 def handleDataFlood(self):
111 """
112 Public slot handling a data flood from the device.
113 """
114 self.microPython.setActionButtons(files=True)
115 108
116 def addDeviceMenuEntries(self, menu): 109 def addDeviceMenuEntries(self, menu):
117 """ 110 """
118 Public method to add device specific entries to the given menu. 111 Public method to add device specific entries to the given menu.
119 112

eric ide

mercurial