Skip to content

Commit

Permalink
Gateway and panel documentation
Browse files Browse the repository at this point in the history
### ADDED
- Gateway documentation for "ADT Pulse Gateway iHub-3001 / HW 3.4 / Broadband Unavailable".
- Gateway documentation for "ADT TSSC Lifestyle Module / HW 1 / Broadband Active".
- Gateway documentation for "ADT TSSC Lifestyle Module / HW 1 / Broadband Unavailable".
- Gateway documentation for "ADT TSSC Lifestyle Module / HW 2 / Broadband Unavailable".
- Gateway documentation for "Compact SMA Protocol Gateway / HW 2 / Broadband Unavailable".
- Gateway documentation for "Lynx/QuickConnect Cellular-Only Gateway / HW 2 / Cellular Unavailable".
- Panel documentation for "Honeywell Security Vista-20PSIA - Emergency Keys PE 95/FA 96/APA 99".
  • Loading branch information
mrjackyliang committed Feb 25, 2024
1 parent 7f6c97b commit c54d0e9
Show file tree
Hide file tree
Showing 2 changed files with 87 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.2.5",
"version": "3.2.6",
"description": "Homebridge security system platform for ADT Pulse",
"main": "./build/index.js",
"exports": "./build/index.js",
Expand Down
86 changes: 86 additions & 0 deletions src/lib/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,19 @@ export const deviceGateways: DeviceGateways = [
primaryConnectionType: 'Broadband',
},
},
{
description: 'ADT Pulse Gateway iHub-3001 / HW 3.4 / Broadband Unavailable',
gateway: {
broadbandConnectionStatus: 'Unavailable',
cellularConnectionStatus: 'N/A',
cellularSignalStrength: 'N/A',
firmwareVersion: '24.0.0-9',
hardwareVersion: 'HW=3.4, BL=ICONTROL_CFE 1.3, PL=24.0.0-9, SKU=0YUC0500MY5',
manufacturer: 'ADT Pulse Gateway',
model: 'iHub-3001',
primaryConnectionType: 'Broadband',
},
},
{
description: 'ADT Pulse Gateway PGZNG1 / HW 1 / Broadband Active',
gateway: {
Expand Down Expand Up @@ -406,6 +419,32 @@ export const deviceGateways: DeviceGateways = [
primaryConnectionType: 'Broadband',
},
},
{
description: 'ADT TSSC Lifestyle Module / HW 1 / Broadband Active',
gateway: {
broadbandConnectionStatus: 'Active',
cellularConnectionStatus: 'N/A',
cellularSignalStrength: 'N/A',
firmwareVersion: '24.0.0-9',
hardwareVersion: 'HW=0001, BL=UBOOT 2009.08-svn99, PL=5.5.0-5, SKU=TSSC-NA-NONE-01',
manufacturer: 'ADT',
model: 'TSSC Lifestyle Module',
primaryConnectionType: 'Broadband',
},
},
{
description: 'ADT TSSC Lifestyle Module / HW 1 / Broadband Unavailable',
gateway: {
broadbandConnectionStatus: 'Unavailable',
cellularConnectionStatus: 'N/A',
cellularSignalStrength: 'N/A',
firmwareVersion: '24.0.0-9',
hardwareVersion: 'HW=0001, BL=UBOOT 2009.08-svn99, PL=5.5.0-5, SKU=TSSC-NA-NONE-01',
manufacturer: 'ADT',
model: 'TSSC Lifestyle Module',
primaryConnectionType: 'Broadband',
},
},
{
description: 'ADT TSSC Lifestyle Module / HW 2 / Broadband Active',
gateway: {
Expand All @@ -419,6 +458,19 @@ export const deviceGateways: DeviceGateways = [
primaryConnectionType: 'Broadband',
},
},
{
description: 'ADT TSSC Lifestyle Module / HW 2 / Broadband Unavailable',
gateway: {
broadbandConnectionStatus: 'Unavailable',
cellularConnectionStatus: 'N/A',
cellularSignalStrength: 'N/A',
firmwareVersion: '24.0.0-9',
hardwareVersion: 'HW=0002, BL=UBOOT 2009.08-svn99, PL=5.5.0-5, SKU=TSSC-NA-NONE-01',
manufacturer: 'ADT',
model: 'TSSC Lifestyle Module',
primaryConnectionType: 'Broadband',
},
},
{
description: 'Compact SMA Protocol Gateway / HW 2 / Broadband Active',
gateway: {
Expand All @@ -432,6 +484,19 @@ export const deviceGateways: DeviceGateways = [
primaryConnectionType: 'Broadband',
},
},
{
description: 'Compact SMA Protocol Gateway / HW 2 / Broadband Unavailable',
gateway: {
broadbandConnectionStatus: 'Unavailable',
cellularConnectionStatus: 'N/A',
cellularSignalStrength: 'N/A',
firmwareVersion: '27.0.0-140',
hardwareVersion: 'HW=02_CSMAP, BL=NA, PL=27.0.0-140',
manufacturer: null,
model: 'Compact SMA Protocol Gateway',
primaryConnectionType: 'Broadband',
},
},
{
description: 'Compact SMA Protocol Gateway / HW 2 / Cellular Active',
gateway: {
Expand Down Expand Up @@ -471,6 +536,19 @@ export const deviceGateways: DeviceGateways = [
primaryConnectionType: 'Cellular',
},
},
{
description: 'Lynx/QuickConnect Cellular-Only Gateway / HW 2 / Cellular Unavailable',
gateway: {
broadbandConnectionStatus: null,
cellularConnectionStatus: 'Unavailable',
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',
},
},
];

/**
Expand Down Expand Up @@ -551,6 +629,14 @@ export const deviceSecurityPanels: DeviceSecurityPanels = [
typeModel: 'Security Panel - Concord 4',
},
},
{
description: 'Honeywell Security Vista-20PSIA - Emergency Keys PE 95/FA 96/APA 99',
panel: {
emergencyKeys: 'Button: Personal Emergency (Zone 95) Button: Fire Alarm (Zone 96) Button: Audible Panic Alarm (Zone 99)',
manufacturerProvider: 'Honeywell Security',
typeModel: 'Security Panel - Vista-20PSIA',
},
},
];

/**
Expand Down

0 comments on commit c54d0e9

Please sign in to comment.