We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9675d98 commit 477b941Copy full SHA for 477b941
1 file changed
plugwise_usb/constants.py
@@ -30,11 +30,10 @@
30
MESSAGE_HEADER: Final = b"\x05\x05\x03\x03"
31
32
# Max timeout in seconds
33
-STICK_TIME_OUT: Final = 11 # Stick responds with timeout messages within 10s.
34
-# In bigger networks a response from a node could take up a while
35
-NODE_TIME_OUT: Final = 45
36
-# A delayed response being received after 30 secs so lets use 45 seconds.
37
-# @bouwew: NodeJoinAckResponse to a NodeAddRequest
+# Stick responds with timeout messages within 10s.
+STICK_TIME_OUT: Final = 11
+# In bigger networks a response from a Node could take up a while, so lets use 15 seconds.
+NODE_TIME_OUT: Final = 15
38
39
MAX_RETRIES: Final = 3
40
SUPPRESS_INITIALIZATION_WARNINGS: Final = 10 # Minutes to suppress (expected) communication warning messages after initialization
0 commit comments