-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
35 lines (35 loc) · 995 Bytes
/
appsettings.json
File metadata and controls
35 lines (35 loc) · 995 Bytes
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
{
"MaxErrors": 2,
"Routing": {
"DataSource": "Huawei || Growatt",
"Target": "ChargeHQ"
},
"IoTaWatt": {
"IPAddress": "IP Address of the Power Sensor",
"PollRate": 1
},
"Growatt": {
"BaseURI": "https://server.growatt.com/",
"Username":"UsernameHere",
"Password": "SystemCodeHere",
"PollRate": 5,
"UseBatteryData": true
},
"Huawei": {
"BaseURI": "https://intl.fusionsolar.huawei.com/",
"Username":"UsernameHere",
"Password": "SystemCodeHere",
"StationName": "StationNameHere",
"UseGridMeterData": true,
"UsePowerSensorData": true,
"UseBatteryData": true
},
"ChargeHQ": {
"PushURI": "https://api.chargehq.net/api/public/push-solar-data",
"ApiKey": "API KEY HERE"
},
"Serilog" : {
"Using": [ "Serilog.Sinks.Console" ],
"MinimumLevel": "Information"
}
}