summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Scheibe <mail@robert-scheibe.de>2025-01-11 19:36:13 +0100
committerRobert Scheibe <mail@robert-scheibe.de>2025-01-11 19:36:13 +0100
commit1b494e6d3e7da116e34f915269892b5e8c752271 (patch)
treee16c991f5822008e5ceaa87eec34aa7223e1f116
parent45d0333ed05738f82806fee58cc7031698b8481b (diff)
deploy script better, plot label correctedmain
-rwxr-xr-xdeploy.sh6
-rwxr-xr-xplot.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/deploy.sh b/deploy.sh
index 6069922..ebd255e 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
-scp favicon.ico plot.py read_sensors.py water_the_plant create_backup make_photo index.html history.html *.png robert@waterpi:
+scp favicon.ico plot.py read_sensors.py water_the_plant create_backup make_photo index.html history.html bck.png error.png fbck.png ffwd.png fwd.png stop.png robert@waterpi:
ssh robert@waterpi -C '\
- sudo cp favicon.ico index.html history.html *.png /var/www/html; \
+ sudo mv favicon.ico index.html history.html bck.png error.png fbck.png ffwd.png fwd.png stop.png /var/www/html; \
sudo chown www-data:www-data /var/www/html/*.html /var/www/html/*.png; \
- sudo cp plot.py read_sensors.py create_backup make_photo read_temperature.py water_the_plant /usr/local/bin'
+ sudo mv plot.py read_sensors.py create_backup make_photo read_temperature.py water_the_plant /usr/local/bin'
diff --git a/plot.py b/plot.py
index ea80b03..dac7457 100755
--- a/plot.py
+++ b/plot.py
@@ -85,7 +85,7 @@ def create_temperature_humidity_plot(records, output_filename):
# Feuchtigkeitsplot (dritte Y-Achse)
ax3 = ax1.twinx()
ax3.spines['right'].set_position(('outward', 60)) # Platz für die dritte Achse schaffen
- ax3.set_ylabel('Feuchtigkeit (16-32k)', color='tab:green')
+ ax3.set_ylabel('<-feucht trocken->', color='tab:green')
ax3.plot(times, moistures, color='tab:green', label='Feuchtigkeit')
ax3.tick_params(axis='y', labelcolor='tab:green')
ax3.set_ylim(min_moisture, max_moisture)