So, 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
sudo systemctl enable server
sudo systemctl start server
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.