From fad350b03f66ceb935c986fa2336e04af528c22f Mon Sep 17 00:00:00 2001 From: gertjan Date: Fri, 13 Mar 2026 10:27:00 +0100 Subject: [PATCH] From RPi4, also with start and stop scripts --- .gitignore | 1 + requirements.txt | 17 +++++++++++++++++ start | 1 + status | 1 + stop | 1 + 5 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 requirements.txt create mode 100755 start create mode 100755 status create mode 100755 stop diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..21d0b89 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venv/ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..20d01ec --- /dev/null +++ b/requirements.txt @@ -0,0 +1,17 @@ +contourpy==1.3.3 +cycler==0.12.1 +fonttools==4.61.1 +kiwisolver==1.4.9 +matplotlib==3.10.8 +numpy==2.4.2 +packaging==26.0 +pandas==3.0.0 +pandas-stubs==3.0.0.260204 +pillow==12.1.1 +pyparsing==3.3.2 +python-dateutil==2.9.0.post0 +six==1.17.0 +telnetlib3==2.4.0 +tzdata==2025.3 +wcwidth==0.6.0 + diff --git a/start b/start new file mode 100755 index 0000000..9f5833a --- /dev/null +++ b/start @@ -0,0 +1 @@ +systemctl --user start python-scanner diff --git a/status b/status new file mode 100755 index 0000000..9d68bba --- /dev/null +++ b/status @@ -0,0 +1 @@ +systemctl --user status python-scanner diff --git a/stop b/stop new file mode 100755 index 0000000..ff5550b --- /dev/null +++ b/stop @@ -0,0 +1 @@ +systemctl --user stop python-scanner