Zgłoszenia nowych urządzeń [bramka Zigbee]

Moderator: vajera

MW1
Posts: 27
Joined: Fri Sep 24, 2021 7:33 pm

Post

vajera wrote: Wed Oct 01, 2025 10:44 am
MW1 wrote: Sun Sep 28, 2025 3:04 pm
https://pl.aliexpress.com/item/10050056 ... pt=glo2pol
Nieznany model _TZE204_mtoaryre::TS0601, nie ma możliwości powiązania
+BWNU 0.9.50-01/10/2025 - proszę o testy i służę wsparciem, bo to nowy model.
Na początek wielkie dzięki.

Pierwsze spostrzeżenie w trybie automatycznym zamienione włącz-wyłącz. Włączenie trybu automatycznego rozłącza przełączanie ręczne przekaźnika i tak powinno być. Brak możliwości ustawiania czułości, odległości i czasu.
Bardziej obstawiam że to ja nie potrafię tego skonfigurować. Zrobiłem to w aplikacji Tuja a czujnik zapamiętał te ustawienia więc na moje potrzeby wystarczy. W aplikacji ładnie wizualizuje naruszenie strefy.
Gdybyś chciał się tym bawić to mogę testować, ale moje umiejętności konfigurowania są raczej cienkie.
User avatar
vajera
Posts: 7290
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 289 times
Been thanked: 161 times

Post

MW1 wrote: Thu Oct 02, 2025 7:46 pm
vajera wrote: Wed Oct 01, 2025 10:44 am
MW1 wrote: Sun Sep 28, 2025 3:04 pm
https://pl.aliexpress.com/item/10050056 ... pt=glo2pol
Nieznany model _TZE204_mtoaryre::TS0601, nie ma możliwości powiązania
+BWNU 0.9.50-01/10/2025 - proszę o testy i służę wsparciem, bo to nowy model.
Na początek wielkie dzięki.

Pierwsze spostrzeżenie w trybie automatycznym zamienione włącz-wyłącz. Włączenie trybu automatycznego rozłącza przełączanie ręczne przekaźnika i tak powinno być.
Rozwiniesz temat?
Brak możliwości ustawiania czułości, odległości i czasu.

Bardziej obstawiam że to ja nie potrafię tego skonfigurować. Zrobiłem to w aplikacji Tuja a czujnik zapamiętał te ustawienia więc na moje potrzeby wystarczy. W aplikacji ładnie wizualizuje naruszenie strefy.
Gdybyś chciał się tym bawić to mogę testować, ale moje umiejętności konfigurowania są raczej cienkie.
Mozłiwość jest - póki co ręczna, ale pracuje na automatyzacją ;)

Code: Select all

