Hi,
anyone else had struggle to make a converter for the subjects device?
I managed to make a converter based on other locks but does not work. I’m dumb as a dumbell and can not proceed with this issue.
import fz from '../converters/fromZigbee';
import * as exposes from '../lib/exposes';
import * as legacy from '../lib/legacy';
import {Definition} from '../lib/types';
const e = exposes.presets;
const ea = exposes.access;
const definitions: Definition[] = [
{
zigbeeModel: ['TY0A01'],
fingerprint: [
{modelID: '_TYST12_zse77yqb', manufacturerName: 'Avatto'},
],
model: 'TY0A01',
vendor: '_TYST12_zse77yqb',
description: 'Älylukkok',
fromZigbee: [fz.javis_lock_report, fz.battery],
toZigbee: [],
exposes: [e.battery(), e.action(['unlock'])],
},
{
zigbeeModel: ['JAVISSENSOR'],
fingerprint: [
{modelID: 'TS0601', manufacturerName: '_TZE200_lgstepha'},
{modelID: 'TS0601', manufacturerName: '_TZE200_kagkgk0i'},
{modelID: 'TS0601', manufacturerName: '_TZE200_i0b1dbqu'},
],
model: 'JS-MC-SENSOR-ZB',
vendor: 'JAVIS',
description: 'Microwave sensor',
fromZigbee: [legacy.fz.javis_microwave_sensor, fz.ignore_basic_report],
toZigbee: [legacy.tz.javis_microwave_sensor],
exposes: [
e.occupancy(),
e.illuminance_lux(),
e.binary('led_enable', ea.STATE_SET, true, false).withDescription('Enabled LED'),
e
.enum('keep_time', ea.STATE_SET, ['0', '1', '2', '3', '4', '5', '6', '7'])
.withDescription('PIR keep time 0:5s|1:30s|2:60s|3:180s|4:300s|5:600s|6:1200s|7:1800s'),
e.enum('sensitivity', ea.STATE_SET, ['25', '50', '75', '100']),
e.numeric('illuminance_calibration', ea.STATE_SET).withDescription('Illuminance calibration').withValueMin(-10000).withValueMax(10000),
],
},
];
export default definitions;
module.exports = definitions;
module.exports = definition;