Skip to content

Commit 8d93eb7

Browse files
fix: Tuya: correct spelling of "siren" in vibration-related entities (#10732)
Co-authored-by: ChristianGr1974 <[email protected]>
1 parent b24ac4b commit 8d93eb7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/devices/tuya.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2173,9 +2173,9 @@ export const definitions: DefinitionWithExtend[] = [
21732173
.withValueMin(0)
21742174
.withValueMax(100)
21752175
.withValueStep(1),
2176-
e.binary("vibration_sirene", ea.STATE_SET, true, false).withDescription("Activate the siren when vibrating."),
2176+
e.binary("vibration_siren", ea.STATE_SET, true, false).withDescription("Activate the siren when vibrating."),
21772177
e
2178-
.numeric("vibration_sirene_duration", ea.STATE_SET)
2178+
.numeric("vibration_siren_duration", ea.STATE_SET)
21792179
.withDescription("Duration of the vibrating siren.")
21802180
.withValueMin(5)
21812181
.withValueMax(180)
@@ -2207,8 +2207,8 @@ export const definitions: DefinitionWithExtend[] = [
22072207
[109, "alarm_siren_duration", tuya.valueConverter.raw],
22082208
[102, "vibration", tuya.valueConverter.raw],
22092209
[106, "vibration_limit", tuya.valueConverter.raw],
2210-
[110, "vibration_sirene_duration", tuya.valueConverter.raw],
2211-
[108, "vibration_sirene", tuya.valueConverter.raw],
2210+
[110, "vibration_siren_duration", tuya.valueConverter.raw],
2211+
[108, "vibration_siren", tuya.valueConverter.raw],
22122212
[104, "close_signal", tuya.valueConverter.raw],
22132213
[105, "transmission_power", tuya.valueConverter.raw],
22142214
[111, "magnetic_status", tuya.valueConverter.raw],

0 commit comments

Comments
 (0)