Skip to content

Commit

Permalink
fix: Fix middle volume value for TuYa YXZBSL (#6119)
Browse files Browse the repository at this point in the history
  • Loading branch information
fliespl authored Aug 30, 2023
1 parent 888918c commit 2db8db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devices/tuya.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5749,7 +5749,7 @@ const definitions: Definition[] = [
exposes: [
e.binary('alarm', ea.STATE_SET, 'ON', 'OFF').withDescription('Turn the light of the alarm ON/OFF'),
e.enum('type', ea.STATE_SET, ['sound', 'light', 'sound+light', 'normal']).withDescription('Alarm type'),
e.enum('volume', ea.STATE_SET, ['mute', 'low', 'medium', 'high']).withDescription('Volume of the alarm'),
e.enum('volume', ea.STATE_SET, ['mute', 'low', 'middle', 'high']).withDescription('Volume of the alarm'),
e.enum('ringtone', ea.STATE_SET, [
'melody1', 'melody2', 'melody3', 'melody4', 'melody5', 'melody6', 'melody7', 'melody8',
'door', 'water', 'temperature', 'entered', 'left',
Expand Down

0 comments on commit 2db8db2

Please sign in to comment.