https://github.com/timf34/jetsonwifimanager
https://github.com/timf34/jetsonwifimanager
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/timf34/jetsonwifimanager
- Owner: timf34
- Created: 2023-06-14T13:15:05.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-28T01:02:52.000Z (almost 3 years ago)
- Last Synced: 2025-03-06T10:32:06.123Z (about 1 year ago)
- Language: Shell
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JetsonWiFiManager
### Overview
This project contains three scripts:
- `run_wifi.sh`
- This contains the other two scripts
- Make it executable by running `chmod +x run_wifi.sh`
- Run it by running `sudo ./run_wifi.sh`
- `ap.sh`:
- Creates an access point on the Jetson
- `server.py`
- Runs a web server on the Jetson which allows us to input the SSID and password of the network we want to connect to
- The Jetson will then connect to that network and the access point will be disabled
Once connected to the AP, connect to the web server by going to `http://192.168.42.1:80` from your laptop or other connected device!
### Running the scripts
1. `sudo bash ap.sh`
2. `sudo python3 server.py`
Note that `sudo` is required for both scripts.
...