waterfurnace_aurora 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exe/aurora_fetch +17 -6
- data/exe/aurora_mqtt_bridge +133 -24
- data/exe/web_aid_tool +6 -2
- data/lib/aurora/abc_client.rb +58 -11
- data/lib/aurora/compressor.rb +25 -8
- data/lib/aurora/mock_abc.rb +4 -1
- data/lib/aurora/registers.rb +1 -0
- data/lib/aurora/thermostat.rb +2 -2
- data/lib/aurora/version.rb +1 -1
- data/lib/aurora.rb +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8a3d1e80a8e07d73e5efe83005545f360db3475614333fc434885b3e9143092
|
4
|
+
data.tar.gz: 97ea735ee8991898734b87f810d273bb8fc2000b011f569e9908f4ebcad4d1fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3aea05123fca4194e108b32adde87724547f63e1ef1b9f0a91d4f22856d59b5021f08a998fe3d9956e20f3e745d662001d0beb43d86de69cdd36decb6f5c1af4
|
7
|
+
data.tar.gz: 762f87c0790263751934b592b17252b822276bef351141b49da72d42b953eb6eb3fe553037c71117f8d39e0318bf83b70af4b838905d1e80195860439f117bb9
|
data/exe/aurora_fetch
CHANGED
@@ -8,20 +8,31 @@ require "optparse"
|
|
8
8
|
require "uri"
|
9
9
|
require "yaml"
|
10
10
|
|
11
|
-
debug_modbus = yaml = false
|
11
|
+
debug_modbus = yaml = ignore_missing_registers = false
|
12
12
|
try_individual = nil
|
13
13
|
|
14
14
|
options = OptionParser.new do |opts|
|
15
15
|
opts.banner = "Usage: aurora_fetch /path/to/serial/port REGISTERS [options]"
|
16
16
|
|
17
17
|
opts.separator("")
|
18
|
-
opts.separator(
|
18
|
+
opts.separator(<<~TEXT)
|
19
|
+
Use `known` to fetch all identified registers. Use `valid` to fetch all registers
|
20
|
+
that should respond. Use `all` to search the entire ModBus address space. Note that
|
21
|
+
logging of current progress is only periodic, and does not log every register it's
|
22
|
+
trying to fetch.
|
23
|
+
TEXT
|
19
24
|
opts.separator("")
|
20
25
|
|
21
|
-
opts.on("--debug-modbus", "Print actual protocol bytes")
|
26
|
+
opts.on("--debug-modbus", "Print actual protocol bytes") do
|
27
|
+
debug_modbus = true
|
28
|
+
end
|
22
29
|
opts.on("--[no-]try-individual",
|
23
30
|
"Query registers one-by-one if a range has an illegal address. " \
|
24
31
|
"Defaults to true for `valid` and `known` special registers, false otherwise.") { |v| try_individual = v }
|
32
|
+
opts.on("--ignore-missing-registers",
|
33
|
+
"For YAML input only, just log a warning when a register doesn't exist, instead of failing") do
|
34
|
+
ignore_missing_registers = true
|
35
|
+
end
|
25
36
|
opts.on("-y", "--yaml", "Output raw values as YAML") { yaml = true }
|
26
37
|
opts.on("-v", "--version", "Print version") do
|
27
38
|
puts Aurora::VERSION
|
@@ -40,11 +51,11 @@ unless ARGV.length == 2
|
|
40
51
|
exit 1
|
41
52
|
end
|
42
53
|
|
43
|
-
modbus_slave = Aurora::ABCClient.open_modbus_slave(ARGV[0])
|
54
|
+
modbus_slave = Aurora::ABCClient.open_modbus_slave(ARGV[0], ignore_missing_registers: ignore_missing_registers)
|
44
55
|
modbus_slave.read_retry_timeout = 15
|
45
56
|
modbus_slave.read_retries = 2
|
46
|
-
modbus_slave.logger = Logger.new($
|
47
|
-
modbus_slave.logger.level = debug_modbus ? :debug : :
|
57
|
+
Aurora.logger = modbus_slave.logger = Logger.new($stderr)
|
58
|
+
modbus_slave.logger.level = debug_modbus ? :debug : :info
|
48
59
|
|
49
60
|
registers = Aurora::ABCClient.query_registers(modbus_slave, ARGV[1], try_individual: try_individual)
|
50
61
|
|
data/exe/aurora_mqtt_bridge
CHANGED
@@ -90,30 +90,33 @@ class MQTTBridge
|
|
90
90
|
loop do
|
91
91
|
begin
|
92
92
|
@mutex.synchronize do
|
93
|
-
@
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
93
|
+
@homie.mqtt.batch_publish do
|
94
|
+
@abc.refresh
|
95
|
+
|
96
|
+
components = { @homie_abc => @abc,
|
97
|
+
@aux_heat => @abc.aux_heat,
|
98
|
+
@compressor => @abc.compressor,
|
99
|
+
@blower => @abc.blower,
|
100
|
+
@pump => @abc.pump,
|
101
|
+
@dhw => @abc.dhw,
|
102
|
+
@humidistat => @abc.humidistat }.compact
|
103
|
+
@abc.zones.each_with_index do |z, idx|
|
104
|
+
homie_zone = @homie["zone#{idx + 1}"]
|
105
|
+
components[homie_zone] = z
|
106
|
+
end
|
106
107
|
|
107
|
-
|
108
|
-
|
109
|
-
|
108
|
+
components.each do |(node, object)|
|
109
|
+
node.each do |property|
|
110
|
+
property.value = object.public_send(property.id.tr("-", "_"))
|
111
|
+
end
|
110
112
|
end
|
111
|
-
end
|
112
113
|
|
113
|
-
|
114
|
-
|
114
|
+
@faults["current"].value = @abc.current_fault
|
115
|
+
@abc.faults.each_with_index do |fault_count, i|
|
116
|
+
next if fault_count == 0xffff
|
115
117
|
|
116
|
-
|
118
|
+
@faults["e#{i + 1}"].value = fault_count
|
119
|
+
end
|
117
120
|
end
|
118
121
|
end
|
119
122
|
rescue => e
|
@@ -140,6 +143,31 @@ class MQTTBridge
|
|
140
143
|
@abc.current_mode,
|
141
144
|
format: allowed_modes,
|
142
145
|
hass: { sensor: { state_class: :measurement } })
|
146
|
+
node.property("emergency-shutdown",
|
147
|
+
"Emergency Shutdown Requested",
|
148
|
+
:boolean,
|
149
|
+
@abc.emergency_shutdown?,
|
150
|
+
hass: :binary_sensor)
|
151
|
+
node.property("load-shed",
|
152
|
+
"Load Shed Requested",
|
153
|
+
:boolean,
|
154
|
+
@abc.load_shed?,
|
155
|
+
hass: :binary_sensor)
|
156
|
+
node.property("locked-out",
|
157
|
+
"Is the heat pump currently locked out?",
|
158
|
+
:boolean,
|
159
|
+
@abc.locked_out?,
|
160
|
+
hass: :binary_sensor)
|
161
|
+
node.property("derated",
|
162
|
+
"Is the compressor currently running at a derated level?",
|
163
|
+
:boolean,
|
164
|
+
@abc.derated?,
|
165
|
+
hass: :binary_sensor)
|
166
|
+
node.property("safe-mode",
|
167
|
+
"Is the heat pump currently in safe mode?",
|
168
|
+
:boolean,
|
169
|
+
@abc.safe_mode?,
|
170
|
+
hass: :binary_sensor)
|
143
171
|
node.property("entering-air-temperature",
|
144
172
|
"Entering Air Temperature",
|
145
173
|
:float,
|
@@ -156,6 +184,17 @@ class MQTTBridge
|
|
156
184
|
hass: { sensor: { device_class: :temperature,
|
157
185
|
state_class: :measurement,
|
158
186
|
entity_category: :diagnostic } })
|
187
|
+
node.property("low-pressure-switch",
|
188
|
+
"Low Pressure Switch Status",
|
189
|
+
:enum,
|
190
|
+
@abc.low_pressure_switch,
|
191
|
+
format: %w[open closed])
|
192
|
+
node.property("high-pressure-switch",
|
193
|
+
"High Pressure Switch Status",
|
194
|
+
:enum,
|
195
|
+
@abc.high_pressure_switch,
|
196
|
+
format: %w[open closed])
|
197
|
+
|
159
198
|
if @abc.awl_communicating?
|
160
199
|
node.property("leaving-air-temperature",
|
161
200
|
"Leaving Air Temperature",
|
@@ -227,6 +266,14 @@ class MQTTBridge
|
|
227
266
|
@abc.compressor.speed,
|
228
267
|
format: @abc.compressor.speed_range,
|
229
268
|
hass: { sensor: { state_class: :measurement } })
|
269
|
+
node.property("saturated-condensor-discharge-temperature",
|
270
|
+
"Saturated Condensor Discharge Temperature",
|
271
|
+
:float,
|
272
|
+
@abc.compressor.saturated_condensor_discharge_temperature,
|
273
|
+
unit: "°F",
|
274
|
+
hass: { sensor: { device_class: :temperature,
|
275
|
+
state_class: :measurement,
|
276
|
+
entity_category: :diagnostic } })
|
230
277
|
if @abc.energy_monitoring?
|
231
278
|
node.property("watts",
|
232
279
|
"Power Usage",
|
@@ -271,6 +318,62 @@ class MQTTBridge
|
|
271
318
|
format: 0..100,
|
272
319
|
hass: { sensor: { state_class: :measurement,
|
273
320
|
entity_category: :diagnostic } })
|
321
|
+
node.property("discharge-temperature",
|
322
|
+
"Discharge Temperature",
|
323
|
+
:float,
|
324
|
+
@abc.compressor.discharge_temperature,
|
325
|
+
unit: "°F",
|
326
|
+
hass: { sensor: { device_class: :temperature,
|
327
|
+
state_class: :measurement,
|
328
|
+
entity_category: :diagnostic } })
|
329
|
+
node.property("discharge-pressure",
|
330
|
+
"Discharge Pressure",
|
331
|
+
:float,
|
332
|
+
@abc.compressor.discharge_pressure,
|
333
|
+
unit: "psi",
|
334
|
+
hass: { sensor: { device_class: :pressure,
|
335
|
+
state_class: :measurement,
|
336
|
+
entity_category: :diagnostic } })
|
337
|
+
node.property("suction-temperature",
|
338
|
+
"Suction Temperature",
|
339
|
+
:float,
|
340
|
+
@abc.compressor.suction_temperature,
|
341
|
+
unit: "°F",
|
342
|
+
hass: { sensor: { device_class: :temperature,
|
343
|
+
state_class: :measurement,
|
344
|
+
entity_category: :diagnostic } })
|
345
|
+
node.property("suction-pressure",
|
346
|
+
"Suction Pressure",
|
347
|
+
:float,
|
348
|
+
@abc.compressor.suction_pressure,
|
349
|
+
unit: "psi",
|
350
|
+
hass: { sensor: { device_class: :pressure,
|
351
|
+
state_class: :measurement,
|
352
|
+
entity_category: :diagnostic } })
|
353
|
+
node.property("saturated-evaporator-discharge-temperature",
|
354
|
+
"Saturated Evaporator Discharge Temperature",
|
355
|
+
:float,
|
356
|
+
@abc.compressor.saturated_evaporator_discharge_temperature,
|
357
|
+
unit: "°F",
|
358
|
+
hass: { sensor: { device_class: :temperature,
|
359
|
+
state_class: :measurement,
|
360
|
+
entity_category: :diagnostic } })
|
361
|
+
node.property("superheat-temperature",
|
362
|
+
"SuperHeat Temperature",
|
363
|
+
:float,
|
364
|
+
@abc.compressor.superheat_temperature,
|
365
|
+
unit: "°F",
|
366
|
+
hass: { sensor: { device_class: :temperature,
|
367
|
+
state_class: :measurement,
|
368
|
+
entity_category: :diagnostic } })
|
369
|
+
node.property("superheat-percentage",
|
370
|
+
"SuperHeat Percentage",
|
371
|
+
:integer,
|
372
|
+
@abc.compressor.superheat_percentage,
|
373
|
+
unit: "%",
|
374
|
+
format: 0..100,
|
375
|
+
hass: { sensor: { state_class: :measurement,
|
376
|
+
entity_category: :diagnostic } })
|
274
377
|
|
275
378
|
next unless @abc.iz2?
|
276
379
|
|
@@ -525,6 +628,12 @@ class MQTTBridge
|
|
525
628
|
end
|
526
629
|
|
527
630
|
@faults = @homie.node("faults", "Fault History", "ABC") do |node|
|
631
|
+
node.property("current",
|
632
|
+
"Current fault",
|
633
|
+
:integer,
|
634
|
+
@abc.current_fault,
|
635
|
+
format: 0..99,
|
636
|
+
hass: :sensor)
|
528
637
|
node.property("clear-history",
|
529
638
|
"Reset Fault Counts",
|
530
639
|
:enum,
|
@@ -669,12 +778,12 @@ class MQTTBridge
|
|
669
778
|
end
|
670
779
|
|
671
780
|
log_level = ARGV.include?("--debug") ? :debug : :warn
|
672
|
-
logger = Logger.new($stdout)
|
673
|
-
logger.level = log_level
|
674
|
-
abc.modbus_slave.logger = logger
|
781
|
+
Aurora.logger = Logger.new($stdout)
|
782
|
+
Aurora.logger.level = log_level
|
783
|
+
abc.modbus_slave.logger = Aurora.logger
|
675
784
|
|
676
785
|
device = "aurora-#{abc.serial_number}"
|
677
786
|
homie = MQTT::Homie::Device.new(device, "WaterFurnace", mqtt: mqtt_uri)
|
678
|
-
homie.logger = logger
|
787
|
+
homie.logger = Aurora.logger
|
679
788
|
|
680
789
|
MQTTBridge.new(abc, homie)
|
data/exe/web_aid_tool
CHANGED
@@ -7,13 +7,17 @@ require "logger"
|
|
7
7
|
require "optparse"
|
8
8
|
require "yaml"
|
9
9
|
|
10
|
-
debug_modbus = monitor = false
|
10
|
+
debug_modbus = monitor = ignore_missing_registers = false
|
11
11
|
|
12
12
|
options = OptionParser.new do |opts|
|
13
13
|
opts.banner = "Usage: web_aid_tool /path/to/serial/port [options]"
|
14
14
|
|
15
15
|
opts.on("--debug-modbus", "Print actual protocol bytes") { debug_modbus = true }
|
16
16
|
opts.on("--monitor", "Print interpreted registers as they are requested, like aurora_monitor") { monitor = true }
|
17
|
+
opts.on("--ignore-missing-registers",
|
18
|
+
"For YAML input only, just log a warning when a register doesn't exist, instead of failing") do
|
19
|
+
ignore_missing_registers = true
|
20
|
+
end
|
17
21
|
opts.on("-v", "--version", "Print version") do
|
18
22
|
puts Aurora::VERSION
|
19
23
|
exit
|
@@ -31,7 +35,7 @@ unless ARGV.length == 1
|
|
31
35
|
exit 1
|
32
36
|
end
|
33
37
|
|
34
|
-
slave = Aurora::ABCClient.open_modbus_slave(ARGV[0])
|
38
|
+
slave = Aurora::ABCClient.open_modbus_slave(ARGV[0], ignore_missing_registers: ignore_missing_registers)
|
35
39
|
slave.logger = Logger.new($stdout)
|
36
40
|
slave.logger.level = debug_modbus ? :debug : :warn
|
37
41
|
|
data/lib/aurora/abc_client.rb
CHANGED
@@ -15,7 +15,7 @@ require "aurora/thermostat"
|
|
15
15
|
module Aurora
|
16
16
|
class ABCClient
|
17
17
|
class << self
|
18
|
-
def open_modbus_slave(uri)
|
18
|
+
def open_modbus_slave(uri, ignore_missing_registers: false)
|
19
19
|
uri = URI.parse(uri)
|
20
20
|
|
21
21
|
io = case uri.scheme
|
@@ -32,7 +32,10 @@ module Aurora
|
|
32
32
|
require "aurora/mqtt_modbus"
|
33
33
|
return Aurora::MQTTModBus.new(uri)
|
34
34
|
else
|
35
|
-
|
35
|
+
if File.file?(uri.path)
|
36
|
+
return Aurora::MockABC.new(YAML.load_file(uri.path),
|
37
|
+
ignore_missing_registers: ignore_missing_registers)
|
38
|
+
end
|
36
39
|
|
37
40
|
require "ccutrer-serialport"
|
38
41
|
CCutrer::SerialPort.new(uri.path, baud: 19_200, parity: :even)
|
@@ -54,6 +57,10 @@ module Aurora
|
|
54
57
|
implicit = true
|
55
58
|
try_individual = true if try_individual.nil?
|
56
59
|
break Aurora::REGISTER_RANGES
|
60
|
+
when "all"
|
61
|
+
implicit = true
|
62
|
+
try_individual = true if try_individual.nil?
|
63
|
+
break 0..65_535
|
57
64
|
when /^(\d+)(?:\.\.|-)(\d+)$/
|
58
65
|
$1.to_i..$2.to_i
|
59
66
|
else
|
@@ -62,28 +69,48 @@ module Aurora
|
|
62
69
|
end
|
63
70
|
queries = Aurora.normalize_ranges(ranges)
|
64
71
|
registers = {}
|
72
|
+
last_log_time = nil
|
65
73
|
queries.each do |subquery|
|
74
|
+
last_log_time = log_query(last_log_time, subquery.inspect)
|
66
75
|
registers.merge!(modbus_slave.read_multiple_holding_registers(*subquery))
|
67
|
-
rescue ::ModBus::Errors::IllegalDataAddress, ::ModBus::Errors::IllegalFunction
|
76
|
+
rescue ::ModBus::Errors::IllegalDataAddress, ::ModBus::Errors::IllegalFunction, ::ModBus::Errors::ModBusTimeout
|
68
77
|
# maybe this unit doesn't respond to all the addresses we want?
|
69
78
|
raise unless implicit
|
70
79
|
|
71
80
|
# try each query individually
|
72
81
|
subquery.each do |subsubquery|
|
82
|
+
last_log_time = log_query(last_log_time, subsubquery.inspect)
|
73
83
|
registers.merge!(modbus_slave.read_multiple_holding_registers(subsubquery))
|
74
|
-
rescue ::ModBus::Errors::IllegalDataAddress,
|
84
|
+
rescue ::ModBus::Errors::IllegalDataAddress,
|
85
|
+
::ModBus::Errors::IllegalFunction,
|
86
|
+
::ModBus::Errors::ModBusTimeout => e
|
87
|
+
raise if e.is_a?(::ModBus::Errors::ModBusTimeout) && !try_individual
|
75
88
|
next unless try_individual
|
76
89
|
|
77
90
|
# seriously?? try each register individually
|
78
|
-
subsubquery.each do |i|
|
91
|
+
Array(subsubquery).each do |i|
|
92
|
+
last_log_time = log_query(last_log_time, i.to_s)
|
79
93
|
registers[i] = modbus_slave.holding_registers[i]
|
80
94
|
rescue ::ModBus::Errors::IllegalDataAddress, ::ModBus::Errors::IllegalFunction
|
95
|
+
# don't catch ModBusTimeout here... it should have no problem responding to a single register request
|
81
96
|
next
|
82
97
|
end
|
83
98
|
end
|
84
99
|
end
|
85
100
|
registers
|
86
101
|
end
|
102
|
+
|
103
|
+
private
|
104
|
+
|
105
|
+
def log_query(last_log_time, query)
|
106
|
+
last_log_time ||= Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
107
|
+
now = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
108
|
+
if now - last_log_time > 5
|
109
|
+
Aurora&.logger&.info("Fetching register(s) #{query}...")
|
110
|
+
last_log_time = now
|
111
|
+
end
|
112
|
+
last_log_time
|
113
|
+
end
|
87
114
|
end
|
88
115
|
|
89
116
|
attr_reader :modbus_slave,
|
@@ -97,8 +124,16 @@ module Aurora
|
|
97
124
|
:pump,
|
98
125
|
:dhw,
|
99
126
|
:humidistat,
|
127
|
+
:current_fault,
|
100
128
|
:faults,
|
129
|
+
:locked_out,
|
130
|
+
:derated,
|
131
|
+
:safe_mode,
|
101
132
|
:current_mode,
|
133
|
+
:low_pressure_switch,
|
134
|
+
:high_pressure_switch,
|
135
|
+
:emergency_shutdown,
|
136
|
+
:load_shed,
|
102
137
|
:entering_air_temperature,
|
103
138
|
:leaving_air_temperature,
|
104
139
|
:leaving_water_temperature,
|
@@ -109,6 +144,12 @@ module Aurora
|
|
109
144
|
:line_voltage,
|
110
145
|
:watts
|
111
146
|
|
147
|
+
alias_method :emergency_shutdown?, :emergency_shutdown
|
148
|
+
alias_method :load_shed?, :load_shed
|
149
|
+
alias_method :locked_out?, :locked_out
|
150
|
+
alias_method :derated?, :derated
|
151
|
+
alias_method :safe_mode?, :safe_mode
|
152
|
+
|
112
153
|
def initialize(uri)
|
113
154
|
@modbus_slave = self.class.open_modbus_slave(uri)
|
114
155
|
@modbus_slave.read_retry_timeout = 15
|
@@ -156,7 +197,9 @@ module Aurora
|
|
156
197
|
|
157
198
|
@faults = []
|
158
199
|
|
159
|
-
@
|
200
|
+
@entering_air_register = awl_axb? ? 740 : 567
|
201
|
+
@registers_to_read = [6, 19..20, 25, 30..31, 112, 344, @entering_air_register, 1104, 1110..1111, 1114, 1150..1153,
|
202
|
+
1165]
|
160
203
|
@registers_to_read.concat([741, 31_003]) if awl_communicating?
|
161
204
|
@registers_to_read << 900 if awl_axb?
|
162
205
|
zones.each do |z|
|
@@ -183,17 +226,21 @@ module Aurora
|
|
183
226
|
|
184
227
|
outputs = registers[30]
|
185
228
|
|
186
|
-
@entering_air_temperature = registers[
|
229
|
+
@entering_air_temperature = registers[@entering_air_register]
|
187
230
|
@leaving_air_temperature = registers[900] if awl_axb?
|
188
231
|
@leaving_water_temperature = registers[1110]
|
189
232
|
@entering_water_temperature = registers[1111]
|
190
233
|
@outdoor_temperature = registers[31_003]
|
191
234
|
@fp1 = registers[19]
|
192
235
|
@fp2 = registers[20]
|
193
|
-
@locked_out = registers[25] & 0x8000
|
194
|
-
@
|
195
|
-
@derated = (41..46).cover?(@
|
196
|
-
@safe_mode = [47, 48, 49, 72, 74].include?(@
|
236
|
+
@locked_out = !(registers[25] & 0x8000).zero?
|
237
|
+
@current_fault = registers[25] & 0x7fff
|
238
|
+
@derated = (41..46).cover?(@current_fault)
|
239
|
+
@safe_mode = [47, 48, 49, 72, 74].include?(@current_fault)
|
240
|
+
@low_pressure_switch = registers[31][:lps]
|
241
|
+
@high_pressure_switch = registers[31][:hps]
|
242
|
+
@emergency_shutdown = !!registers[31][:emergency_shutdown]
|
243
|
+
@load_shed = !!registers[31][:load_shed]
|
197
244
|
@line_voltage = registers[112]
|
198
245
|
@watts = registers[1153]
|
199
246
|
|
data/lib/aurora/compressor.rb
CHANGED
@@ -5,7 +5,7 @@ require "aurora/component"
|
|
5
5
|
module Aurora
|
6
6
|
module Compressor
|
7
7
|
class GenericCompressor < Component
|
8
|
-
attr_reader :speed, :watts
|
8
|
+
attr_reader :speed, :watts, :saturated_condensor_discharge_temperature
|
9
9
|
|
10
10
|
def initialize(abc, stages)
|
11
11
|
super(abc)
|
@@ -21,11 +21,9 @@ module Aurora
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def registers_to_read
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
[]
|
28
|
-
end
|
24
|
+
result = [1134]
|
25
|
+
result << (1146..1147) if abc.energy_monitoring?
|
26
|
+
result
|
29
27
|
end
|
30
28
|
|
31
29
|
def refresh(registers)
|
@@ -37,12 +35,24 @@ module Aurora
|
|
37
35
|
else
|
38
36
|
0
|
39
37
|
end
|
38
|
+
@saturated_condensor_discharge_temperature = registers[1134]
|
40
39
|
@watts = registers[1146] if abc.energy_monitoring?
|
41
40
|
end
|
42
41
|
end
|
43
42
|
|
44
43
|
class VSDrive < GenericCompressor
|
45
|
-
attr_reader :drive_temperature,
|
44
|
+
attr_reader :drive_temperature,
|
45
|
+
:inverter_temperature,
|
46
|
+
:ambient_temperature,
|
47
|
+
:iz2_desired_speed,
|
48
|
+
:fan_speed,
|
49
|
+
:discharge_pressure,
|
50
|
+
:discharge_temperature,
|
51
|
+
:suction_pressure,
|
52
|
+
:suction_temperature,
|
53
|
+
:saturated_evaporator_discharge_temperature,
|
54
|
+
:superheat_temperature,
|
55
|
+
:superheat_percentage
|
46
56
|
|
47
57
|
def initialize(abc)
|
48
58
|
super(abc, 12)
|
@@ -53,7 +63,7 @@ module Aurora
|
|
53
63
|
end
|
54
64
|
|
55
65
|
def registers_to_read
|
56
|
-
result = super + [209, 3001,
|
66
|
+
result = super + [209, 3001, 3322..3327, 3522, 3524, 3808, 3903..3906]
|
57
67
|
result << 564 if abc.iz2?
|
58
68
|
result
|
59
69
|
end
|
@@ -62,10 +72,17 @@ module Aurora
|
|
62
72
|
super
|
63
73
|
|
64
74
|
@speed = registers[3001]
|
75
|
+
@discharge_pressure = registers[3322]
|
76
|
+
@suction_pressure = registers[3323]
|
77
|
+
@discharge_temperature = registers[3325]
|
65
78
|
@ambient_temperature = registers[3326]
|
66
79
|
@drive_temperature = registers[3327]
|
67
80
|
@inverter_temperature = registers[3522]
|
68
81
|
@fan_speed = registers[3524]
|
82
|
+
@superheat_percentage = registers[3808]
|
83
|
+
@suction_temperature = registers[3903]
|
84
|
+
@saturated_evaporator_discharge_temperature = registers[3905]
|
85
|
+
@superheat_temperature = registers[3906]
|
69
86
|
|
70
87
|
@iz2_desired_speed = registers[564] if abc.iz2?
|
71
88
|
end
|
data/lib/aurora/mock_abc.rb
CHANGED
@@ -4,7 +4,8 @@ module Aurora
|
|
4
4
|
class MockABC
|
5
5
|
attr_accessor :logger
|
6
6
|
|
7
|
-
def initialize(registers)
|
7
|
+
def initialize(registers, ignore_missing_registers: false)
|
8
|
+
@ignore_missing_registers = ignore_missing_registers
|
8
9
|
@registers = registers
|
9
10
|
end
|
10
11
|
|
@@ -59,6 +60,8 @@ module Aurora
|
|
59
60
|
private
|
60
61
|
|
61
62
|
def missing_register(idx)
|
63
|
+
raise ::ModBus::Errors::IllegalDataAddress unless @ignore_missing_registers
|
64
|
+
|
62
65
|
logger.warn("missing register #{idx}")
|
63
66
|
end
|
64
67
|
end
|
data/lib/aurora/registers.rb
CHANGED
data/lib/aurora/thermostat.rb
CHANGED
@@ -15,9 +15,9 @@ module Aurora
|
|
15
15
|
:fan_intermittent_off
|
16
16
|
|
17
17
|
def registers_to_read
|
18
|
-
return [
|
18
|
+
return [] unless @abc.awl_thermostat?
|
19
19
|
|
20
|
-
[
|
20
|
+
[502, 745..746, 12_005..12_006]
|
21
21
|
end
|
22
22
|
|
23
23
|
def refresh(registers)
|
data/lib/aurora/version.rb
CHANGED
data/lib/aurora.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: waterfurnace_aurora
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cody Cutrer
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ccutrer-serialport
|