45 lines
815 B
Markdown
45 lines
815 B
Markdown
# fintic
|
|
## Install instructions
|
|
|
|
Run these commands in the directory you want to put the app and press enter during the setup whenever it asks for confirmation
|
|
```console
|
|
sudo apt-get update
|
|
sudo apt-get install git
|
|
git clone https://github.com/zcqsntr/fintic --recursive
|
|
|
|
cd fintic
|
|
./setup.sh
|
|
```
|
|
|
|
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:
|
|
```console
|
|
dtparam=audio=off
|
|
```
|
|
|
|
then reboot the pi with
|
|
```console
|
|
sudo reboot now
|
|
```
|
|
|
|
## Run instructions
|
|
|
|
```console
|
|
python3 server.py
|
|
```
|
|
in broswer go to url http://raspberrypi.local:1024
|
|
|
|
## Notes
|
|
|
|
|
|
To conver bdf font to pil format do pilfont.py <font filename>
|
|
pillow v 5.4.1 works, but version 8.2.0 breaks
|
|
|
|
|
|
|
|
|
|
|