├── .gitignore ├── LICENSE ├── README.md ├── conf └── app.conf ├── controllers ├── default.go └── serial.go ├── main.go ├── routers └── router.go ├── static ├── bootstrap-3.3.7 │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js └── js │ └── jquery.min.js ├── tests └── default_test.go └── views └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # serialTool 2 | ## 1. 概述 3 | 一个简单的web串口工具,基于beego和bootstrap构建。 4 | ## 2. 功能 5 | . websocket推送收到的数据到浏览器 6 | . 增加16进制收发 7 | -------------------------------------------------------------------------------- /conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/conf/app.conf -------------------------------------------------------------------------------- /controllers/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/controllers/default.go -------------------------------------------------------------------------------- /controllers/serial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/controllers/serial.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/main.go -------------------------------------------------------------------------------- /routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/routers/router.go -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/bootstrap-3.3.7/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/bootstrap-3.3.7/js/npm.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /tests/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/tests/default_test.go -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekemuyu/serialTool/HEAD/views/index.html --------------------------------------------------------------------------------