Marin Basic

Results 8 comments of Marin Basic

hey @willmendil . In linux, everything is a file so as the input devices (keyboard, mouse etc..) If you look at the /dev/input on any linux distro you will see...

It's not striped, it's still there, but it's called _param2_ :) **Explanation:** From UI, it calls the drone API like: `https://droneserver.come/repos/x/xbuilds?branch=master&my_param=https://example.com/api/doStuff?param1=1&param2=2` The parameters are sent as query strings. In the...

@anujkumarthakur thank you for the comment and explanation. Requesting root permission, especially from a library is not a good practice. The user of the library should decide what to do...

The app was removed by google on play store. `Update your target API level by August 31, 2023 to ensure that your app is available to new users ` So,...

hmmm..that's really strange. Can you share with me the details so I can try to reproduce the issue? Which go version do you use? Can you share a snippet of...

I just modified from _TZE204_ugekduaj to _TZE204_dhotiauw and quirk gets loaded. Need to test with a proper load to see if I can get any data in. https://github.com/zigpy/zha-device-handlers/blob/ab4e4f5e1b3184aa73caf8f4e7e87a1f4ad9576c/zhaquirks/tuya/ts0601_din_power.py#L255 ![Image](https://github.com/user-attachments/assets/1033f859-b3bf-45ca-85d4-0a77acd0a757)

I managed to get power a,b phase and current a,b phase by using this configuration ```python .tuya_sensor( dp_id=103, attribute_name="power_consumed_ph_a", type=t.uint32_t, divisor=10, device_class=SensorDeviceClass.POWER, state_class=SensorStateClass.MEASUREMENT, unit=UnitOfPower.WATT, translation_key="power_ph_a", fallback_name="Power phase A", ) .tuya_sensor(...

sure, here is the full reference file ```python """Tuya Din Power Meter.""" from zigpy.profiles import zha from zigpy.quirks.v2 import SensorDeviceClass, SensorStateClass from zigpy.quirks.v2.homeassistant import PERCENTAGE, UnitOfEnergy, UnitOfElectricCurrent, UnitOfPower import zigpy.types...