Skip to content

Commit 1a4f4a0

Browse files
committed
Correct some comments
1 parent 0a877ce commit 1a4f4a0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
- `measures_power` (boolean) - Indicates if device supports power measurement
2727
- `name` (string) - Name of device based om hardware model and MAC address
2828
- `ping` (integer) - Network roundtrip time in milliseconds
29-
- `rssi_in` (DBm) - Inbound RSSI level
30-
- `rssi_out` (DBm) - Outbound RSSI level based on the received inbound RSSI level of the neighbor node
29+
- `rssi_in` (integer) - Inbound RSSI level in DBm
30+
- `rssi_out` (integer) - Outbound RSSI level based on the received inbound RSSI level of the neighbor node in DBm
3131
- Scan devices
3232
- `motion` (boolean) - Current detection state of motion.
3333
- Sense devices

plugwise/controller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- handle the connection (connect/disconnect) to the USB-Stick
66
- take care for message acknowledgements based on sequence id's
77
- resend message requests when timeouts occurs
8-
- holds a sending queue (fifo)
8+
- holds a sending queue and submit messages based on the message priority (high, medium, low)
99
- passes received messages back to message processor (stick.py)
1010
- execution of callbacks after processing the response message
1111
@@ -63,7 +63,7 @@ def connect_to_stick(self, callback=None) -> bool:
6363
"""
6464
Connect to USB-Stick and startup all worker threads
6565
66-
Return: True when if successfully.
66+
Return: True when connection is successfull.
6767
"""
6868
self.init_callback = callback
6969
# Open connection to USB Stick

0 commit comments

Comments
 (0)