-
파이썬에서 시리얼 데이터 받기 (Hex Data)Python 2022. 9. 23. 23:02반응형
여기는 Hex 형태의 시리얼 데이터를 받는 예제입니다.
String 데이터는 이전 글을 보세요.
선행작업 pip install pyserial pip가 설치가 안된경우 pip 를 먼저 설치 합니다. apt install python3-pip import serial seru = serial.Serial('/dev/ttyUSB0', 115200) while True: if seru.readable(): s = seru.read() hex_string = binascii.hexlify(s).decode('utf-8') print(hex_string)
반응형'Python' 카테고리의 다른 글
데이터 진법 변환 (0) 2022.09.23 modbus CheckSum 구하기. (0) 2022.09.23 파이썬에서 시리얼 데이터 받기 (String Data) (0) 2022.09.23 os.system 을 통한 터미널 명령어 사용하기. (0) 2022.09.23 두 gps 지점으로 방위각 구하기 (0) 2022.01.24