Skip to content

Commit f843534

Browse files
authored
fix: Fix preset value for Tuya ZWT198/ZWT100-BH (#7966)
Signed-off-by: Daniel Fernández <[email protected]>
1 parent c29cbf7 commit f843534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/devices/tuya.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6433,7 +6433,7 @@ const definitions: DefinitionWithExtend[] = [
64336433
if (device.manufacturerName === '_TZE200_viy9ihs7') {
64346434
return {auto: tuya.enum(1), manual: tuya.enum(0), temporary_manual: tuya.enum(2)};
64356435
} else {
6436-
return {manual: tuya.enum(0), auto: tuya.enum(1), temporary_manual: tuya.enum(2)};
6436+
return {auto: tuya.enum(0), manual: tuya.enum(1), temporary_manual: tuya.enum(2)};
64376437
}
64386438
}),
64396439
],

0 commit comments

Comments
 (0)