« Back to project details
Newest
-
Added backend server to the UI
07/02/2020 at 17:38 • 0 commentsThis webUI is specifically designed to dynamically connect to a WiFi AP using the browser.Usage
- Connect to Access point created by the Raspberry Pi.
- Open up a browser and navigate to http://raspberrypi.local:5000
- Fill up the
SSID
and thepsk
- Click the connect button. Wait for some time(2-3 minutes). Pi will restart itself and now it is good to go!
Dependencies
How to use
- Navigate to the
webui
directory usingcd webui
- Run the command
sudo python <a target="_blank" rel="noopener noreferrer" href="http://app.py">app.py</a>
You can set the server to auto-start on boot using
systemd
-
Autostart server on boot
07/01/2020 at 19:09 • 0 commentsSo, for simplicity of naive users, i will be running a web server(flask, to be precise) in which we need to input the SSID and psk of to AP to which we want to connect. Server still in development. systemd service is ready
- Create a file called
server.service
usingcd sudo nano /lib/systemd/system/server.service
- Add the following contents to the file
[Unit] Description=WiFi conf server After=multi-user.target [Service] Type=idle ExecStart=/usr/bin/python3 /home/pi/webui/app.py [Install] WantedBy=multi-user.target
- Enable the service using
sudo systemctl enable server
- Start the service using
sudo systemctl start server
- Create a file called
-
Improved the UI for responsiveness
07/01/2020 at 05:11 • 0 comments -
Designed the web-ui for the wifi repeater
06/30/2020 at 18:20 • 0 comments