mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-30 13:23:21 +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,
|
add_length=bytes,
|
||||||
end_of_frame_pos=cython.uint,
|
end_of_frame_pos=cython.uint,
|
||||||
length_int=cython.uint,
|
length_int=cython.uint,
|
||||||
preamble=char,
|
preamble="unsigned char",
|
||||||
length_high=char,
|
length_high="unsigned char",
|
||||||
maybe_msg_type=char
|
maybe_msg_type="unsigned char"
|
||||||
)
|
)
|
||||||
cpdef data_received(self, object data)
|
cpdef data_received(self, object data)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user