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

Added support for Visonic GB-540 Acoustic Glass Break Sensor #5998

Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update visonic.ts (linting fixes)
  • Loading branch information
gregwjacobs authored Jul 23, 2023
commit 3382e2cce1847e6ac6a941c9da6c5d6ef66064bc
6 changes: 3 additions & 3 deletions src/devices/visonic.ts
Original file line number Diff line number Diff line change
@@ -82,11 +82,11 @@ const definitions: Definition[] = [
zigbeeModel: ['GB-540'],
model: 'GB-540',
vendor: 'Visonic',
description: 'Glass Break Detector', //https://www.visonic.com/glass-break-detector-gb-540
description: 'Glass Break Detector',
fromZigbee: [fz.ias_vibration_alarm_1],
toZigbee: [],
exposes: [e.vibration(), e.battery_low(), e.tamper()]
}
exposes: [e.vibration(), e.battery_low(), e.tamper()],
},
];

module.exports = definitions;