-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.js
More file actions
50 lines (44 loc) · 1 KB
/
query.js
File metadata and controls
50 lines (44 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const QMOD = [
"working_mode"
];
const QPIGS = [
"grid_voltage",
"grid_frequency",
"ac_output_voltage",
"ac_output_frequency",
"ac_output_apparent_power",
"ac_output_active_power",
"output_load_percent",
"bus_voltage",
"battery_voltage",
"battery_charging_current",
"battery_capacity",
"inverter_heat_sink_temperature",
"pv1_input_current",
"pv1_input_voltage",
"battery_voltage_from_scc",
"battery_discharge_current",
"device_status",
"battery_voltage_offset_for_fans_on",
"eeprom_version",
"pv1_charging_power",
"device_status_2",
"solar_feed_to_grid_status",
"set_country_customized_regulation",
"solar_feed_to_grid_power"
];
const QPIGS2 = [
"pv2_input_current",
"pv2_input_voltage",
"pv2_charging_power",
];
const QET = [
"total_generated_energy"
];
const QLT = [
"total_output_load_energy"
];
const QED = [
"generated_energy_today"
];
module.exports = { QMOD, QPIGS, QPIGS2, QET, QLT, QED }