mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 05:44:23 +00:00
Fix char
This commit is contained in:
@@ -249,7 +249,7 @@ class Com(ControllerConnection):
|
|||||||
def __add_integer_as_hex(self, c: int):
|
def __add_integer_as_hex(self, c: int):
|
||||||
"""Writes the hexadecimal representation of the high and low bytes of integer `c` (16-bit) to the simulated serial port."""
|
"""Writes the hexadecimal representation of the high and low bytes of integer `c` (16-bit) to the simulated serial port."""
|
||||||
if not (0 <= c <= 0xFFFF):
|
if not (0 <= c <= 0xFFFF):
|
||||||
raise ValueError("Input must be a 16-bit integer (0–65535)")
|
raise ValueError("Input must be a 16-bit integer (0-65535)")
|
||||||
|
|
||||||
# Get high byte (most significant byte)
|
# Get high byte (most significant byte)
|
||||||
hi_byte = (c >> 8) & 0xFF
|
hi_byte = (c >> 8) & 0xFF
|
||||||
|
|||||||
Reference in New Issue
Block a user