Merge branch 'master' of https://github.com/fin-tic/fintic
This commit is contained in:
commit
b038a574d0
39
README.md
39
README.md
@ -16,26 +16,32 @@ Now to turn off the audio circuit open the config file with
|
||||
```console
|
||||
sudo nano /boot/config.txt
|
||||
```
|
||||
look for the dtparam=audio option and turn it to off, the line should look like this:
|
||||
look for the dtparam=audio option and turn it to off, the line should look like this. And disable bluetooth, change temp limit:
|
||||
```console
|
||||
dtparam=audio=off
|
||||
dtoverlay=disable-bt
|
||||
temp_soft_limit=70
|
||||
```
|
||||
```console
|
||||
nano /boot/config.txt
|
||||
sudo nano /boot/config.txt
|
||||
```
|
||||
temp_soft_limit=70
|
||||
|
||||
```console
|
||||
nano /boot/cmdline.txt
|
||||
sudo nano /boot/cmdline.txt
|
||||
```
|
||||
isolcpus=3
|
||||
|
||||
|
||||
enable ssh
|
||||
|
||||
disable bluetooth
|
||||
|
||||
disable hdmi
|
||||
```console
|
||||
cd /Volumes/boot
|
||||
touch ssh
|
||||
```
|
||||
disable hdmi, add this line above exit 0
|
||||
```console
|
||||
sudo nano /etc/rc.local
|
||||
/usr/bin/tvservice -o
|
||||
```
|
||||
|
||||
then reboot the pi with
|
||||
```console
|
||||
@ -58,6 +64,18 @@ add the line
|
||||
dont forget the ampersand!
|
||||
|
||||
also make sure that the paths in startup.sh are correct for your install location
|
||||
|
||||
## Install the hotspot
|
||||
```console
|
||||
cd ~
|
||||
curl "https://www.raspberryconnect.com/images/hsinstaller/AutoHotspot-Setup.tar.gz" -o AutoHotspot-Setup.tar.gz
|
||||
tar -xzvf AutoHotspot-Setup.tar.gz
|
||||
cd Autohotspot
|
||||
sudo ./autohotspot-setup.sh
|
||||
```
|
||||
Choose option 2, then option 7 to change the SSID and password (for some reason it didnt work with the default SSID and password).
|
||||
|
||||
Then you can connect to the network and go to http://fintic.local:1024 or http://10.0.0.5:1024 and enter wifi information, then reboot
|
||||
|
||||
|
||||
## Change the hostname
|
||||
@ -74,10 +92,11 @@ You then connect to the server using the url fintic.local:1024
|
||||
## Run instructions
|
||||
|
||||
```console
|
||||
python3 server.py
|
||||
sudo -E python3 server.py
|
||||
```
|
||||
in broswer go to url http://raspberrypi.local:1024
|
||||
in browser go to url http://raspberrypi.local:1024
|
||||
|
||||
If it doesnt work because of a missing package try running setup.sh again, sometimes it fails to connect to the package repos
|
||||
## Notes
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user