numeric("radar_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withDescription("Detection threshold for the strength of object energy"),
            e
                .numeric("detection_range", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Maximum distance detected by the sensor"),
            e
                .numeric("shield_range", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Nearest distance detected by the sensor"),
            e
                .numeric("entry_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withDescription("Sensitivity threshold triggered for the first time when the target enters the detection range"),
            e
                .numeric("entry_distance_indentation", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Indent the distance inward based on the detection distance"),
            e
                .numeric("entry_filter_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(10)
                .withValueStep(0.1)
                .withUnit("s")
                .withDescription("Sensitivity threshold triggered for the first time when the target enters the detection range "),
            e
                .numeric("departure_delay", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(600)
                .withValueStep(1)
                .withUnit("s")
                .withDescription("Confirmation time after the target disappears"),
            e
                .numeric("block_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(10)
                .withValueStep(0.1)
                .withUnit("s")
                .withDescription("Time for the target to be detected again after switching from manned(occupy) to unmanned(unoccupy) mode"),
            e.binary("breaker_status", ea.STATE_SET, "ON", "OFF").withDescription("Remotely control the breaker in standard mode"),
            e
                .enum("breaker_mode", ea.STATE_SET, ["standard", "local"])
                .withDescription("Breaker mode: standard is remotely controlled, local is automatic"),
            e
                .numeric("illuminance_threshold", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(420)
                .withValueStep(0.1)
                .withUnit("lx")
                .withDescription("Illumination threshold for local (automatic) switching mode operation"),
            e.enum("status_indication", ea.STATE_SET, ["OFF", "ON"]).withDescription("Indicator light will flash when human presence is detected"),
            e
                .enum("sensor", ea.STATE_SET, ["on", "off", "occupied", "unoccupied"])
                .withDescription(
                    "The radar sensor can be set in four states: on, off, occupied and unoccupied. For example, if set to occupied, " +
                        "it will continue to maintain presence regardless of whether someone is present or not. If set to unoccupied, the unoccupied " +
                        "state will be maintained permanently.",
                ),
        ],
        meta: {
            tuyaDatapoints: [
                [1, "presence", tuya.valueConverter.trueFalse1],
                [2, "radar_sensitivity", tuya.valueConverter.raw],
                [3, "shield_range", tuya.valueConverter.divideBy100],
                [4, "detection_range", tuya.valueConverter.divideBy100],
                [6, "equipment_status", tuya.valueConverter.raw],
                [9, "target_distance", tuya.valueConverter.divideBy100],
                [101, "entry_filter_time", tuya.valueConverter.divideBy10],
                [102, "departure_delay", tuya.valueConverter.raw],
                [103, "cline", tuya.valueConverter.raw],
                [104, "illuminance", tuya.valueConverter.divideBy10],
                [105, "entry_sensitivity", tuya.valueConverter.raw],
                [106, "entry_distance_indentation", tuya.valueConverter.divideBy100],
                [
                    107,
                    "breaker_mode",
                    tuya.valueConverterBasic.lookup({
                        standard: tuya.enum(0),
                        local: tuya.enum(1),
                    }),
                ],
                [
                    108,
                    "breaker_status",
                    tuya.valueConverterBasic.lookup({
                        OFF: tuya.enum(0),
                        ON: tuya.enum(1),
                    }),
                ],
                [
                    109,
                    "status_indication",
                    tuya.valueConverterBasic.lookup({
                        OFF: tuya.enum(0),
                        ON: tuya.enum(1),
                    }),
                ],
                [110, "illuminance_threshold", tuya.valueConverter.divideBy10],
                [
                    111,
                    "breaker_polarity",
                    tuya.valueConverterBasic.lookup({
                        NC: tuya.enum(0),
                        NO: tuya.enum(1),
                    }),
                ],
                [112, "block_time", tuya.valueConverter.divideBy10],
                [113, "parameter_setting_result", tuya.valueConverter.raw],
                [114, "factory_parameters", tuya.valueConverter.raw],
                [
                    115,
                    "sensor",
                    tuya.valueConverterBasic.lookup({
                        on: tuya.enum(0),
                        off: tuya.enum(1),
                        occupied: tuya.enum(2),
                        unoccupied: tuya.enum(3),
                    }),
     
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
MW1
Posts: 27
Joined: Fri Sep 24, 2021 7:33 pm

Post

vajera wrote: Thu Oct 02, 2025 7:50 pm
MW1 wrote: Thu Oct 02, 2025 7:46 pm
vajera wrote: Wed Oct 01, 2025 10:44 am

+BWNU 0.9.50-01/10/2025 - proszę o testy i służę wsparciem, bo to nowy model.
Na początek wielkie dzięki.

Pierwsze spostrzeżenie w trybie automatycznym zamienione włącz-wyłącz. Włączenie trybu automatycznego rozłącza przełączanie ręczne przekaźnika i tak powinno być.
Rozwiniesz temat?
Brak możliwości ustawiania czułości, odległości i czasu.

Bardziej obstawiam że to ja nie potrafię tego skonfigurować. Zrobiłem to w aplikacji Tuja a czujnik zapamiętał te ustawienia więc na moje potrzeby wystarczy. W aplikacji ładnie wizualizuje naruszenie strefy.
Gdybyś chciał się tym bawić to mogę testować, ale moje umiejętności konfigurowania są raczej cienkie.
Mozłiwość jest - póki co ręczna, ale pracuje na automatyzacją ;)

Code: Select all

numeric("radar_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withDescription("Detection threshold for the strength of object energy"),
            e
                .numeric("detection_range", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Maximum distance detected by the sensor"),
            e
                .numeric("shield_range", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Nearest distance detected by the sensor"),
            e
                .numeric("entry_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withDescription("Sensitivity threshold triggered for the first time when the target enters the detection range"),
            e
                .numeric("entry_distance_indentation", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Indent the distance inward based on the detection distance"),
            e
                .numeric("entry_filter_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(10)
                .withValueStep(0.1)
                .withUnit("s")
                .withDescription("Sensitivity threshold triggered for the first time when the target enters the detection range "),
            e
                .numeric("departure_delay", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(600)
                .withValueStep(1)
                .withUnit("s")
                .withDescription("Confirmation time after the target disappears"),
            e
                .numeric("block_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(10)
                .withValueStep(0.1)
                .withUnit("s")
                .withDescription("Time for the target to be detected again after switching from manned(occupy) to unmanned(unoccupy) mode"),
            e.binary("breaker_status", ea.STATE_SET, "ON", "OFF").withDescription("Remotely control the breaker in standard mode"),
            e
                .enum("breaker_mode", ea.STATE_SET, ["standard", "local"])
                .withDescription("Breaker mode: standard is remotely controlled, local is automatic"),
            e
                .numeric("illuminance_threshold", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(420)
                .withValueStep(0.1)
                .withUnit("lx")
                .withDescription("Illumination threshold for local (automatic) switching mode operation"),
            e.enum("status_indication", ea.STATE_SET, ["OFF", "ON"]).withDescription("Indicator light will flash when human presence is detected"),
            e
                .enum("sensor", ea.STATE_SET, ["on", "off", "occupied", "unoccupied"])
                .withDescription(
                    "The radar sensor can be set in four states: on, off, occupied and unoccupied. For example, if set to occupied, " +
                        "it will continue to maintain presence regardless of whether someone is present or not. If set to unoccupied, the unoccupied " +
                        "state will be maintained permanently.",
                ),
        ],
        meta: {
            tuyaDatapoints: [
                [1, "presence", tuya.valueConverter.trueFalse1],
                [2, "radar_sensitivity", tuya.valueConverter.raw],
                [3, "shield_range", tuya.valueConverter.divideBy100],
                [4, "detection_range", tuya.valueConverter.divideBy100],
                [6, "equipment_status", tuya.valueConverter.raw],
                [9, "target_distance", tuya.valueConverter.divideBy100],
                [101, "entry_filter_time", tuya.valueConverter.divideBy10],
                [102, "departure_delay", tuya.valueConverter.raw],
                [103, "cline", tuya.valueConverter.raw],
                [104, "illuminance", tuya.valueConverter.divideBy10],
                [105, "entry_sensitivity", tuya.valueConverter.raw],
                [106, "entry_distance_indentation", tuya.valueConverter.divideBy100],
                [
                    107,
                    "breaker_mode",
                    tuya.valueConverterBasic.lookup({
                        standard: tuya.enum(0),
                        local: tuya.enum(1),
                    }),
                ],
                [
                    108,
                    "breaker_status",
                    tuya.valueConverterBasic.lookup({
                        OFF: tuya.enum(0),
                        ON: tuya.enum(1),
                    }),
                ],
                [
                    109,
                    "status_indication",
                    tuya.valueConverterBasic.lookup({
                        OFF: tuya.enum(0),
                        ON: tuya.enum(1),
                    }),
                ],
                [110, "illuminance_threshold", tuya.valueConverter.divideBy10],
                [
                    111,
                    "breaker_polarity",
                    tuya.valueConverterBasic.lookup({
                        NC: tuya.enum(0),
                        NO: tuya.enum(1),
                    }),
                ],
                [112, "block_time", tuya.valueConverter.divideBy10],
                [113, "parameter_setting_result", tuya.valueConverter.raw],
                [114, "factory_parameters", tuya.valueConverter.raw],
                [
                    115,
                    "sensor",
                    tuya.valueConverterBasic.lookup({
                        on: tuya.enum(0),
                        off: tuya.enum(1),
                        occupied: tuya.enum(2),
                        unoccupied: tuya.enum(3),
                    }),
     
To że jak włączam to wyłącza i odwrotnie. A że tak powinno być to dlatego aby nie mylił kanałów. Nawet go chyba wyłączę.
Żebym jeszcze wiedział co z tym kodem zrobić :oops:
User avatar
vajera
Posts: 7290
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 289 times
Been thanked: 161 times

Post

MW1 wrote: Thu Oct 02, 2025 8:18 pm
vajera wrote: Thu Oct 02, 2025 7:50 pm
MW1 wrote: Thu Oct 02, 2025 7:46 pm

Na początek wielkie dzięki.

Pierwsze spostrzeżenie w trybie automatycznym zamienione włącz-wyłącz. Włączenie trybu automatycznego rozłącza przełączanie ręczne przekaźnika i tak powinno być.
Rozwiniesz temat?
Brak możliwości ustawiania czułości, odległości i czasu.

Bardziej obstawiam że to ja nie potrafię tego skonfigurować. Zrobiłem to w aplikacji Tuja a czujnik zapamiętał te ustawienia więc na moje potrzeby wystarczy. W aplikacji ładnie wizualizuje naruszenie strefy.
Gdybyś chciał się tym bawić to mogę testować, ale moje umiejętności konfigurowania są raczej cienkie.
Mozłiwość jest - póki co ręczna, ale pracuje na automatyzacją ;)

Code: Select all

numeric("radar_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withDescription("Detection threshold for the strength of object energy"),
            e
                .numeric("detection_range", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Maximum distance detected by the sensor"),
            e
                .numeric("shield_range", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Nearest distance detected by the sensor"),
            e
                .numeric("entry_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withDescription("Sensitivity threshold triggered for the first time when the target enters the detection range"),
            e
                .numeric("entry_distance_indentation", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(8)
                .withValueStep(0.1)
                .withUnit("m")
                .withDescription("Indent the distance inward based on the detection distance"),
            e
                .numeric("entry_filter_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(10)
                .withValueStep(0.1)
                .withUnit("s")
                .withDescription("Sensitivity threshold triggered for the first time when the target enters the detection range "),
            e
                .numeric("departure_delay", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(600)
                .withValueStep(1)
                .withUnit("s")
                .withDescription("Confirmation time after the target disappears"),
            e
                .numeric("block_time", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(10)
                .withValueStep(0.1)
                .withUnit("s")
                .withDescription("Time for the target to be detected again after switching from manned(occupy) to unmanned(unoccupy) mode"),
            e.binary("breaker_status", ea.STATE_SET, "ON", "OFF").withDescription("Remotely control the breaker in standard mode"),
            e
                .enum("breaker_mode", ea.STATE_SET, ["standard", "local"])
                .withDescription("Breaker mode: standard is remotely controlled, local is automatic"),
            e
                .numeric("illuminance_threshold", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(420)
                .withValueStep(0.1)
                .withUnit("lx")
                .withDescription("Illumination threshold for local (automatic) switching mode operation"),
            e.enum("status_indication", ea.STATE_SET, ["OFF", "ON"]).withDescription("Indicator light will flash when human presence is detected"),
            e
                .enum("sensor", ea.STATE_SET, ["on", "off", "occupied", "unoccupied"])
                .withDescription(
                    "The radar sensor can be set in four states: on, off, occupied and unoccupied. For example, if set to occupied, " +
                        "it will continue to maintain presence regardless of whether someone is present or not. If set to unoccupied, the unoccupied " +
                        "state will be maintained permanently.",
                ),
        ],
        meta: {
            tuyaDatapoints: [
                [1, "presence", tuya.valueConverter.trueFalse1],
                [2, "radar_sensitivity", tuya.valueConverter.raw],
                [3, "shield_range", tuya.valueConverter.divideBy100],
                [4, "detection_range", tuya.valueConverter.divideBy100],
                [6, "equipment_status", tuya.valueConverter.raw],
                [9, "target_distance", tuya.valueConverter.divideBy100],
                [101, "entry_filter_time", tuya.valueConverter.divideBy10],
                [102, "departure_delay", tuya.valueConverter.raw],
                [103, "cline", tuya.valueConverter.raw],
                [104, "illuminance", tuya.valueConverter.divideBy10],
                [105, "entry_sensitivity", tuya.valueConverter.raw],
                [106, "entry_distance_indentation", tuya.valueConverter.divideBy100],
                [
                    107,
                    "breaker_mode",
                    tuya.valueConverterBasic.lookup({
                        standard: tuya.enum(0),
                        local: tuya.enum(1),
                    }),
                ],
                [
                    108,
                    "breaker_status",
                    tuya.valueConverterBasic.lookup({
                        OFF: tuya.enum(0),
                        ON: tuya.enum(1),
                    }),
                ],
                [
                    109,
                    "status_indication",
                    tuya.valueConverterBasic.lookup({
                        OFF: tuya.enum(0),
                        ON: tuya.enum(1),
                    }),
                ],
                [110, "illuminance_threshold", tuya.valueConverter.divideBy10],
                [
                    111,
                    "breaker_polarity",
                    tuya.valueConverterBasic.lookup({
                        NC: tuya.enum(0),
                        NO: tuya.enum(1),
                    }),
                ],
                [112, "block_time", tuya.valueConverter.divideBy10],
                [113, "parameter_setting_result", tuya.valueConverter.raw],
                [114, "factory_parameters", tuya.valueConverter.raw],
                [
                    115,
                    "sensor",
                    tuya.valueConverterBasic.lookup({
                        on: tuya.enum(0),
                        off: tuya.enum(1),
                        occupied: tuya.enum(2),
                        unoccupied: tuya.enum(3),
                    }),
     
To że jak włączam to wyłącza i odwrotnie. A że tak powinno być to dlatego aby nie mylił kanałów. Nawet go chyba wyłączę.
Mogę to zmienić w kodzie - zrobisz aktualizację i będzie OK.
Żebym jeszcze wiedział co z tym kodem zrobić :oops:
GUI->zakładka Tuya custom cluster

Code: Select all

numeric("radar_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withDescription("Detection threshold for the strength of object energy"),
[2, "radar_sensitivity", tuya.valueConverter.raw],

Więc w datapoint wpisujesz 2, w datatype wybierasz VALUE a w polu payload wpisujesz wartość w formacie 000000XX, gdzie XX jest liczbą z przedziału 0...9.
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
User avatar
vajera
Posts: 7290
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 289 times
Been thanked: 161 times

Post

Mario78 wrote: Thu Oct 02, 2025 4:32 pm Uprzejmie proszę kolejny raz o przysługę i dodanie kolejnego przelacznika ściennego. Tym razem to
WS-EUK02 Aqara (bez n)
Bardzo solidnie wykonany. Super miło wciska sie microswitche i ma nawet metalowa podstawę.


Unknown model LUMI::lumi.switch.l2aeu1, no binding
https://inteligentnydom.co/bezpieczenst ... -ws-euk02/
On działa w oparciu o klaster MULTISTATE, który zacząłem swego czasu oprogramowywać pod kątem tej kostki ;)
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
MW1
Posts: 27
Joined: Fri Sep 24, 2021 7:33 pm

Post

vajera wrote: Thu Oct 02, 2025 8:26 pm
MW1 wrote: Thu Oct 02, 2025 8:18 pm
vajera wrote: Thu Oct 02, 2025 7:50 pm
Rozwiniesz temat?

Mozłiwość jest - póki co ręczna, ale pracuje na automatyzacją ;)

To że jak włączam to wyłącza i odwrotnie. A że tak powinno być to dlatego aby nie mylił kanałów. Nawet go chyba wyłączę.
Mogę to zmienić w kodzie - zrobisz aktualizację i będzie OK.
Żebym jeszcze wiedział co z tym kodem zrobić :oops:
GUI->zakładka Tuya custom cluster

Code: Select all

numeric("radar_sensitivity", ea.STATE_SET)
                .withValueMin(0)
                .withValueMax(9)
                .withValueStep(1)
                .withDescription("Detection threshold for the strength of object energy"),
[2, "radar_sensitivity", tuya.valueConverter.raw],

Więc w datapoint wpisujesz 2, w datatype wybierasz VALUE a w polu payload wpisujesz wartość w formacie 000000XX, gdzie XX jest liczbą z przedziału 0...9.
Chyba tylko po to by ładniej wyglądało.
U mnie będzie do działało automatycznie, ewentualnie jak stracę cierpliwość do problematycznego alarmu i zrobię namiastkę na Supli, to mogę ten czujnik wykorzystać.
User avatar
Zibi_007
Posts: 3985
Joined: Tue Oct 31, 2023 10:06 pm
Has thanked: 10 times
Been thanked: 31 times

Post

Proszę o dodanie sterownika LED (ściemniacz, jednokanałowy): eWeLight::ZB-DL01
Taki sam, jak tutaj: https://zigbee.blakadder.com/Ysrsai_ZB-DL01.html i tutaj: https://pl.aliexpress.com/item/1005007284549800.html (DC Single color).
Image Wiesz, że Supla obsługuje Zigbee? Wstąp do Klubu Promila: https://forum.supla.org/viewtopic.php?t=18018
Image Szukasz nowego GG? Jest tutaj: https://forum.supla.org/viewtopic.php?t=18036
User avatar
Mario78
Posts: 409
Joined: Fri Jan 05, 2024 6:18 am
Location: Śląsk
Been thanked: 1 time

Post

vajera wrote: Thu Oct 02, 2025 9:39 pm
Mario78 wrote: Thu Oct 02, 2025 4:32 pm Uprzejmie proszę kolejny raz o przysługę i dodanie kolejnego przelacznika ściennego. Tym razem to
WS-EUK02 Aqara (bez n)
Bardzo solidnie wykonany. Super miło wciska sie microswitche i ma nawet metalowa podstawę.


Unknown model LUMI::lumi.switch.l2aeu1, no binding
https://inteligentnydom.co/bezpieczenst ... -ws-euk02/
On działa w oparciu o klaster MULTISTATE, który zacząłem swego czasu oprogramowywać pod kątem tej kostki ;)
Czyli rozumiem ze trzeba poczekać? Dasz radę go dodac? Bo nie wiem czy demontować ze ściany😅
User avatar
vajera
Posts: 7290
Joined: Wed Oct 31, 2018 7:58 am
Location: Biedrusko
Has thanked: 289 times
Been thanked: 161 times

Post

Mario78 wrote: Fri Oct 03, 2025 5:48 am
vajera wrote: Thu Oct 02, 2025 9:39 pm
Mario78 wrote: Thu Oct 02, 2025 4:32 pm Uprzejmie proszę kolejny raz o przysługę i dodanie kolejnego przelacznika ściennego. Tym razem to
WS-EUK02 Aqara (bez n)
Bardzo solidnie wykonany. Super miło wciska sie microswitche i ma nawet metalowa podstawę.





https://inteligentnydom.co/bezpieczenst ... -ws-euk02/
On działa w oparciu o klaster MULTISTATE, który zacząłem swego czasu oprogramowywać pod kątem tej kostki ;)
Czyli rozumiem ze trzeba poczekać? Dasz radę go dodac? Bo nie wiem czy demontować ze ściany😅
Dam radę, ale kusi mnie wykorzystanie wszystkich funkcji - czy jak dodam wersję testową, to dasz radę zebrać logi?
Bramka Zigbee <=> SUPLA
Więcej informacji tutaj:
https://forum.supla.org/viewforum.php?f=127
FAQ https://forum.supla.org/viewtopic.php?t=17277
User avatar
Mario78
Posts: 409
Joined: Fri Jan 05, 2024 6:18 am
Location: Śląsk
Been thanked: 1 time

Post

vajera wrote: Fri Oct 03, 2025 7:06 am
Mario78 wrote: Fri Oct 03, 2025 5:48 am
vajera wrote: Thu Oct 02, 2025 9:39 pm

On działa w oparciu o klaster MULTISTATE, który zacząłem swego czasu oprogramowywać pod kątem tej kostki ;)
Czyli rozumiem ze trzeba poczekać? Dasz radę go dodac? Bo nie wiem czy demontować ze ściany😅
Dam radę, ale kusi mnie wykorzystanie wszystkich funkcji - czy jak dodam wersję testową, to dasz radę zebrać logi?
Tak. Nawet teraz mogę to zrobić
Rozumiem ze z parowania logi.?

Return to “Bramka ZigBee”