waterfurnace_aurora 1.5.5 → 1.5.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bbb80a1b45aa997c1d5aed6d3f679a573c123b5cec491f91d7abeab3d33799b7
4
- data.tar.gz: 207a692af6c56f7e3929ef013939371283eb00d6af041338ea1ebe13abb46818
3
+ metadata.gz: 4c8305f7ae28441644f266c2a129dbce459ab56e7785eab99eaa2ebe90f14f37
4
+ data.tar.gz: 20117af416e8f87c8bf8d71b8731d540bd765ed6311929d2738c59c5b83dbed6
5
5
  SHA512:
6
- metadata.gz: e84c02d309cafadfd019e396d6c193edfe42e747a71dc6a089db58704688c9c1b1c803a518f604543fd486b28d83a843ffe6c1505d91446ace0d199c80c90998
7
- data.tar.gz: 05e59b2d74b495ef4ac12edd441d8c7acc28078bdeac006d6c3b07f6b54cf5a8e4efdb8a0f1f7a32fe080c773c2ead1c8474748928d4bc5b8850d7fc84994c07
6
+ metadata.gz: e670259836cf4b7fe5fb23401481a40835077b82eaa96be004ca8befd9423aee113d3847b1bc72b34e6d9e1f372af8f89fdb0ef5b8b4c985fffb94b76389c25a
7
+ data.tar.gz: 60b5b98553745933cc2e9a30911055faacb4603a40149c6c8da08663fca7b42e26c353e62b2fdc72437ddf412ef61d81f8e8fcd3c753aa7431c054c25ff63a8c
@@ -200,7 +200,7 @@ module Aurora
200
200
  @entering_air_register = awl_axb? ? 740 : 567
201
201
  @registers_to_read = [6, 19..20, 25, 30..31, 112, 344, @entering_air_register]
202
202
  @registers_to_read << 1104 if axb?
203
- @registers_to_read.push(741, 31_003) if awl_communicating?
203
+ @registers_to_read.push(741..742) if awl_communicating?
204
204
  @registers_to_read << (1110..1111) if performance_monitoring?
205
205
  @registers_to_read.push(16, 1150..1153) if energy_monitoring?
206
206
  @registers_to_read << 900 if awl_axb?
@@ -234,7 +234,7 @@ module Aurora
234
234
  @leaving_water_temperature = registers[1110]
235
235
  @entering_water_temperature = registers[1111]
236
236
  end
237
- @outdoor_temperature = registers[31_003]
237
+ @outdoor_temperature = registers[742]
238
238
  @air_coil_temperature = registers[20]
239
239
  @locked_out = registers[25].anybits?(0x8000)
240
240
  @current_fault = registers[25] & 0x7fff
@@ -505,7 +505,7 @@ module Aurora
505
505
  21_230, 22_131,
506
506
  21_239, 21_240,
507
507
  21_248, 21_249],
508
- TO_SIGNED_TENTHS => [19, 20, 501, 502, 567, 740, 747, 900, 903,
508
+ TO_SIGNED_TENTHS => [19, 20, 501, 502, 567, 740, 742, 747, 900, 903,
509
509
  1109, 1110, 1111, 1112, 1113, 1114, 1124, 1125, 1134, 1135, 1136,
510
510
  3325, 3326, 3327, 3330, 3522, 3903, 3905, 3906,
511
511
  31_003, 31_007, 31_010, 31_013, 31_016, 31_019, 31_022],
@@ -564,7 +564,7 @@ module Aurora
564
564
  "%ds" => [1, 6, 9, 15, 84, 85, 110],
565
565
  "%dV" => [16, 112, 3331, 3424, 3523],
566
566
  # rubocop:disable Layout/MultilineArrayLineBreaks
567
- "%0.1f°F" => [19, 20, 401, 501, 502, 567, 740, 745, 746, 747, 900, 903,
567
+ "%0.1f°F" => [19, 20, 401, 501, 502, 567, 740, 742, 745, 746, 747, 900, 903,
568
568
  1109, 1110, 1111, 1112, 1113, 1114, 1124, 1125, 1134, 1135, 1136,
569
569
  3325, 3326, 3327, 3330, 3522, 3903, 3905, 3906,
570
570
  12_619, 12_620,
@@ -807,6 +807,7 @@ module Aurora
807
807
  710 => "Fault Description",
808
808
  740 => "Entering Air",
809
809
  741 => "Relative Humidity",
810
+ 742 => "Outdoor Temperature",
810
811
  745 => "Heating Set Point",
811
812
  746 => "Cooling Set Point",
812
813
  747 => "Ambient Temperature", # from communicating thermostat? but set to 0 when mode is off?
@@ -918,7 +919,7 @@ module Aurora
918
919
  12_623 => "Intermittent Fan Off Time (write)",
919
920
  21_114 => "IZ2 De/Humidifier Mode (write)",
920
921
  21_115 => "IZ2 De/Humidifier Setpoints (write)",
921
- 31_003 => "Outdoor Temp",
922
+ 31_003 => "IZ2 Outdoor Temperature",
922
923
  31_005 => "IZ2 Demand",
923
924
  31_109 => "De/Humidifier Mode",
924
925
  31_110 => "Manual De/Humidification Setpoints",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aurora
4
- VERSION = "1.5.5"
4
+ VERSION = "1.5.7"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: waterfurnace_aurora
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.5
4
+ version: 1.5.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cody Cutrer
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-01-30 00:00:00.000000000 Z
10
+ date: 2025-02-19 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: ccutrer-serialport