Skip to content

Commit

Permalink
Fix spotless errors (openhab#11068)
Browse files Browse the repository at this point in the history
Signed-off-by: Kai Kreuzer <kai@openhab.org>
  • Loading branch information
kaikreuzer authored and frederictobiasc committed Oct 26, 2021
1 parent d5303d9 commit 1df9ae8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,4 @@ protected UUID getDataUUID() {
private int intFromBytes(int lowByte, int highByte) {
return (highByte & 0xFF) << 8 | (lowByte & 0xFF);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,21 @@
</thing-type>
<thing-type id="airthings_wave_gen1">
<supported-bridge-type-refs>
<bridge-type-ref id="roaming" />
<bridge-type-ref id="bluegiga" />
<bridge-type-ref id="bluez" />
<bridge-type-ref id="roaming"/>
<bridge-type-ref id="bluegiga"/>
<bridge-type-ref id="bluez"/>
</supported-bridge-type-refs>

<label>Airthings Wave Gen 1</label>
<description>Smart Radon Monitor</description>

<channels>
<channel id="rssi" typeId="rssi" />
<channel id="rssi" typeId="rssi"/>

<channel id="humidity" typeId="airthings_humidity" />
<channel id="temperature" typeId="airthings_temperature" />
<channel id="radon_st_avg" typeId="airthings_radon_st_avg" />
<channel id="radon_lt_avg" typeId="airthings_radon_lt_avg" />
<channel id="humidity" typeId="airthings_humidity"/>
<channel id="temperature" typeId="airthings_temperature"/>
<channel id="radon_st_avg" typeId="airthings_radon_st_avg"/>
<channel id="radon_lt_avg" typeId="airthings_radon_lt_avg"/>
</channels>

<config-description>
Expand Down

0 comments on commit 1df9ae8

Please sign in to comment.