Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Lightbulb RGBCW work mode not switched properly #12

Merged
merged 3 commits into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,4 @@
- [Window] Add Curtain Switch support (`clkg`).

### Known issue
- `LightAccessory` may not work properly, espasially on work mode change. need more test and feedbacks.
- Sometimes mqtt not respond quickly, will influence the accessory status update. still addressing the issue.
- Sometimes mqtt not respond quickly, the older message received later than newer one. This will influence the accessory status update.
103 changes: 93 additions & 10 deletions src/accessory/LightAccessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ export default class LightAccessory extends BaseAccessory {
this.configureColourTemperature();
break;
case LightAccessoryType.RGB:
this.configureOn();
this.configureHue();
this.configureSaturation();
break;
case LightAccessoryType.RGBC:
this.configureOn();
this.configureBrightness();
Expand Down Expand Up @@ -129,7 +125,11 @@ export default class LightAccessory extends BaseAccessory {
}

const { h, s, v } = JSON.parse(status.value as string);
return { h, s, v };
return {
h: h as number,
s: s as number,
v: v as number,
};
}

getColorProperty() {
Expand All @@ -142,6 +142,30 @@ export default class LightAccessory extends BaseAccessory {
};
}

inWhiteMode() {
const mode = this.getWorkModeDeviceFunction();
if (!mode) {
return false;
}
const status = this.device.getDeviceStatus(mode.code);
if (!status) {
return false;
}
return (status.value === 'white');
}

inColorMode() {
const mode = this.getWorkModeDeviceFunction();
if (!mode) {
return false;
}
const status = this.device.getDeviceStatus(mode.code);
if (!status) {
return false;
}
return (status.value === 'colour');
}

configureOn() {
const service = this.getMainService();
const onFunction = this.getOnDeviceFunction()!;
Expand All @@ -152,22 +176,46 @@ export default class LightAccessory extends BaseAccessory {
return !!status && status!.value;
})
.onSet((value) => {
this.log.debug(`Characteristic.On set to: ${value}`);
this.addToSendQueue([{ code: onFunction.code, value: value as boolean }]);
});
}

configureBrightness() {
const service = this.getMainService();
const brightFunction = this.getBrightnessDeviceFunction()!;
const { max } = this.device.getDeviceFunctionProperty(brightFunction.code) as TuyaDeviceFunctionIntegerProperty;

service.getCharacteristic(this.Characteristic.Brightness)
.onGet(() => {

// Color mode, get brightness from hsv
if (this.inColorMode()) {
const { max } = this.getColorProperty().v;
const brightStatus = this.getColorValue().v;
const brightPercent = brightStatus / max;
return Math.floor(brightPercent * 100);
}

const brightFunction = this.getBrightnessDeviceFunction()!;
const { max } = this.device.getDeviceFunctionProperty(brightFunction.code) as TuyaDeviceFunctionIntegerProperty;
const brightStatus = this.device.getDeviceStatus(brightFunction.code)!;
const brightPercent = brightStatus.value as number / max;
return Math.floor(brightPercent * 100);
})
.onSet((value) => {
this.log.debug(`Characteristic.Brightness set to: ${value}`);

// Color mode, set brightness to hsv
if (this.inColorMode()) {
const { max } = this.getColorProperty().v;
const colorFunction = this.getColorDeviceFunction()!;
const colorValue = this.getColorValue();
colorValue.v = Math.floor(value as number * max / 100);
this.addToSendQueue([{ code: colorFunction.code, value: JSON.stringify(colorValue) }]);
return;
}

const brightFunction = this.getBrightnessDeviceFunction()!;
const { max } = this.device.getDeviceFunctionProperty(brightFunction.code) as TuyaDeviceFunctionIntegerProperty;
const brightValue = Math.floor(value as number * max / 100);
this.addToSendQueue([{ code: brightFunction.code, value: brightValue }]);
});
Expand All @@ -188,11 +236,18 @@ export default class LightAccessory extends BaseAccessory {
return miredValue;
})
.onSet((value) => {
this.log.debug(`Characteristic.ColorTemperature set to: ${value}`);
const temp = Math.floor((1000000 / (value as number) - 2000) * (max - min) / (7142 - 2000) + min);
const commands: TuyaDeviceStatus[] = [{
code: tempFunction.code,
value: temp,
}];

const mode = this.getWorkModeDeviceFunction();
if (mode) {
commands.push({ code: 'work_mode', value: 'white' });
}

this.addToSendQueue(commands);
});

Expand All @@ -204,18 +259,30 @@ export default class LightAccessory extends BaseAccessory {
const { min, max } = this.getColorProperty().h;
service.getCharacteristic(this.Characteristic.Hue)
.onGet(() => {
// White mode, return fixed Hue 0
if (this.inWhiteMode()) {
return 0;
}

let hue = Math.floor(360 * (this.getColorValue().h - min) / (max - min));
hue = Math.max(0, hue);
hue = Math.min(360, hue);
return hue;
})