├── mcunode
├── conf
│ └── app.conf
├── controllers
│ ├── term.go
│ ├── default.go
│ ├── websocket.go
│ ├── proxy.go
│ └── mcuserver.go
├── static
│ ├── css
│ │ ├── common.css
│ │ ├── style.css
│ │ ├── neat.css
│ │ ├── codemirror.css
│ │ └── xterm.css
│ └── js
│ │ ├── lua.min.js
│ │ ├── matchbrackets.js
│ │ ├── mcunode.js
│ │ └── bootstrap.min.js
├── routers
│ └── router.go
├── main.go
├── models
│ └── archive.go
├── build.bat
├── build.sh
└── views
│ ├── terminal.html
│ └── index.html
├── NODEMCU Lua Demo(template file included)
├── WebProxyDemo
│ ├── 简版远程LED控制
│ │ ├── readme.txt
│ │ ├── 截图.png
│ │ ├── indextpl.html
│ │ ├── init.lua
│ │ └── mcunode.lua
│ ├── README.md
│ └── LEDremote
│ │ ├── 截图.png
│ │ ├── README.md
│ │ ├── indextpl.html
│ │ ├── init.lua
│ │ └── mcunode.lua
├── OnLineTerminalAndOTG
│ ├── README.md
│ └── init.lua
├── nodemcu_code_lib and demo
│ ├── README.md
│ ├── indextpl.html
│ ├── init.lua
│ └── mcunode.lua
└── README.md
├── imgs
├── download.png
├── mcunode.png
├── webProxy.png
└── ledRemote.png
├── .idea
├── vcs.xml
└── encodings.xml
├── LICENSE
└── README.md
/mcunode/conf/app.conf:
--------------------------------------------------------------------------------
1 | httpport = 80
2 |
--------------------------------------------------------------------------------
/NODEMCU Lua Demo(template file included)/WebProxyDemo/简版远程LED控制/readme.txt:
--------------------------------------------------------------------------------
1 | init.lua
--------------------------------------------------------------------------------
/NODEMCU Lua Demo(template file included)/WebProxyDemo/README.md:
--------------------------------------------------------------------------------
1 | ## 本文件夹的含多个mcunode网页代理实例
2 |
--------------------------------------------------------------------------------
/imgs/download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IoTServ/McuNode-server/HEAD/imgs/download.png
--------------------------------------------------------------------------------
/imgs/mcunode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IoTServ/McuNode-server/HEAD/imgs/mcunode.png
--------------------------------------------------------------------------------
/imgs/webProxy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IoTServ/McuNode-server/HEAD/imgs/webProxy.png
--------------------------------------------------------------------------------
/imgs/ledRemote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IoTServ/McuNode-server/HEAD/imgs/ledRemote.png
--------------------------------------------------------------------------------
/NODEMCU Lua Demo(template file included)/OnLineTerminalAndOTG/README.md:
--------------------------------------------------------------------------------
1 | #### 不使用库的远程IDE nodemcu端,需要配置id和wifi信息
2 |
--------------------------------------------------------------------------------
/NODEMCU Lua Demo(template file included)/nodemcu_code_lib and demo/README.md:
--------------------------------------------------------------------------------
1 | ### mcunode.lua库的简单使用,可以远程IDE,远程网页代理(简单)
2 |
--------------------------------------------------------------------------------
/NODEMCU Lua Demo(template file included)/WebProxyDemo/LEDremote/截图.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IoTServ/McuNode-server/HEAD/NODEMCU Lua Demo(template file included)/WebProxyDemo/LEDremote/截图.png
--------------------------------------------------------------------------------
/NODEMCU Lua Demo(template file included)/WebProxyDemo/简版远程LED控制/截图.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/IoTServ/McuNode-server/HEAD/NODEMCU Lua Demo(template file included)/WebProxyDemo/简版远程LED控制/截图.png
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |