zigbee2mqtt icon indicating copy to clipboard operation
zigbee2mqtt copied to clipboard

Device model 'TS0601' and manufacturer name '_TZE200_atpwqgml' is NOT supported

Open RtoRoc opened this issue 2 years ago • 4 comments

Is your feature request related to a problem? Please describe

Good evening everyone. It's my first issue so forgive me if I'm wrong or omit something. I'm trying to pair a device 'TS0601' and manufacturer name '_TZE200_atpwqgml' . although the paring goes well. the log always gives me this error: Device '0xa4c138526908fb43' with Zigbee model 'TS0601' and manufacturer name '_TZE200_atpwqgml' is NOT supported how can I solve this problem???

thank you all

Describe the solution you'd like

I would like the device to be supported

Describe alternatives you've considered

non conosco altre soluzioni

Additional context

.

RtoRoc avatar Nov 25 '22 21:11 RtoRoc

Hi,

Please could you provide a link to the device that you are trying to pair? TS0601 means a wide array of devices in TuYa land...

Could you also upload the database.db entry too?

I think work with this .js.. This is a device link to buy https://it.aliexpress.com/item/1005001622518790.html

const fz = require('zigbee-herdsman-converters/converters/fromZigbee');
const tz = require('zigbee-herdsman-converters/converters/toZigbee');
const exposes = require('zigbee-herdsman-converters/lib/exposes');
const reporting = require('zigbee-herdsman-converters/lib/reporting');
const extend = require('zigbee-herdsman-converters/lib/extend');
const ota = require('zigbee-herdsman-converters/lib/ota');
const tuya = require('zigbee-herdsman-converters/lib/tuya');
const utils = require('zigbee-herdsman-converters/lib/utils');
const e = exposes.presets;
const ea = exposes.access;

const definition = {
    fingerprint: tuya.fingerprint('TS0601', ['_TZE200_atpwqgml']),
    model: 'TS0601_switch_3',
    vendor: 'TuYa',
    description: 'Zigbee 3 gang smart switch',
    fromZigbee: [tuya.fzDataPoints],
    toZigbee: [tuya.tzDataPoints],
    configure: tuya.configureMagicPacket,
    exposes: [
        e.switch().withEndpoint('l1'), 
        e.switch().withEndpoint('l2'), 
        e.switch().withEndpoint('l3')
    ],
    endpoint: (device) => {
        return {'l1': 1, 'l2': 1, 'l3': 1};
    },
    meta: {
        multiEndpoint: true,
        tuyaDatapoints: [
            [1, 'state_l1', tuya.valueConverter.onOff],
            [2, 'state_l2', tuya.valueConverter.onOff],
            [3, 'state_l3', tuya.valueConverter.onOff],
        ],
    },
};

module.exports = definition;

alesoft73 avatar Nov 28 '22 08:11 alesoft73

I have add with pull request ;) https://github.com/Koenkk/zigbee-herdsman-converters/pull/5036

alesoft73 avatar Nov 28 '22 09:11 alesoft73

Thank you very much. it works perfectly. the device is just the one in the link posted by alesoft

RtoRoc avatar Nov 28 '22 15:11 RtoRoc

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days

github-actions[bot] avatar Dec 29 '22 00:12 github-actions[bot]