diff --git a/plugins/solar/deye b/plugins/solar/deye index dd9a4b11..e69392d2 100644 --- a/plugins/solar/deye +++ b/plugins/solar/deye @@ -81,40 +81,40 @@ fi if [ "$1" = "config" ]; then # setze optionen - echo multigraph current_power - echo graph_title Deye current Power - echo 'graph_vlabel watt' - echo 'graph_category sensors' - echo 'graph_args -l 0' + echo "multigraph current_power" + echo "graph_title Deye current Power" + echo "graph_vlabel watt" + echo "graph_category sensors" + echo "graph_args -l 0" echo "graph_info Current generated power in Watt." - echo current_power.label watt + echo "current_power.label watt" - echo multigraph daily_yield - echo graph_title Deye daily Yield - echo 'graph_vlabel kWh' - echo 'graph_category sensors' - echo 'graph_args -l 0' + echo "multigraph daily_yield" + echo "graph_title Deye daily Yield" + echo "graph_vlabel kWh" + echo "graph_category sensors" + echo "graph_args -l 0" echo "graph_info Power generated today." - echo daily_yield.label kWh - echo daily_yield.draw AREA + echo "daily_yield.label kWh" + echo "daily_yield.draw AREA" - echo multigraph total_yield - echo graph_title Deye Total Yield - echo 'graph_vlabel kWh' - echo 'graph_category sensors' - echo 'graph_args -l 0' + echo "multigraph total_yield" + echo "graph_title Deye Total Yield" + echo "graph_vlabel kWh" + echo "graph_category sensors" + echo "graph_args -l 0" echo "graph_info Total generated power." - echo total_yield.label kWh - echo total_yield.draw AREA + echo "total_yield.label kWh" + echo "total_yield.draw AREA" - echo multigraph reachable - echo graph_title Deye inverter reachable - echo 'graph_vlabel on/off' - echo 'graph_category sensors' - echo 'graph_args -l 0' + echo "multigraph reachable" + echo "graph_title Deye inverter reachable" + echo "graph_vlabel on/off" + echo "graph_category sensors" + echo "graph_args -l 0" echo "graph_info Is the Inverter is reachable? 1 is On, 0 is Off" - echo reachable.label on/off - echo reachable.draw AREA + echo "reachable.label on/off" + echo "reachable.draw AREA" exit 0 fi