xiaomi_raw icon indicating copy to clipboard operation
xiaomi_raw copied to clipboard

Custom component for Home Assistant to faciliate the reverse engeneering of Xiaomi MiIO devices

Results 12 xiaomi_raw issues
Sort by recently updated
recently updated
newest added

Hello, when I add multi switches in the config yaml. I only get one in the entity. switch: - platform: xiaomi_miio_raw name: 'ricecooker_quick' ...... - platform: xiaomi_miio_raw name: 'ricecooker_cake' ......

I tried setting a switch but have difficulties setting the on/off state. config: switch: ``` - platform: xiaomi_miio_raw name: xjx night light host: 10.1.1.262 token: xxxxxxxxxxxxxxxxxxxxxx turn_on_command: 'night_led_on' turn_on_parameters: ''...

bug

enter order is default_properties: - washStatus - velocity - waterTemp - targetTemp - errStatus - hotWater - needClean - modeType - appointStart - appointEnd real order is 2021-03-01 00:20:36 DEBUG...

bug

The following command line works: ```bash miiocli device --ip 192.168.1.12 --token XXX raw_command setPrepareDish "[5,6390]" ``` But when I set the following in the config: ```yaml - platform: xiaomi_miio_raw name:...

enhancement
help wanted

I have multiple sensor entities created. When using xiaomi_miio_raw.sensor_raw_command nothing happens although logs say success: true but there's no ok response from the device ``` service: xiaomi_miio_raw.sensor_raw_command data: entity_id: sensor.xjx_seating...

Hello. How can I call to action? Some miot devices has aiid example: {"method":"action","params":{"did":"X","siid":2,"aiid":7,"in":[]},"id":123} in python-miio get_property_by(siid, piid) returns a single property, useful for testing with miiocli set_property_by(siid, piid, value,...

The command line works ```bash miiocli device --ip 192.168.195.211 --token XXX raw_command Query_Machine_Status "[]" Running command raw_command ['ok', 1] ``` If I set the void state_property in config, ```yaml -...

Some new devices only support get_properties by piid, and properties count not greater than 10. ``` $ miiocli device --ip xxx --token yyy raw_command get_properties "[{'did': 'voltage', 'piid': 3, 'siid':...

enhancement
miot-protocol

I am on `2024.2.4` HA and the integration can not load throwing below error: ```2024-02-26 21:30:52.511 ERROR (MainThread) [homeassistant.config] Platform error: switch - Exception importing custom_components.xiaomi_miio_raw.switch Traceback (most recent call...

Hi all! I was using succesfully your soultion for a while now. After recent changes to command_line in HA it stopped. I tried to fix it but I am unable...