-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.default.json
53 lines (53 loc) · 1.39 KB
/
config.default.json
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
51
52
53
{
"database":{
"path":"/home/pi/smadata/SBFspot.db"
},
"data_interfaces":{
"serial":{
"enabled":"true",
"path":"/dev/serial0",
"baudrate":115200,
"timeout":1,
"interfaces":[
{
"type":"inverter",
"serial_id":"1000000001",
"name":"My Power Plant",
"inverter_type":"XYZ",
"prev_etotal":0,
"pulses_per_kwh":1000
}
]
},
"network":{
"enabled":"true",
"nodes":[
{
"node_name": "WT32-ETH01 ITRON",
"url": "http://192.168.1.3/",
"method": "POST",
"timeout": 5,
"interfaces": [
{
"serial_id": "9999999991",
"name": "Consumption",
"type": "consumption",
"reading": "absolute",
"unit": "Wh"
},
{
"serial_id": "9999999992",
"name": "Grid feed",
"type": "production",
"reading": "absolute",
"unit": "kWh",
"offset_inverters_with_serial_id": [
"1000000001"
]
}
]
}
]
}
}
}