mqtt-homie-homeassistant 1.0.2 → 1.0.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91c3bd924cf85517b51fec348ae3737c007302e5085922e04e9762e939e3d222
|
4
|
+
data.tar.gz: 65894c4e7d2fcd0580d8af570747c9348c8c595465ee834856fa473e28d79ffb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e63fec2ec46a8fe17618a7a7042c22a69d992299d4c1b3ede6c927330a6b52ff4925b5fc5839232af2ff635372873bd65e9baf1aac2bafb54fd4ad7c3776d42b
|
7
|
+
data.tar.gz: 27641c17923bb8347e62c5f20b2aa86ae37919740662d57103516480a74521674120f8913e7539f77a0880c6a4d8e0cd56a28d258128c5b3ad69f842cfac1e6f
|
@@ -34,7 +34,7 @@ module MQTT
|
|
34
34
|
max = temp_ranges.map(&:end).max
|
35
35
|
kwargs[:temp_range] = min..max
|
36
36
|
end
|
37
|
-
kwargs[:temperature_unit] = temp_properties.map(&:unit).compact.first
|
37
|
+
kwargs[:temperature_unit] = temp_properties.map(&:unit).compact.first&.yield_self { |unit| unit[-1] }
|
38
38
|
if power_property
|
39
39
|
kwargs[:payload_off] = "false"
|
40
40
|
kwargs[:payload_on] = "true"
|
@@ -133,7 +133,7 @@ module MQTT
|
|
133
133
|
current_temperature_property
|
134
134
|
].compact
|
135
135
|
kwargs[:range] = temperature_property&.range
|
136
|
-
kwargs[:temperature_unit] = temp_properties.map(&:unit).compact.first
|
136
|
+
kwargs[:temperature_unit] = temp_properties.map(&:unit).compact.first&.yield_self { |unit| unit[-1] }
|
137
137
|
if power_property
|
138
138
|
kwargs[:payload_off] = "false"
|
139
139
|
kwargs[:payload_on] = "true"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mqtt-homie-homeassistant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cody Cutrer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
11
|
+
date: 2025-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: homie-mqtt
|