用PySimpleGUI和pyserial轻松组建单片机的上位机控制系统

PySimpleGUI是能轻松简单地创建可视化应用程序 pyserial串口开发模块 PySimpleGUI简单示例: import PySimpleGUI as sg import serial layout=[ [sg.Text('第一行')], [sg.Button('第二行')] ] window=sg.Window('这是个标题').Layout(layout) button,v
相关文章
相关标签/搜索