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

Bugfix for Tuya ZWT198/ZWT100-BH using _TZE204_xnbkhhdr, auto and manual are reversed in preset datapoint. #7966

Merged
merged 1 commit into from
Sep 10, 2024

Conversation

friyin
Copy link
Contributor

@friyin friyin commented Sep 9, 2024

I installed an Avatto wall thermostat (TS0601 _TZE204_xnbkhhdr) and I realized that auto and manual where reversed in preset datapoint in my device, checking the code I noticed that where if branches were the same.

Signed-off-by: Daniel Fernández <daniel@dfer.io>
@@ -6433,7 +6433,7 @@ const definitions: DefinitionWithExtend[] = [
if (device.manufacturerName === '_TZE200_viy9ihs7') {
return {auto: tuya.enum(1), manual: tuya.enum(0), temporary_manual: tuya.enum(2)};
} else {
return {manual: tuya.enum(0), auto: tuya.enum(1), temporary_manual: tuya.enum(2)};
return {auto: tuya.enum(0), manual: tuya.enum(1), temporary_manual: tuya.enum(2)};
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about the _TZE204_lzriup1j?

Copy link
Contributor Author

@friyin friyin Sep 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have no such device, but I guess this bug affects to both devices _TZE204_*, if someone can confirm this would be great, I think _TZE200 is the exception.

@Koenkk Koenkk merged commit f843534 into Koenkk:master Sep 10, 2024
2 checks passed
@Koenkk
Copy link
Owner

Koenkk commented Sep 10, 2024

Makes sense, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants