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
Merged
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
2 changes: 1 addition & 1 deletion src/devices/tuya.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.

}
}),
],
Expand Down
Loading