Skip to content

Commit f327a39

Browse files
committed
Added gateways and security panels
### ADDED - ADT Pulse Gateway (with HW 1) - Lynx/QuickConnect Cellular-Only Gateway - LYNX/QuickConnect v3.1.9
1 parent b2a137d commit f327a39

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "homebridge-adt-pulse",
33
"displayName": "Homebridge ADT Pulse",
4-
"version": "3.1.8",
4+
"version": "3.1.9",
55
"description": "Homebridge security system platform for ADT Pulse",
66
"main": "./build/index.js",
77
"exports": "./build/index.js",

src/lib/items.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,16 @@ export const collectionSensorActions: CollectionSensorActions = [
260260
* @since 1.0.0
261261
*/
262262
export const deviceGateways: DeviceGateways = [
263+
{
264+
broadbandConnectionStatus: 'Active',
265+
cellularConnectionStatus: 'N/A',
266+
cellularSignalStrength: 'N/A',
267+
firmwareVersion: '24.0.0-9',
268+
hardwareVersion: 'HW=1, BL=1.1.9, PL=9.4.0.32.5, SKU=PGZNG1-1ADNAS',
269+
manufacturer: 'ADT Pulse Gateway',
270+
model: 'PGZNG1',
271+
primaryConnectionType: 'Broadband',
272+
},
263273
{
264274
broadbandConnectionStatus: 'Active',
265275
cellularConnectionStatus: 'N/A',
@@ -280,6 +290,16 @@ export const deviceGateways: DeviceGateways = [
280290
model: 'Compact SMA Protocol Gateway',
281291
primaryConnectionType: 'Cellular',
282292
},
293+
{
294+
broadbandConnectionStatus: null,
295+
cellularConnectionStatus: 'Active',
296+
cellularSignalStrength: 'N/A',
297+
firmwareVersion: '27.0.0-140',
298+
hardwareVersion: 'HW=02_Lynx, BL=ICONTROL_CFE 1.0, PL=27.0.0-140',
299+
manufacturer: null,
300+
model: 'Lynx/QuickConnect Cellular-Only Gateway',
301+
primaryConnectionType: 'Cellular',
302+
},
283303
{
284304
broadbandConnectionStatus: 'Active',
285305
cellularConnectionStatus: 'N/A',
@@ -313,6 +333,11 @@ export const deviceSecurityPanels: DeviceSecurityPanels = [
313333
manufacturerProvider: 'DSC',
314334
typeModel: 'Security Panel - Impassa SCW9057',
315335
},
336+
{
337+
emergencyKeys: 'Button: Fire Alarm (Zone 95) Button: Audible Panic Alarm (Zone 99)',
338+
manufacturerProvider: null,
339+
typeModel: 'Security Panel - LYNX/QuickConnect',
340+
},
316341
{
317342
emergencyKeys: 'Button: Fire Alarm (Zone 95) Button: Audible Panic Alarm (Zone 99)',
318343
manufacturerProvider: 'ADT',

0 commit comments

Comments
 (0)