Zemismart AM15 shutter motor control via Zigbee Dongle Model AM02 using zigbee2tasmota #18424
leehadassin
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
just wanted to leave this here for anyone else who wants to control their shutters for zemismart via their AM02 dongle without resorting to Z2M or ZHA.
The details for this zigbee dongle are:
Zigbee Dongle For AM15 Motor
Model AM02 manufactured by Zemismart
Zigbee ID: TS0601 | _TZE200_iossyxra
The tasmota zgibee commands I nutted out are:
ZbSend {"device":"<address>", "write":{"EF00/0401":0}}
//Control - openZbSend {"device":"<address>", "write":{"EF00/0401":1}}
//Control - stopZbSend {"device":"<address>", "write":{"EF00/0401":2}}
//Control - closeZbSend {"device":"<address>", "write":{"EF00/0401":3}}
//Control - continueZbSend {"device":"<address>", "write":{"EF00/0410":0}}
//border - upZbSend {"device":"<address>", "write":{"EF00/0410":1}}
//border - downZbSend {"device":"<address>", "write":{"EF00/0410":2}}
//border - down_deleteZbSend {"device":"<address>", "write":{"EF00/0405":0}}
//direction - forwardZbSend {"device":"<address>", "write":{"EF00/0405":1}}
//direction - backward (didnt seem to like it)ZbSend {"device":"<address>", "write":{"EF00/0414":0}}
//motor working mode - continuousZbSend {"device":"<address>", "write":{"EF00/0414":1}}
//motor working mode - intermittentlyThe one I couldn't work out is commanding a specific open percentage. looking at the other home automation solutions, imnot entirely sure this actually works on any of them, but if someone works it out i would be very happy. for now open/stop/close is good enough.
ZbSend {"device":"<address>", "write":{"EF00/0202":<value>}}
//percent control - doesnt work :( haven't worked out the correct encodingNext step for me is to bypass the zigbee dongle and just send the RFraw signals direct to the shutter motor.
Beta Was this translation helpful? Give feedback.
All reactions