TS0505B niewspierana w Z2M

Zakupiłem taka żarówkę zigbee, niestety mam info że nie jest wspierana coś można zaradzić w tym temacie

Jaką masz wersję Z2M?

Wersja jaka teraz jest zainstalowana to 1.26.0-1.Po aktualizacji do 1.28 mam błąd i strona się nie ładuje.

Co to za żarówka? - producent, model.
Z jakiego koordynatora korzystasz?

1 polubienie

Żarówka to jakiś chińczyk,koordynator to CC2531 .

spróbuj sobie wrzucić w external coinverter to:

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 e = exposes.presets;
const ea = exposes.access;
const tuya = require("zigbee-herdsman-converters/lib/tuya");

const definition = {
    fingerprint: [
        {
            // The model ID from: Device with modelID 'TS0505B' is not supported
            // You may need to add \u0000 at the end of the name in some cases
            modelID: 'TS0505B',
            // The manufacturer name from: Device with modelID '_TZ3210_r5afgmkl' is not supported.
            manufacturerName: '_TZ3210_r5afgmkl'
        },
    ],
    model: 'TS0505B',
    vendor: 'TuYa',
    description: 'Zigbee RGB+CCT light',
    // Note that fromZigbee, toZigbee and exposes are missing here since we use extend here.
    // Extend contains a default set of fromZigbee/toZigbee converters and expose for common device types.
    // The following extends are available:
    // - extend.switch
    // - extend.light_onoff_brightness
    // - extend.light_onoff_brightness_colortemp
    // - extend.light_onoff_brightness_color
    // - extend.light_onoff_brightness_colortemp_color
    extend: extend.light_onoff_brightness_colortemp_color(
        {disableColorTempStartup: true, colorTempRange: [153, 500], disableEffect: true}),
    meta: {applyRedFix: true, enhancedHue: false},
};

module.exports = definition;

Nigdy nie dodawałem niestandardowych,trzeba jakieś pliki utworzyć? Czytałem opis ale nie do końca go rozumiem.