mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-28 13:05:12 +01:00
Fix signedness with incoming plaintext data (#694)
This commit is contained in:
parent
663f7ca950
commit
aa3b8af246
@ -21,9 +21,9 @@ cdef class APIPlaintextFrameHelper(APIFrameHelper):
|
||||
add_length=bytes,
|
||||
end_of_frame_pos=cython.uint,
|
||||
length_int=cython.uint,
|
||||
preamble=char,
|
||||
length_high=char,
|
||||
maybe_msg_type=char
|
||||
preamble="unsigned char",
|
||||
length_high="unsigned char",
|
||||
maybe_msg_type="unsigned char"
|
||||
)
|
||||
cpdef data_received(self, object data)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user