2045|1

7047

帖子

11

TA的资源

版主

楼主
 

【国产RISC-V Linux板 昉·星光VisionFive试用报告】与迪文串口屏数据交换成功 [复制链接]

 

【国产RISC-V Linux板 昉·星光VisionFive试用报告】核酸采样系统前期论证 - 国产芯片交流 - 电子工程世界-论坛 (eeworld.com.cn)

【国产RISC-V Linux板 昉·星光VisionFive试用报告】python 输出HELLOWORLD - 国产芯片交流 - 电子工程世界-论坛 (eeworld.com.cn)

【国产RISC-V Linux板 昉·星光VisionFive试用报告】与迪文屏成功通信 - 国产芯片交流 - 电子工程世界-论坛 (eeworld.com.cn)

【国产RISC-V Linux板 昉·星光VisionFive试用报告】环境准备——安装mysql - 国产芯片交流 - 电子工程世界-论坛 (eeworld.com.cn)

【国产RISC-V Linux板 昉·星光VisionFive试用报告】环境准备-设计数据表 - 国产芯片交流 - 电子工程世界-论坛 (eeworld.com.cn)

【国产RISC-V Linux板 昉·星光VisionFive试用报告】环境准备+搭建服务器 - 国产芯片交流 - 电子工程世界-论坛 (eeworld.com.cn)

【国产RISC-V Linux板 昉·星光VisionFive试用报告】创建用户数据插入 - 国产芯片交流 - 电子工程世界-论坛 (eeworld.com.cn)

【国产RISC-V Linux板 昉·星光VisionFive试用报告】Tornado 数据写入读取 - 国产芯片交流 - 电子工程世界-论坛 (eeworld.com.cn)

经过上面的环境搭建,现在书写昉.星光的数据交换程序main.py程序如下:

# -*- coding: gbk -*-
#!/usr/bin/python

import time
import serial  # 导入模块
import threading
import urllib3
import json
import time

url = "http://192.168.3.192:9000/man"
http = urllib3.PoolManager()

STRGLO = ""  # 读取的数据
BOOL = True  # 读取标志位

cmd_read_phone = bytes([0x5a, 0xa5, 0x04, 0x83, 0x10, 0x60, 0x13])
cmd_read_ID_number = bytes([0x5a, 0xa5, 0x04, 0x83, 0x10, 0x20, 0x18])
cmd_write_to_enter_page = bytes([0x5a, 0xa5, 0x07, 0x82, 0x00, 0x84, 0x5a, 0x01, 0x00, 0x10])
cmd_write_to_main_page = bytes([0x5a, 0xa5, 0x07, 0x82, 0x00, 0x84, 0x5a, 0x01, 0x00, 0x00])
cmd_write_to_waite_page = bytes([0x5a, 0xa5, 0x07, 0x82, 0x00, 0x84, 0x5a, 0x01, 0x00, 0x12])
cmd_write_to_noinfor_page = bytes([0x5a, 0xa5, 0x07, 0x82, 0x00, 0x84, 0x5a, 0x01, 0x00, 0x13])
cmd_write_to_ERROR_page = bytes([0x5a, 0xa5, 0x07, 0x82, 0x00, 0x84, 0x5a, 0x01, 0x00, 0x14])
send_list = [0x5a, 0xa5, 0x00, 0x00, 0x00, 0x00]

all_range = None


class sampleNet:
    def post(self, dict_info):
        try:
            encoded_data = json.dumps(dict_info).encode("gbk")
            resp = http.request(
                "POST",
                url,
                body=encoded_data,
                headers={
                    'x-env-code': 'mafutian',
                    'content-type': 'application/json;charset=gbk'
                }
            )
            return resp
        except Exception as e:
            print("post ERR:" + str(e))
# 按手机号码查询
def phone_get(phone):
    net_post = sampleNet()
    data = {"command": "getPersonnel", "phone": phone}
    try:
        resp = net_post.post(data)
        if resp.status == 200:
            data = json.loads(resp.data)
            print(data)
            return data
        else:
            return None
    except Exception as e:
        print(e)
# 姓名数据组装
def creat_gbk_list(mydata, my_commad, H_address, L_address):
    # 发送的list
    send_list = [0x5a, 0xa5, 0x00, 0x00, 0x00, 0x00]
    send_len = 1 + 2 + 2 + len(mydata) * 2
    send_list[2] = send_len
    # 添加 命令
    send_list[3] = my_commad
    send_list[4] = H_address
    send_list[5] = L_address
    mysend_list = bytes(send_list) + mydata.encode("gbk") + b'\xFF\xFF'
    print(mysend_list)
    DWritePort(ser, mysend_list)


