UART Equal function always returns false
-
For context, I am trying to adapt a Marlin 3D printer smart screen by connecting it to M5Station Port.C1 and the UART response I am expecting (and that is being sent) is "M105". However when I compare the UART variable (which is the decoded UART response) to the code being sent "M105" it always returns false regardless.
Here is the snippet of code if it helps to diagnose:
uart1 = machine.UART(1, tx=14, rx=13)
uart1.init(115200, bits=8, parity=None, stop=1)while True:
if uart1.any():
UART = str((uart1.readline()).decode())
if UART == 'M105': #This erroneously returns false regardless
pass
wait_ms(2) -
Hello @HWTaro9
if I am not mistaken
readline()returns the newline\ncharacter at the end. This could be the reason for the comparison to returnfalse.Thanks
Felix -
Thank you for the reply, but I have already thought of that. the "decode" block removes everything other than the message (b'M105'\n -> M105)
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login