Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
150 changes: 0 additions & 150 deletions src/devices/climax.ts

This file was deleted.

28 changes: 28 additions & 0 deletions src/devices/climaxtechnology.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import * as fz from "../converters/fromZigbee";
import * as tz from "../converters/toZigbee";
import * as exposes from "../lib/exposes";
import * as m from "../lib/modernExtend";
import * as reporting from "../lib/reporting";
import type {DefinitionWithExtend} from "../lib/types";

const e = exposes.presets;
const ea = exposes.access;

export const definitions: DefinitionWithExtend[] = [
{
zigbeeModel: ['PSSP5_00.00.03.02TC'],
model: "PSSP5_00.00.03.02TC",
vendor: "Climaxtechnology",
description: "Automatically generated definition",
extend: [m.deviceEndpoints({"endpoints":{"1":1,"4":4}}), m.onOff({"powerOnBehavior":false})],
meta: {"multiEndpoint":true},
};

Check failure on line 19 in src/devices/climaxtechnology.ts

View workflow job for this annotation

GitHub Actions / ci

',' expected.
{
zigbeeModel: ['852L_00.00.03.10TC'],
model: '852L_00.00.03.10TC',

Check failure on line 22 in src/devices/climaxtechnology.ts

View workflow job for this annotation

GitHub Actions / ci

';' expected.
vendor: 'ClimaxTechnology',

Check failure on line 23 in src/devices/climaxtechnology.ts

View workflow job for this annotation

GitHub Actions / ci

';' expected.
description: 'Automatically generated definition',

Check failure on line 24 in src/devices/climaxtechnology.ts

View workflow job for this annotation

GitHub Actions / ci

';' expected.
extend: [m.iasZoneAlarm({"zoneType":"generic","zoneAttributes":["alarm_1","alarm_2","tamper","battery_low"]})],

Check failure on line 25 in src/devices/climaxtechnology.ts

View workflow job for this annotation

GitHub Actions / ci

';' expected.
meta: {},

Check failure on line 26 in src/devices/climaxtechnology.ts

View workflow job for this annotation

GitHub Actions / ci

Declaration or statement expected.

Check failure on line 26 in src/devices/climaxtechnology.ts

View workflow job for this annotation

GitHub Actions / ci

';' expected.
};
];

Check failure on line 28 in src/devices/climaxtechnology.ts

View workflow job for this annotation

GitHub Actions / ci

Declaration or statement expected.
Loading