def ReadData(ser):
    global all_range
    while BOOL:
        if ser.in_waiting:
          try:
              # STRGLO = ser.read(ser.in_waiting).decode("gbk")
              STRGLO = ser.read(ser.in_waiting)
              print("收到数据")
              print("长度为:" + str(len(STRGLO)))
              if STRGLO[0] == 0x5a and STRGLO[1] == 0xa5:
                  # 获取地址
                  addres = STRGLO[4] << 8 | STRGLO[5]
                  commd = STRGLO[3]
                  recv_len = STRGLO[2]
                  print("地址为:" + hex(addres) + "  长度为:" + str(recv_len) + " 命令为:" + hex(commd))
                  if recv_len == 0x06 and commd == 0x83:
                      if addres == 0x1080:
                          print("按手机号码查询")
                          # 读取手机号码数据
                          DWritePort(ser, cmd_read_phone)
                      elif addres == 0x1090:
                          print("按身份证查询")
                          DWritePort(ser, cmd_read_ID_number)
                  elif commd == 0x83 and recv_len == 42 and addres == 0x1060:
                      # print("接收到手机号码")
                      recv_phone_len = STRGLO[6]
                      if (recv_phone_len == 0x13):
                          str_ph = STRGLO[7:18]
                          phone_code = str_ph.decode()
                          print(phone_code)
                          # 开始查找是否有手机号存在
                          try:
                              data = phone_get(phone_code)
                              if data is not None:
                                  if data['code'] == 1000:
                                      # 获取身份证号码
                                      # 写性别
                                      #creat_gbk_list(my_xb, 0x82, 0x11, 0x20)
                                      creat_gbk_list(data['ID_card'], 0x82, 0x10, 0x20)
                                      # 写职业
                                      
                                      creat_gbk_list(data['uint'], 0x82, 0x11, 0x40)
                                      # 写姓名
                                     
                                      creat_gbk_list(data['name'], 0x82, 0x11, 0x60)
                                      # 写职业
                                      creat_gbk_list(data['uint'], 0x82, 0x11, 0x40)
                                      # 页面转移到确认页面
                                      # 写姓名
                                      
                                      creat_gbk_list(data['name'], 0x82, 0x11, 0x60)
                                      #DWritePort(ser, cmd_write_to_enter_page)
                                      time.sleep(0.5)
                                      DWritePort(ser, cmd_write_to_enter_page)
  
                          except Exception as e:
                              print("出错啦:" + str(e))
                      else:
                          print("接收到的电话号码长度不对 长度为:" + str((recv_phone_len - 8)))
                      # 查找手机号
                  elif commd == 0x83 and recv_len == 52 and addres == 0x1020:
                      print("接收到手机号码")
                      recv_ID_len = STRGLO[6]
                      if (recv_ID_len == 0x18):
                          str_ID = STRGLO[7:25]
                          str_ID = str_ID.decode()
                          # 开始查找是否有手机号存在
                          try:
                              if ID_code == str_ID:
                                  # 写性别
                                  creat_gbk_list(my_xb, 0x82, 0x11, 0x20)
                                  # 获取手机号码
                                  creat_gbk_list(my_phone, 0x82, 0x10, 0x60)
                                  # 写职业
  
                                  creat_gbk_list(my_job, 0x82, 0x11, 0x40)
                                  # 写职业
  
                                  creat_gbk_list(my_job, 0x82, 0x11, 0x40)
                                  # 写姓名
  
                                  creat_gbk_list(my_name, 0x82, 0x11, 0x60)
                                  # 页面转移到确认页面
                                  DWritePort(ser, cmd_write_to_enter_page)
                          except Exception as e:
                              print("出错啦:" + str(e))
                      else:
                          print("接收到的电话号码长度不对 长度为:" + str((recv_phone_len - 8)))
                      # 查找手机号码
              else:
                  print("非法数据")
          except Exception as e:
              print("错误:" + str(e))


# 打开串口
# 端口,GNU / Linux上的/ dev / ttyUSB0 等 或 Windows上的 COM3 等
# 波特率,标准值之一:50,75,110,134,150,200,300,600,1200,1800,2400,4800,9600,19200,38400,57600,115200
# 超时设置,None:永远等待操作,0为立即返回请求结果,其他值为等待超时时间(单位为秒)
def DOpenPort(portx, bps, timeout):
    ret = False
    try:
        # 打开串口,并得到串口对象
        ser = serial.Serial(portx, bps, timeout=timeout)
        # 判断是否打开成功
        if (ser.is_open):
            ret = True
            threading.Thread(target=ReadData, args=(ser,)).start()
    except Exception as e:
        print("---异常---:", e)
    return ser, ret


# 关闭串口
def DColsePort(ser):
    global BOOL
    BOOL = False
    ser.close()


# 写数据
def DWritePort(ser, text):
    result = ser.write(text)  # 写数据
    return result


# 读数据
def DReadPort():
    global STRGLO
    str = STRGLO
    STRGLO = ""  # 清空当次读取
    return str


if __name__ == "__main__":
    ser, ret = DOpenPort("/dev/ttyUSB0", 115200, None)
    if (ret == True):  # 判断串口是否成功打开
        print("打开串口成功1")
        # count=DWritePort(ser,"我是东小东,哈哈")
        # print("写入字节数:",count)
        # DReadPort() #读串口数据
        # DColsePort(ser)  #关闭串口

1、运行主程序:

  2、迪文屏接到usb上:

 然后输入手机号码:

查询后得到数据库的信息:

 

 与数据库的信息是一致的:

 到这一步与迪文屏的交互基本上没有什么问题了,下一步做数据的保存。

与迪文屏数据交换

 

最新回复

  详情 回复 发表于 2022-6-19 10:21
点赞(1) 关注
 
 

回复
举报

65

帖子

3

TA的资源

一粒金砂(中级)

沙发
 
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/6 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表