@@ -205,7 +205,7 @@ public LightModel() {
205205 * @param supportsBrightness true if the light supports brightness control
206206 * @param supportsColorTemperature true if the light supports color temperature control
207207 * @param supportsColor true if the light supports color control
208- * @param rgbLinkedToBrightness true if RGB vales are linked with the 'B' part of the {@link HSBType}
208+ * @param rgbLinkedToBrightness true if RGB values are linked with the 'B' part of the {@link HSBType}
209209 * @param supportsRgbWhite true if the light supports RGBW rather than RGB color control
210210 */
211211 public LightModel (boolean supportsBrightness , boolean supportsColorTemperature , boolean supportsColor ,
@@ -221,7 +221,7 @@ public LightModel(boolean supportsBrightness, boolean supportsColorTemperature,
221221 * @param supportsBrightness true if the light supports brightness control
222222 * @param supportsColorTemperature true if the light supports color temperature control
223223 * @param supportsColor true if the light supports color control
224- * @param rgbLinkedToBrightness true if RGB vales are linked with the 'B' part of the {@link HSBType}
224+ * @param rgbLinkedToBrightness true if RGB values are linked with the 'B' part of the {@link HSBType}
225225 * @param supportsRgbWhite true if the light supports RGBW rather than RGB color control
226226 * @param minimumOnBrightness the minimum brightness percent to consider as light "ON"
227227 * @param warmestMired the 'warmest' white color temperature in Mired
@@ -366,7 +366,9 @@ public void configSetMiredWarmest(double warmestMired) throws IllegalArgumentExc
366366 * brightness.</li>
367367 * </ul>
368368 *
369- * @param rgbLinkedToBrightness true if RGB values are raw
369+ * @param rgbLinkedToBrightness true if RGB values are linked to brightness (i.e., relate to all HSB parts and will
370+ * influence and depend on brightness); false if RGB values only relate to hue and saturation and do not
371+ * influence or depend on brightness
370372 */
371373 public void configSetRgbLinkedToBrightness (boolean rgbLinkedToBrightness ) {
372374 model .configSetRgbLinkedToBrightness (rgbLinkedToBrightness );
@@ -433,7 +435,7 @@ public void configSetSupportsRgbWhite(boolean supportsRgbWhite) {
433435 /**
434436 * Runtime State: get the color temperature or return null if the capability is not supported
435437 *
436- * @return QuantityType in Mired representing the color temperature, or null if not supported
438+ * @return QuantityType in Kelvin representing the color temperature, or null if not supported
437439 */
438440 public @ Nullable QuantityType <?> getColorTemperature () {
439441 return model .getColorTemperature ();
0 commit comments