diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-08-31 23:34:19 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-08-31 23:34:19 +0300 |
commit | 5015a473032806718eeaa601c3099a93d5bfff73 (patch) | |
tree | 3b4957fc0c6ca48a2b9f7efbf0172c7e2fe2473c /localwebsite/handlers | |
parent | 60f17a3fc28de2f8c3694ecdb765fb51c718760a (diff) |
lws/inverter: fix ac input line
Diffstat (limited to 'localwebsite/handlers')
-rw-r--r-- | localwebsite/handlers/InverterHandler.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/localwebsite/handlers/InverterHandler.php b/localwebsite/handlers/InverterHandler.php index 7878c4f..cb6571d 100644 --- a/localwebsite/handlers/InverterHandler.php +++ b/localwebsite/handlers/InverterHandler.php @@ -69,9 +69,9 @@ class InverterHandler extends RequestHandler $status['pv1_input_power']['unit']); if ($status['grid_voltage']['value'] > 0 or $status['grid_freq']['value'] > 0) { - $html .= "\n".sprintf('<b>Generator:</b> %s %s', - $status['grid_voltage']['unit'], - $status['grid_voltage']['value']); + $html .= "\n".sprintf('<b>A/C input:</b> %s %s', + $status['grid_voltage']['value'], + $status['grid_voltage']['unit']); $html .= sprintf(', %s %s', $status['grid_freq']['value'], $status['grid_freq']['unit']); |