forked from tagyoureit/nodejs-poolController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
102 lines (102 loc) · 2.17 KB
/
config.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"Equipment": {
"intellicom": 0,
"intellitouch": 1,
"pumpOnly": 0,
"numberOfPumps": 0,
"chlorinator": 0,
"appAddress": 33
},
"Misc": {
"expressPort": 3000,
"expressTransport": "http",
"expressAuth": 0,
"expressAuthFile": "/users.htpasswd"
},
"Network": {
"rs485Port": "/dev/ttyUSB0",
"netConnect": 0,
"netHost": "raspberrypi",
"netPort": 9801
},
"FriendlyNames": [{
"blank": ""
}, {
"circuit1": ""
}, {
"circuit2": ""
}, {
"circuit3": ""
}, {
"circuit4": ""
}, {
"circuit5": ""
}, {
"circuit6": ""
}, {
"circuit7": ""
}, {
"circuit8": ""
}, {
"circuit9": ""
}, {
"circuit10": ""
}, {
"circuit11": ""
}, {
"circuit12": ""
}, {
"circuit13": ""
}, {
"circuit14": ""
}, {
"circuit15": ""
}, {
"circuit16": ""
}],
"Log": {
"logLevel": "info",
"extLogLevel": "info",
"logPumpMessages": 0,
"logDuplicateMessages": 0,
"logConsoleNotDecoded": 0,
"logConfigMessages": 0,
"logMessageDecoding": 0,
"logChlorinator": 0,
"logPacketWrites": 0,
"logPumpTimers": 0,
"logApi": 0
},
"Integrations": {
"socketISY": 0,
"alexaskills": 0,
"outputToConsole": 0
},
"socketISY": {
"username": "blank",
"password": "blank",
"ipaddr": "127.0.0.1",
"port": 12345,
"Variables": {
"chlorinator": {
"saltPPM": 16
},
"pump": {
"1": {
"watts": 25,
"rpm": 24,
"currentprogram": 13,
"program1rpm": 10,
"program2rpm": 11,
"program3rpm": 12,
"program4rpm": 13,
"power": 14,
"timer": 15
}
}
}
},
"outputToConsole": {
"level": "warn"
}
}