src/eric7/MicroPython/MicroPythonWidget.py

branch
eric7
changeset 10034
bf2d02317ba6
parent 10012
d649d500a9a1
child 10138
56614cf9d03c
equal deleted inserted replaced
10033:91b0939626ff 10034:bf2d02317ba6
1193 """ 1193 """
1194 from .BoardDataDialog import BoardDataDialog 1194 from .BoardDataDialog import BoardDataDialog
1195 1195
1196 try: 1196 try:
1197 boardInfo = self.__device.getBoardInformation() 1197 boardInfo = self.__device.getBoardInformation()
1198 boardInfo.update(
1199 self.__device.getDeviceData(
1200 ["wifi", "bluetooth", "ethernet", "ntp", "mip", "upip", "local_mip"]
1201 )
1202 )
1198 1203
1199 dlg = BoardDataDialog(boardInfo) 1204 dlg = BoardDataDialog(boardInfo)
1200 dlg.exec() 1205 dlg.exec()
1201 except Exception as exc: 1206 except Exception as exc:
1202 self.showError("getBoardInformation()", str(exc)) 1207 self.showError("getBoardInformation()", str(exc))

eric ide

mercurial