Good afternoon. I try to understand the principles of interaction with the device. Along with the docks comes tulza to send commands. 1st screen - initialization command, 2nd - card acceptance. I enter everything as in the command field, but the device does not respond. I sit at an ATM under teamveawer so I apologize for the poor quality
import serial import time ser = serial.Serial('COM3', 38400, stopbits=serial.STOPBITS_ONE, bytesize=serial.EIGHTBITS, parity=serial.PARITY_EVEN) ser.write(b'\x43\x30\x30\x33\x32\x34\x31\x30\x30\x31\x30\x30\x30') time.sleep(0.5) ser.write(b'\x43\x3A\x30') ser.close()