Skip to content

Commit feee01d

Browse files
[feican] Use new core class ColorUtil for RGB conversion (openhab#14771)
Signed-off-by: Holger Friedrich <[email protected]>
1 parent 2c8f639 commit feee01d

File tree

1 file changed

+5
-19
lines changed
  • bundles/org.openhab.binding.feican/src/main/java/org/openhab/binding/feican/internal

1 file changed

+5
-19
lines changed

bundles/org.openhab.binding.feican/src/main/java/org/openhab/binding/feican/internal/Commands.java

+5-19
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,11 @@
1212
*/
1313
package org.openhab.binding.feican.internal;
1414

15-
import java.math.BigDecimal;
16-
import java.math.RoundingMode;
17-
1815
import org.eclipse.jdt.annotation.NonNullByDefault;
1916
import org.openhab.core.library.types.HSBType;
2017
import org.openhab.core.library.types.OnOffType;
2118
import org.openhab.core.library.types.PercentType;
19+
import org.openhab.core.util.ColorUtil;
2220

2321
/**
2422
* Creates commands to send to Feican devices.
@@ -67,25 +65,13 @@ public byte[] switchOnOff(OnOffType onOff) {
6765
*/
6866
public byte[] color(HSBType color) {
6967
byte[] command = RGB_COMMAND.clone();
70-
PercentType[] rgb = color.toRGB();
71-
command[4] = convertColorPercentToByte(rgb[0]);
72-
command[5] = convertColorPercentToByte(rgb[1]);
73-
command[6] = convertColorPercentToByte(rgb[2]);
68+
int[] rgb = ColorUtil.hsbToRgb(color);
69+
command[4] = (byte) rgb[0];
70+
command[5] = (byte) rgb[1];
71+
command[6] = (byte) rgb[2];
7472
return command;
7573
}
7674

77-
/**
78-
* Converts a percentage (0-100) to a color range value (0-255). This is needed because {@link HSBType} returns
79-
* color values in the 100-range while a 255 range is needed.
80-
*
81-
* @param percent value to be converted.
82-
* @return converted value as a byte value
83-
*/
84-
private byte convertColorPercentToByte(PercentType percent) {
85-
return percent.toBigDecimal().multiply(BigDecimal.valueOf(255))
86-
.divide(BigDecimal.valueOf(100), 2, RoundingMode.HALF_UP).byteValue();
87-
}
88-
8975
/**
9076
* Returns the command to set the color temperature to a value between 0 and 100.
9177
*

0 commit comments

Comments
 (0)