Alexei Chetroi
Alexei Chetroi
Log excerpt ``` Device 0xcf04 (bc:33:ac:ff:fe:1a:85:80) joined the network [0xcf04] Requesting 'Node Descriptor' [0xcf04] Node Descriptor: NodeDescriptor(byte1=2, byte2=64, mac_capability_flags=128, manufacturer_code=4098, maximum_buffer_size=82, maximum_incoming_transfer_size=82, server_mask=11264, maximum_outgoing_transfer_size=82, descriptor_capability_field=0) [0xcf04] Discovering endpoints [0xcf04] Discovered...
enable debug logging as per zha docs (cause we need to see the payload too) and check if you get anything from the device (0xFC04) when you press the buttons...
Yeah, i don't think quirk could add non existing endpoints. Tuyas are such abomination. You could try to define a custom device and override ` handle_message()` method and if src_ep...
I'm not positive, but very likely I'm experiencing same issue: when a test in a test suite throws, it actually never exits the test, unless database connection is properly closed.
I can confirm that with ThreadExecutor pool throwing an exception in the test does not hang up the test.
how to reproduce: ```python import os import aiosqlite async def test_aiothread(loop, tmpdir): dbname = os.path.join(tmpdir, "test.db") conn = await aiosqlite.connect(dbname) assert False ``` running with `pytest test_aiosqlite.py` hangs indefinitely at...
> I'm pretty sure that if you instead constructed your tests like one of the two examples below, you should not see hung threads Yes, I agree completely, but that...
Samjin multipurpose sensors returns wrong 'device_class' for whatever reason. Reads as moisture instead of open/close On Thu, Sep 13, 2018, 17:33 Eric wrote: > It worked this time. Sorry about...
argh, I thought I posted my message, but apparently not. I had some partial success with original zigpy: ``` 018-09-15 00:25:39 DEBUG (MainThread) [homeassistant.components.sensor.zha] sensor.samjin_multi_01005e25_1_64514: Attribute update 'Smartthings Accelerometer'[x_axis] =...
@Yoda-x Yep, created the [quirks](https://github.com/Adminiuga/zigpy/commits/st-multipurpose) just for a quick&dirty test whether it worked or not. Quirks just defines the attributes, the real key was a quick fix to add[ support...