We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc9baf0 commit 649d8fcCopy full SHA for 649d8fc
plugwise_usb/__init__.py
@@ -117,6 +117,16 @@ def joined_nodes(self) -> int | None:
117
return None
118
return len(self._network.registry) + 1
119
120
+ @property
121
+ def firmware_stick(self) -> str:
122
+ """Firmware of USB-Stick."""
123
+ return self._controller.firmware_stick
124
+
125
126
+ def hardware_stick(self) -> str:
127
+ """Hardware of USB-Stick."""
128
+ return self._controller.hardware_stick
129
130
@property
131
def mac_stick(self) -> str:
132
"""MAC address of USB-Stick. Raises StickError is connection is missing."""
0 commit comments