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 |