src/eric7/MicroPython/Devices/DeviceBase.py

branch
eric7
changeset 11263
28f0ead11a82
parent 11236
75c26fe1d1c7
child 11270
0e220c26e60e
equal deleted inserted replaced
11262:07d9cc8d773c 11263:28f0ead11a82
2016 def getEthernetStatus(self): 2016 def getEthernetStatus(self):
2017 """ 2017 """
2018 Public method to get Ethernet status data of the connected board. 2018 Public method to get Ethernet status data of the connected board.
2019 2019
2020 @return list of tuples containing the translated status data label and 2020 @return list of tuples containing the translated status data label and
2021 the associated value 2021 the associated value and a dictionary with keys 'ipv4' and 'ipv6'
2022 @rtype list of tuples of (str, str) 2022 containing the respective address information
2023 """ 2023 @rtype tuple of list of tuples of (str, str) and dict
2024 return [] 2024 """
2025 return [], {"ipv4": [], "ipv6": []}
2025 2026
2026 def connectToLan(self, config, hostname): # noqa: U-100 2027 def connectToLan(self, config, hostname): # noqa: U-100
2027 """ 2028 """
2028 Public method to connect the connected device to the LAN. 2029 Public method to connect the connected device to the LAN.
2029 2030

eric ide

mercurial