-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Matter ZigBee Hub #592
Comments
Are you sure it's a v3.3 device? Newer ones tend to be 3.4 or 3.5. Is it picked up by the scanner ( |
I tried all versions, everywhere error 904
The new one refuses
|
Maybe it is Matter only for the local protocol? |
I would be happy to be able to control at least Zigbee devices from my new hub. Its technical characteristics are better than the old one, it is newer. |
@SergioLuxx I see your code clip but suggest trying something like: https://github.com/jasonacox/tinytuya/blob/master/examples/zigbee_gateway.py In any case, it would be good to see debug: import tinytuya
tinytuya.set_debug(True)
# configure the parent device
# address=None will cause it to search the network for the device
gw = tinytuya.Device( 'eb...4',
address=None,
local_key='aabbccddeeffgghh',
persist=True,
version=3.3 )
print( 'GW IP found:', gw.address )
# configure one or more children. Every dev_id must be unique!
# cid is the "node_id" from devices.json
# node_id can be used as an alias for cid
zigbee1 = tinytuya.OutletDevice( 'eb14...w', cid='0011223344556601', parent=gw )
print(zigbee1.status()) |
Here are the results of running this code for different versions v3.3
v3.4
v3.5
You can't even do print(gw.status())
|
@jasonacox
Now it gives out this:
This is the temperature sensor reading. However, I still get an error when doing this:
|
Yeah, a lot of hubs do not allow querying their status, you can only query sub-devices. You should be able to get a list of connected sub-devices with |
@uzlonewolf |
No, it looks like this is the status of the last device connected to the gateway. |
I decided to update my gateway and bought a new version. The old one is a wireless gateway also from Moes and it works well with tinytuya. But the new one refuses.
https://moeshouse.com/products/tuya-zigbee-matter-thread-gateway-smart-home-bridge-matter-hub
when trying to connect with any version returns an error
tinytuya.Device(dev_id=Gateway_s[0][1], address=Gateway_s[0][3], local_key=Gateway_s[0][4], version=3.3, connection_timeout=3)
Is this device not supported or am I doing something wrong?
The text was updated successfully, but these errors were encountered: