Skip to content

Commit

Permalink
fix: Fix Tuya ZY-M100-24GV3 losing settings (#8674)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rising-Sun authored Jan 27, 2025
1 parent 20981bc commit 55e18a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devices/tuya.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10905,8 +10905,8 @@ const definitions: DefinitionWithExtend[] = [
e.numeric('distance', ea.STATE).withDescription('Target distance'),
e.binary('find_switch', ea.STATE_SET, 'ON', 'OFF').withDescription('distance switch'),
e.illuminance().withDescription('Illuminance sensor'),
e.numeric('move_sensitivity', ea.STATE_SET).withValueMin(0).withValueMax(10).withValueStep(1).withDescription('Motion Sensitivity'),
e.numeric('presence_sensitivity', ea.STATE_SET).withValueMin(0).withValueMax(10).withValueStep(1).withDescription('Presence Sensitivity'),
e.numeric('move_sensitivity', ea.STATE_SET).withValueMin(1).withValueMax(10).withValueStep(1).withDescription('Motion Sensitivity'),
e.numeric('presence_sensitivity', ea.STATE_SET).withValueMin(1).withValueMax(10).withValueStep(1).withDescription('Presence Sensitivity'),
e
.numeric('detection_distance_min', ea.STATE_SET)
.withValueMin(0)
Expand Down

0 comments on commit 55e18a6

Please sign in to comment.