├── .gitignore ├── README.md ├── fs ├── index.html └── init.js ├── mos.yml └── src └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | deps/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongoose-os-apps/shelly1/HEAD/README.md -------------------------------------------------------------------------------- /fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongoose-os-apps/shelly1/HEAD/fs/index.html -------------------------------------------------------------------------------- /fs/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongoose-os-apps/shelly1/HEAD/fs/init.js -------------------------------------------------------------------------------- /mos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongoose-os-apps/shelly1/HEAD/mos.yml -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongoose-os-apps/shelly1/HEAD/src/main.c --------------------------------------------------------------------------------