DS3502 #10223
Answered
by
dlech
SEED-Aaron
asked this question in
Hardware & Peripherals
DS3502
#10223
-
Beta Was this translation helpful? Give feedback.
Answered by
dlech
Dec 14, 2022
Replies: 1 comment 2 replies
-
Should you be using a backslash ( |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
SEED-Aaron
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Should you be using a backslash (
\
) instead of a forward slash (/
) in your bytes?b'\x40'
is a single byte with the value 0x40 whileb'/x40
' is 4 bytes with the values 0x2f, 0x78, 0x34, 0x30.