mqtt-homie-homeassistant 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa4184cf2f3f2f1874c0b0fdf7b424aa1caf6308b31f011698584fcb36fb0bd2
4
- data.tar.gz: 81d28120d15976061852016174f9f38cc5a853233b2e27f18caf93f34dc82eac
3
+ metadata.gz: 8842ce29f5653c9da5d4263b31c9c0286952e3856c857dd5563c8597d93f5778
4
+ data.tar.gz: e56288d06b28f1b570aeeafb3baf3ff33ef1a103047aa2c88f83e4370d9b4e10
5
5
  SHA512:
6
- metadata.gz: ccd79bfb892825fd72181b28bb2015ef643d49b0d5c8c5061b71736e6dca2e58abab11020565193f348e98d5c64732ac4f28de2de96c0fc5d1128f4188e96aa6
7
- data.tar.gz: 01c9368efe589e878447012984e831b979e79687ade99a522b350ff54b1c1e91c6e2ef65eb7e90ca24b654c50bff7c2e1c4323b3ac82f524b8e38502adf220c7
6
+ metadata.gz: b62f87dfddd9bbbe18411e3c2e4a296ac4eda608412d0cd45ec36391196e48942a300e4d0bfa9cbfe317440a07f72b7f0509237c86ecabf6b55b6e5cb7510e5d
7
+ data.tar.gz: 81aef145772f141124f095d975cf13ddcde1a335f5b386e00798e6730db704cf779325ddd829799f8b3655083bbc2b4417ae48a04b83d0f6f73a192b65e28887
@@ -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"
@@ -32,6 +32,11 @@ module MQTT
32
32
  **kwargs)
33
33
  end
34
34
 
35
+ def hass_button(**kwargs)
36
+ hass_property(kwargs)
37
+ publish_hass_component(platform: :button, **kwargs)
38
+ end
39
+
35
40
  def hass_fan(**kwargs)
36
41
  raise ArgumentError, "Property must be a boolean" unless datatype == :boolean
37
42
  raise ArgumentError, "Property must be settable" unless settable?
@@ -3,7 +3,7 @@
3
3
  module MQTT
4
4
  module Homie
5
5
  module HomeAssistant
6
- VERSION = "1.0.2"
6
+ VERSION = "1.0.4"
7
7
  end
8
8
  end
9
9
  end
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.2
4
+ version: 1.0.4
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-03 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: homie-mqtt