├── .all-contributorsrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml └── workflows │ └── issue_check.yml ├── .gitignore ├── LICENSE ├── LuaApi.md ├── README.md ├── README_EN.md ├── WapProj ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Package.appxmanifest └── WapProj.wapproj ├── changlog ├── autoUpdate.xml └── index.html ├── image ├── icon-resharper.svg ├── screen.png ├── screen2.jpg ├── screen3.png ├── screen3EN.png └── screenEN.png ├── llcom.sln ├── llcom ├── App.config ├── App.xaml ├── App.xaml.cs ├── DefaultFiles │ ├── LICENSE │ ├── core_script │ │ ├── JSON.lua │ │ ├── head.lua │ │ ├── log.lua │ │ ├── strings.lua │ │ └── sys.lua │ ├── libusb-1.0-x64.dll │ ├── libusb-1.0-x86.dll │ ├── user_script_recv_convert │ │ ├── default.lua │ │ ├── 绘制曲线-多条.lua │ │ ├── 绘制曲线-解析结构体.lua │ │ └── 绘制曲线.lua │ ├── user_script_run │ │ ├── AT控制TCP连接-快发模式.lua │ │ ├── AT控制TCP连接-慢发模式.lua │ │ ├── channel-demo.lua │ │ ├── example.lua │ │ └── 循环发送快捷发送区数据.lua │ ├── user_script_send_convert │ │ ├── 16进制数据.lua │ │ ├── GPS NMEA.lua │ │ ├── checksum.lua │ │ ├── default.lua │ │ ├── 加上换行回车.lua │ │ └── 解析换行回车的转义字符.lua │ └── 反馈网址.txt ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Lib │ └── XLua.Mini.dll ├── Lua.xshd ├── LuaEnv │ ├── LuaApis.cs │ ├── LuaEnv.cs │ ├── LuaLoader.cs │ └── LuaRunEnv.cs ├── Model │ ├── LinePlotPoint.cs │ ├── LuaFolding.cs │ ├── OnlineScript.cs │ ├── Settings.cs │ ├── ToSendData.cs │ └── Uart.cs ├── Pages │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── Convert.cs │ ├── ConvertPage.xaml │ ├── ConvertPage.xaml.cs │ ├── DataShowPage.xaml │ ├── DataShowPage.xaml.cs │ ├── EncodingFixPage.xaml │ ├── EncodingFixPage.xaml.cs │ ├── MqttTestPage.xaml │ ├── MqttTestPage.xaml.cs │ ├── OnlineScriptsPage.xaml │ ├── OnlineScriptsPage.xaml.cs │ ├── PlotPage.xaml │ ├── PlotPage.xaml.cs │ ├── SerialMonitorPage.xaml │ ├── SerialMonitorPage.xaml.cs │ ├── SocketClientPage.xaml │ ├── SocketClientPage.xaml.cs │ ├── TcpLocalPage.xaml │ ├── TcpLocalPage.xaml.cs │ ├── UdpLocalPage.xaml │ ├── UdpLocalPage.xaml.cs │ ├── WinUSBPage.xaml │ ├── WinUSBPage.xaml.cs │ ├── tcpTest.xaml │ └── tcpTest.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Tools │ ├── Global.cs │ ├── InputDialog.cs │ ├── Logger.cs │ └── Win32.cs ├── View │ ├── InputDialogWindow.xaml │ ├── InputDialogWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── SettingWindow.xaml │ └── SettingWindow.xaml.cs ├── costura32 │ ├── serial_monitor.dll │ └── xlua.dll ├── costura64 │ ├── serial_monitor.dll │ └── xlua.dll ├── languages │ ├── en-US.xaml │ └── zh-CN.xaml ├── llcom.csproj ├── llcom.ico └── packages.config ├── privacy-policy.md └── scripts ├── readme.md ├── tcptest.lua └── 自动回复.lua /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/issue_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/.github/workflows/issue_check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/LICENSE -------------------------------------------------------------------------------- /LuaApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/LuaApi.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/README_EN.md -------------------------------------------------------------------------------- /WapProj/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /WapProj/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /WapProj/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /WapProj/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /WapProj/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /WapProj/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WapProj/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /WapProj/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /WapProj/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /WapProj/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /WapProj/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /WapProj/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /WapProj/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /WapProj/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /WapProj/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WapProj/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /WapProj/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /WapProj/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /WapProj/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /WapProj/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WapProj/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /WapProj/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /WapProj/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /WapProj/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /WapProj/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /WapProj/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /WapProj/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /WapProj/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /WapProj/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /WapProj/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /WapProj/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /WapProj/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WapProj/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /WapProj/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/Package.appxmanifest -------------------------------------------------------------------------------- /WapProj/WapProj.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/WapProj/WapProj.wapproj -------------------------------------------------------------------------------- /changlog/autoUpdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/changlog/autoUpdate.xml -------------------------------------------------------------------------------- /changlog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/changlog/index.html -------------------------------------------------------------------------------- /image/icon-resharper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/image/icon-resharper.svg -------------------------------------------------------------------------------- /image/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/image/screen.png -------------------------------------------------------------------------------- /image/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/image/screen2.jpg -------------------------------------------------------------------------------- /image/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/image/screen3.png -------------------------------------------------------------------------------- /image/screen3EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/image/screen3EN.png -------------------------------------------------------------------------------- /image/screenEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/image/screenEN.png -------------------------------------------------------------------------------- /llcom.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom.sln -------------------------------------------------------------------------------- /llcom/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/App.config -------------------------------------------------------------------------------- /llcom/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/App.xaml -------------------------------------------------------------------------------- /llcom/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/App.xaml.cs -------------------------------------------------------------------------------- /llcom/DefaultFiles/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/LICENSE -------------------------------------------------------------------------------- /llcom/DefaultFiles/core_script/JSON.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/core_script/JSON.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/core_script/head.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/core_script/head.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/core_script/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/core_script/log.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/core_script/strings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/core_script/strings.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/core_script/sys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/core_script/sys.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/libusb-1.0-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/libusb-1.0-x64.dll -------------------------------------------------------------------------------- /llcom/DefaultFiles/libusb-1.0-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/libusb-1.0-x86.dll -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_recv_convert/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_recv_convert/default.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_recv_convert/绘制曲线-多条.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_recv_convert/绘制曲线-多条.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_recv_convert/绘制曲线-解析结构体.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_recv_convert/绘制曲线-解析结构体.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_recv_convert/绘制曲线.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_recv_convert/绘制曲线.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_run/AT控制TCP连接-快发模式.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_run/AT控制TCP连接-快发模式.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_run/AT控制TCP连接-慢发模式.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_run/AT控制TCP连接-慢发模式.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_run/channel-demo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_run/channel-demo.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_run/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_run/example.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_run/循环发送快捷发送区数据.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_run/循环发送快捷发送区数据.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_send_convert/16进制数据.lua: -------------------------------------------------------------------------------- 1 | return uartData:fromHex() 2 | --这是表示输入值为16进制数 3 | 4 | --比如31 32 33 34 5 | --会被处理成1234 -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_send_convert/GPS NMEA.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_send_convert/GPS NMEA.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_send_convert/checksum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_send_convert/checksum.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_send_convert/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_send_convert/default.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_send_convert/加上换行回车.lua: -------------------------------------------------------------------------------- 1 | return uartData.."\r\n" 2 | --这个是加上换行回车 3 | -------------------------------------------------------------------------------- /llcom/DefaultFiles/user_script_send_convert/解析换行回车的转义字符.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/user_script_send_convert/解析换行回车的转义字符.lua -------------------------------------------------------------------------------- /llcom/DefaultFiles/反馈网址.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/DefaultFiles/反馈网址.txt -------------------------------------------------------------------------------- /llcom/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/FodyWeavers.xml -------------------------------------------------------------------------------- /llcom/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/FodyWeavers.xsd -------------------------------------------------------------------------------- /llcom/Lib/XLua.Mini.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Lib/XLua.Mini.dll -------------------------------------------------------------------------------- /llcom/Lua.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Lua.xshd -------------------------------------------------------------------------------- /llcom/LuaEnv/LuaApis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/LuaEnv/LuaApis.cs -------------------------------------------------------------------------------- /llcom/LuaEnv/LuaEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/LuaEnv/LuaEnv.cs -------------------------------------------------------------------------------- /llcom/LuaEnv/LuaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/LuaEnv/LuaLoader.cs -------------------------------------------------------------------------------- /llcom/LuaEnv/LuaRunEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/LuaEnv/LuaRunEnv.cs -------------------------------------------------------------------------------- /llcom/Model/LinePlotPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Model/LinePlotPoint.cs -------------------------------------------------------------------------------- /llcom/Model/LuaFolding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Model/LuaFolding.cs -------------------------------------------------------------------------------- /llcom/Model/OnlineScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Model/OnlineScript.cs -------------------------------------------------------------------------------- /llcom/Model/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Model/Settings.cs -------------------------------------------------------------------------------- /llcom/Model/ToSendData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Model/ToSendData.cs -------------------------------------------------------------------------------- /llcom/Model/Uart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Model/Uart.cs -------------------------------------------------------------------------------- /llcom/Pages/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/AboutPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/AboutPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/Convert.cs -------------------------------------------------------------------------------- /llcom/Pages/ConvertPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/ConvertPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/ConvertPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/ConvertPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/DataShowPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/DataShowPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/DataShowPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/DataShowPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/EncodingFixPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/EncodingFixPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/EncodingFixPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/EncodingFixPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/MqttTestPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/MqttTestPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/MqttTestPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/MqttTestPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/OnlineScriptsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/OnlineScriptsPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/OnlineScriptsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/OnlineScriptsPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/PlotPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/PlotPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/PlotPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/PlotPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/SerialMonitorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/SerialMonitorPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/SerialMonitorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/SerialMonitorPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/SocketClientPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/SocketClientPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/SocketClientPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/SocketClientPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/TcpLocalPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/TcpLocalPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/TcpLocalPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/TcpLocalPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/UdpLocalPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/UdpLocalPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/UdpLocalPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/UdpLocalPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/WinUSBPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/WinUSBPage.xaml -------------------------------------------------------------------------------- /llcom/Pages/WinUSBPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/WinUSBPage.xaml.cs -------------------------------------------------------------------------------- /llcom/Pages/tcpTest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/tcpTest.xaml -------------------------------------------------------------------------------- /llcom/Pages/tcpTest.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Pages/tcpTest.xaml.cs -------------------------------------------------------------------------------- /llcom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /llcom/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /llcom/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Properties/Resources.resx -------------------------------------------------------------------------------- /llcom/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /llcom/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Properties/Settings.settings -------------------------------------------------------------------------------- /llcom/Tools/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Tools/Global.cs -------------------------------------------------------------------------------- /llcom/Tools/InputDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Tools/InputDialog.cs -------------------------------------------------------------------------------- /llcom/Tools/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Tools/Logger.cs -------------------------------------------------------------------------------- /llcom/Tools/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/Tools/Win32.cs -------------------------------------------------------------------------------- /llcom/View/InputDialogWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/View/InputDialogWindow.xaml -------------------------------------------------------------------------------- /llcom/View/InputDialogWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/View/InputDialogWindow.xaml.cs -------------------------------------------------------------------------------- /llcom/View/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/View/MainWindow.xaml -------------------------------------------------------------------------------- /llcom/View/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/View/MainWindow.xaml.cs -------------------------------------------------------------------------------- /llcom/View/SettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/View/SettingWindow.xaml -------------------------------------------------------------------------------- /llcom/View/SettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/View/SettingWindow.xaml.cs -------------------------------------------------------------------------------- /llcom/costura32/serial_monitor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/costura32/serial_monitor.dll -------------------------------------------------------------------------------- /llcom/costura32/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/costura32/xlua.dll -------------------------------------------------------------------------------- /llcom/costura64/serial_monitor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/costura64/serial_monitor.dll -------------------------------------------------------------------------------- /llcom/costura64/xlua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/costura64/xlua.dll -------------------------------------------------------------------------------- /llcom/languages/en-US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/languages/en-US.xaml -------------------------------------------------------------------------------- /llcom/languages/zh-CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/languages/zh-CN.xaml -------------------------------------------------------------------------------- /llcom/llcom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/llcom.csproj -------------------------------------------------------------------------------- /llcom/llcom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/llcom.ico -------------------------------------------------------------------------------- /llcom/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/llcom/packages.config -------------------------------------------------------------------------------- /privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/privacy-policy.md -------------------------------------------------------------------------------- /scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/scripts/readme.md -------------------------------------------------------------------------------- /scripts/tcptest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/scripts/tcptest.lua -------------------------------------------------------------------------------- /scripts/自动回复.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenxuuu/llcom/HEAD/scripts/自动回复.lua --------------------------------------------------------------------------------