Skip to content

Commit

Permalink
Added gateways and security panels
Browse files Browse the repository at this point in the history
### ADDED
- ADT Pulse Gateway (with HW 1)
- Lynx/QuickConnect Cellular-Only Gateway
- LYNX/QuickConnect

v3.1.9
  • Loading branch information
mrjackyliang committed Feb 18, 2024
1 parent b2a137d commit f327a39
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "homebridge-adt-pulse",
"displayName": "Homebridge ADT Pulse",
"version": "3.1.8",
"version": "3.1.9",
"description": "Homebridge security system platform for ADT Pulse",
"main": "./build/index.js",
"exports": "./build/index.js",
Expand Down
25 changes: 25 additions & 0 deletions src/lib/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,16 @@ export const collectionSensorActions: CollectionSensorActions = [
* @since 1.0.0
*/
export const deviceGateways: DeviceGateways = [
{
broadbandConnectionStatus: 'Active',
cellularConnectionStatus: 'N/A',
cellularSignalStrength: 'N/A',
firmwareVersion: '24.0.0-9',
hardwareVersion: 'HW=1, BL=1.1.9, PL=9.4.0.32.5, SKU=PGZNG1-1ADNAS',
manufacturer: 'ADT Pulse Gateway',
model: 'PGZNG1',
primaryConnectionType: 'Broadband',
},
{
broadbandConnectionStatus: 'Active',
cellularConnectionStatus: 'N/A',
Expand All @@ -280,6 +290,16 @@ export const deviceGateways: DeviceGateways = [
model: 'Compact SMA Protocol Gateway',
primaryConnectionType: 'Cellular',
},
{
broadbandConnectionStatus: null,
cellularConnectionStatus: 'Active',
cellularSignalStrength: 'N/A',
firmwareVersion: '27.0.0-140',
hardwareVersion: 'HW=02_Lynx, BL=ICONTROL_CFE 1.0, PL=27.0.0-140',
manufacturer: null,
model: 'Lynx/QuickConnect Cellular-Only Gateway',
primaryConnectionType: 'Cellular',
},
{
broadbandConnectionStatus: 'Active',
cellularConnectionStatus: 'N/A',
Expand Down Expand Up @@ -313,6 +333,11 @@ export const deviceSecurityPanels: DeviceSecurityPanels = [
manufacturerProvider: 'DSC',
typeModel: 'Security Panel - Impassa SCW9057',
},
{
emergencyKeys: 'Button: Fire Alarm (Zone 95) Button: Audible Panic Alarm (Zone 99)',
manufacturerProvider: null,
typeModel: 'Security Panel - LYNX/QuickConnect',
},
{
emergencyKeys: 'Button: Fire Alarm (Zone 95) Button: Audible Panic Alarm (Zone 99)',
manufacturerProvider: 'ADT',
Expand Down

0 comments on commit f327a39

Please sign in to comment.