├── LICENSE ├── README.md ├── mos.yml └── shot.png /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2017 Cesanta Software Limited 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Setup WiFi via Web UI 2 | 3 | ## Overview 4 | 5 | - Do not configure WiFi - leave the module in AP (Access Point mode). 6 | - Mongoose OS starts a WiFi network called `Mongoose_XXXXXX` with password 7 | `Mongoose`. Switch your workstation to that WiFi network 8 | - Point your browser to http://192.168.4.1 9 | - You'll see a simple form to configure WiFi network & password 10 | 11 | ![Screenshot](shot.png) 12 | 13 | -------------------------------------------------------------------------------- /mos.yml: -------------------------------------------------------------------------------- 1 | author: mongoose-os 2 | description: Setup WiFi via Web UI 3 | version: 1.0 4 | 5 | libs_version: ${mos.version} 6 | modules_version: ${mos.version} 7 | mongoose_os_version: ${mos.version} 8 | 9 | libs: 10 | - origin: https://github.com/mongoose-os-libs/boards 11 | - origin: https://github.com/mongoose-os-libs/ca-bundle 12 | - origin: https://github.com/mongoose-os-libs/http-server 13 | - origin: https://github.com/mongoose-os-libs/rpc-service-config 14 | - origin: https://github.com/mongoose-os-libs/rpc-service-fs 15 | - origin: https://github.com/mongoose-os-libs/rpc-uart 16 | - origin: https://github.com/mongoose-os-libs/wifi 17 | - origin: https://github.com/mongoose-os-libs/wifi-setup-web-ui 18 | 19 | tags: 20 | - wifi 21 | 22 | manifest_version: 2017-05-18 23 | -------------------------------------------------------------------------------- /shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongoose-os-apps/wifi-setup-web/db86031ba36391d447c1925464f1bb908923c6b0/shot.png --------------------------------------------------------------------------------