├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── bin └── www ├── config.example.json ├── lib └── pandocloud-api.js ├── middlewares └── wechat-auth.js ├── models ├── init.sql ├── pool.js └── user_device.js ├── package.json ├── public ├── common │ ├── css │ │ ├── devices.css │ │ └── wifi-config.css │ ├── img │ │ ├── right.png │ │ └── wifi.png │ └── js │ │ ├── devices.js │ │ └── wifi-config.js ├── javascripts │ ├── common.js │ ├── zepto.min.js │ └── zepto.touch.js └── stylesheets │ ├── common.css │ ├── loading.gif │ └── style.css ├── routes ├── api.js ├── common.js ├── report.js └── wechat.js ├── test └── api.js └── views ├── devices-add.ejs ├── devices.ejs ├── error.ejs ├── footer.ejs ├── header.ejs ├── index.ejs └── wifi-config.ejs /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | config.json 3 | log/* 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/bin/www -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/config.example.json -------------------------------------------------------------------------------- /lib/pandocloud-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/lib/pandocloud-api.js -------------------------------------------------------------------------------- /middlewares/wechat-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/middlewares/wechat-auth.js -------------------------------------------------------------------------------- /models/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/models/init.sql -------------------------------------------------------------------------------- /models/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/models/pool.js -------------------------------------------------------------------------------- /models/user_device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/models/user_device.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/package.json -------------------------------------------------------------------------------- /public/common/css/devices.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/common/css/devices.css -------------------------------------------------------------------------------- /public/common/css/wifi-config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/common/css/wifi-config.css -------------------------------------------------------------------------------- /public/common/img/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/common/img/right.png -------------------------------------------------------------------------------- /public/common/img/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/common/img/wifi.png -------------------------------------------------------------------------------- /public/common/js/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/common/js/devices.js -------------------------------------------------------------------------------- /public/common/js/wifi-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/common/js/wifi-config.js -------------------------------------------------------------------------------- /public/javascripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/javascripts/common.js -------------------------------------------------------------------------------- /public/javascripts/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/javascripts/zepto.min.js -------------------------------------------------------------------------------- /public/javascripts/zepto.touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/javascripts/zepto.touch.js -------------------------------------------------------------------------------- /public/stylesheets/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/stylesheets/common.css -------------------------------------------------------------------------------- /public/stylesheets/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/stylesheets/loading.gif -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/routes/api.js -------------------------------------------------------------------------------- /routes/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/routes/common.js -------------------------------------------------------------------------------- /routes/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/routes/report.js -------------------------------------------------------------------------------- /routes/wechat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/routes/wechat.js -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/test/api.js -------------------------------------------------------------------------------- /views/devices-add.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/views/devices-add.ejs -------------------------------------------------------------------------------- /views/devices.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/views/devices.ejs -------------------------------------------------------------------------------- /views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/views/error.ejs -------------------------------------------------------------------------------- /views/footer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/views/footer.ejs -------------------------------------------------------------------------------- /views/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/views/header.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/wifi-config.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/free-iot/freeiot-wechat/HEAD/views/wifi-config.ejs --------------------------------------------------------------------------------