Python Forum
PC why serial code = converting to ascii ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PC why serial code = converting to ascii ?
#11
thanks for the detailed explanation, there is a lot for me to learn from this.
the code on the pico is just to test some things, but I will have to implement it in the actual code later. then it must indeed be better to prevent problems.

Quote:Is y supposed to be a button debouncer?
This code is only intended for testing, Y must ensure that the data is only sent once.
Quote:Why do you sleep between printing the numbers in r7? There is no reason for this. The PC program is not going to read any bytes until 1000 bytes have been written.
Indeed, waiting 1 mSec makes no sense.
Quote:You could use a special marker to indicate the end of the transmission.
85 & 170 are my special markers, because 0b01010101 and 0b10101010 never appear in my received data.
but I'll take a closer look at that.
I'm not French, but from the netherlands
Reply
#12
Quote:Y must ensure that the data is only sent once.
It doesn't do that. In your program Y does nothing at all.

You cannot use 170 as the end of message marker unless you send your numbers as binary data instead of strings. Because you are writing strings, 170 is b'001100010011011100110000', the ascii table values for '1', '7', and '0'.

In python you can write binary data to stdout, but I don't see where the required commands are available in micropython. I did see something about the usb port being used as a serial port, but I could not find any details. Unfortunately I don't have a raspberry pi device to experiment with. You might have better luck asking your question on a raspberry pi forumn.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  pyserial/serial "has no attribute 'Serial' " gowb0w 11 21,016 Sep-27-2024, 12:18 PM
Last Post: NigelHalse
  Problem Converting Tradingview Indicator to Python code kralxs 1 2,245 Apr-27-2024, 06:10 PM
Last Post: kralxs
  bytearray object - why converting to ascii? Chepilo 2 4,568 Nov-21-2022, 07:25 PM
Last Post: Chepilo
  Converting SQL Code To Python Code Query eddywinch82 13 39,413 Feb-15-2020, 06:42 PM
Last Post: buran
  Reading mixed ASCII/binary serial input N8UR 1 4,492 Jun-11-2019, 02:49 PM
Last Post: N8UR
  Converting R code to python mcva 2 13,718 Mar-09-2019, 04:01 PM
Last Post: mcva
  Converting handwriting into code that can be recreated kill3rcat456 2 3,267 Mar-04-2018, 02:27 AM
Last Post: kill3rcat456
  Resources for converting Python 2.x code to 3.x Luke_Drillbrain 4 6,066 May-03-2017, 06:34 PM
Last Post: snippsat
  Python code with serial port and global undefined marciokoko 13 17,038 Jan-17-2017, 06:14 PM
Last Post: micseydel
  Need help converting some code from python 2.7 to 3.5 Blue Dog 3 5,711 Oct-18-2016, 12:30 AM
Last Post: sparkz_alot

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020