|
12 | 12 | */
|
13 | 13 | package org.openhab.binding.feican.internal;
|
14 | 14 |
|
15 |
| -import java.math.BigDecimal; |
16 |
| -import java.math.RoundingMode; |
17 |
| - |
18 | 15 | import org.eclipse.jdt.annotation.NonNullByDefault;
|
19 | 16 | import org.openhab.core.library.types.HSBType;
|
20 | 17 | import org.openhab.core.library.types.OnOffType;
|
21 | 18 | import org.openhab.core.library.types.PercentType;
|
| 19 | +import org.openhab.core.util.ColorUtil; |
22 | 20 |
|
23 | 21 | /**
|
24 | 22 | * Creates commands to send to Feican devices.
|
@@ -67,25 +65,13 @@ public byte[] switchOnOff(OnOffType onOff) {
|
67 | 65 | */
|
68 | 66 | public byte[] color(HSBType color) {
|
69 | 67 | 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]; |
74 | 72 | return command;
|
75 | 73 | }
|
76 | 74 |
|
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 |
| - |
89 | 75 | /**
|
90 | 76 | * Returns the command to set the color temperature to a value between 0 and 100.
|
91 | 77 | *
|
|
0 commit comments