Python Forum
serial communication write(comand) and read(result)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
serial communication write(comand) and read(result)
#1
Hi

maybe someone could have a look at my code or suggest a better one (or another place to look for)


I need to do serial communication with a device: write to device and listen to what it is saying

I should write a command (send some bytes). I finish my command sendind byte 0XFF (chr(255)) 3 times in a row
Then the device sends me a reply that i have to read. This reply also finishes after 3 times 0XFF

I wrote this

import serial

ser = serial.Serial(

    port='/dev/ttyAMA0',
    baudrate=9600,
    parity=serial.PARITY_NONE,
    stopbits=serial.STOPBITS_ONE,
    bytesize=serial.EIGHTBITS,
    timeout=1
)
ser.reset_output_buffer()

print('Serial connected')

def nxRead(value):
    #first i need to send a 'command' (for example 'sendme X.value'
    command = 'sendme X.value'
    ser.write(command.encode('latin-1'))
    ser.write(chr(255).encode('latin-1')) # 0xFF
    ser.write(chr(255).encode('latin-1')) # 0xFF
    ser.write(chr(255).encode('latin-1')) # 0xFF

    #by now the device should have understood my request and will send me a reply byte by byte, finishing with 0XFF 0XFF 0XFF 

    reply = [] 
    count =0
    t3FF = False # the termination has not stopped

    while t3FF == False:
       r = ser.read().decode('latin-1)
       c = ord(r)
       reply.append(c)
         
           if c == 0xff:
               count = count + 1
               if count == 3:
                   t3FF = True
                   return
           else:
               count = 0
    return s
It's not working, why?
Reply
#2
Be more specific. What isn't working right? Any errors or exceptions? Is it doing the wrong thing? Is it doing nothing at all? Do you know if the device is receiving your messages? I don't know this package but I know a lot of I/O libraries perform buffering, does the Serial object have a flush() method?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  RPi and smartphone Bluetooth communication GigiG 0 334 Mar-18-2025, 09:54 AM
Last Post: GigiG
  pyserial/serial "has no attribute 'Serial' " gowb0w 11 21,193 Sep-27-2024, 12:18 PM
Last Post: NigelHalse
  python read PDF Statement and write it into excel mg24 1 932 Sep-22-2024, 11:42 AM
Last Post: Pedroski55
  Delete file with read-only permission, but write permission to parent folder cubei 6 25,218 Jun-01-2024, 07:22 AM
Last Post: Eleanorreo
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 3,715 Nov-09-2023, 10:56 AM
Last Post: mg24
Question Special Characters read-write Prisonfeed 1 1,389 Sep-17-2023, 08:26 PM
Last Post: Gribouillis
  How do I read and write a binary file in Python? blackears 6 23,968 Jun-06-2023, 06:37 PM
Last Post: rajeshgk
  Python Serial: How to read the complete line to insert to MySQL? sylar 1 1,538 Mar-21-2023, 10:06 PM
Last Post: deanhystad
  Read text file, modify it then write back Pavel_47 5 4,461 Feb-18-2023, 02:49 PM
Last Post: deanhystad
  how to read txt file, and write into excel with multiply sheet jacklee26 14 16,643 Jan-21-2023, 06:57 AM
Last Post: jacklee26

Forum Jump:

User Panel Messages

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