Skip to content

Latest commit

 

History

History
2343 lines (1806 loc) · 189 KB

CHANGELOG.md

File metadata and controls

2343 lines (1806 loc) · 189 KB

Change Log

0.6.0.dev0 (2024-03-13)

This is a pre-release for 0.6.0 to make the current state of the library available via PyPI for testing and development, and is not yet ready for end users. There are several breaking changes as detailed in the PRs below, but for most library users, the most visible change being that the integrations have moved into their own packages under miio.integrations instead being available under the main package. Instead of directly importing the wanted implementation class, you can now use DeviceFactory to construct an instance.

This release is a huge with over 200 pull requests with 364 files changed, including 13748 insertions and 5114 deletions. It is also the largest release in terms of device support, as it adds support for all miot/miotspec devices using the genericmiot integration. This is a big change in how the library was originally designed, as these devices will require downloading externally hosted specification files to function. These files are downloaded automatically when the device is used for the first time and cached for some time for later invocations.

The major highlights of this release include:

  • Introspectable interfaces for accessing supported features (status(), sensors(), settings(), actions()) that will allow downstream users (like homeassistant) to support devices without hardcoding details in their codebases.
  • Generic support for all locally controllable, modern miot devices (using genericmiot integration, miiocli genericmiot).
  • Factory method for creating device instances instead of requiring to hardcode them (see DeviceFactory).
  • miio and miot simulators to allow development without having access to devices. This was used to create the miot support and might be useful for other developers.

There are plenty of more in this release, so huge thanks to everyone who has contributed to this release and my apologies that it has taken so long to prepare this. I am hoping that we will get the release blockers fixed in a timely manner to make these new improvements available for everyone without having to use the git version.

Help is needed to add the metadata required for the introspectable interfaces to all existing integrations, see https://python-miio.readthedocs.io/en/latest/contributing.html#status-containers and its subsections, if you are looking to contribute. Otherwise, feel free to test and report any issues, so that we can get those fixed for the 0.6.0! :-)

Note: the current homeassistant integration requires major refactoring effort to make use of the new interfaces, so this release will not be directly useful for most of the users until that work is done. This release aims to unblock other homeassistant PRs that have been pending for a long time.

Full Changelog

Breaking changes:

  • Introduce common interfaces based on device descriptors #1845 (@rytilahti)
  • Rename descriptor's 'property' to 'status_attribute' #1759 (@rytilahti)
  • Remove {Light,Vacuum}Interfaces #1743 (@rytilahti)
  • Rename SettingDescriptor's type to setting_type #1715 (@rytilahti)
  • Allow defining device_id for push server #1710 (@rytilahti)
  • Reorganize all integrations to vendor-specific dirs #1697 (@rytilahti)
  • Remove long-deprecated miio.vacuum module #1607 (@rytilahti)
  • Allow passing custom name for miotdevice.set_property_by #1576 (@rytilahti)
  • Improve viomi.vacuum.v8 (styj02ym) support #1559 (@rytilahti)
  • Clean up raised library exceptions #1558 (@rytilahti)
  • Move test-properties to under devtools command #1505 (@rytilahti)
  • Implement introspectable settings #1500 (@rytilahti)
  • Drop support for python 3.7 #1469 (@rytilahti)

Implemented enhancements:

  • Added support for Xiaomi Tower Fan (dmaker.fan.p39) #1877 (@paranerd)
  • Raise InvalidTokenException on invalid token #1874 (@rytilahti)
  • Added support for Xiaomi Smart Space Heater 1S (zhimi.heater.mc2a) #1868 (@paranerd)
  • Add specification for yeelink.light.lamp2 #1859 (@izacus)
  • Add support for dmaker.fan.p45 #1853 (@saxel)
  • Improve Yeelight by using common facilities #1846 (@rytilahti)
  • Mark xiaomi.repeater.v3 as supported for wifirepeater #1812 (@kebianizao)
  • Set zhimi.fan.za4 countdown timer to minutes #1787 (@alex3305)
  • Add repeat param to Roborock segment clean #1771 (@MrBartusek)
  • Add standard identifiers for fans #1741 (@rytilahti)
  • Add standard identifiers for lights #1739 (@rytilahti)
  • Make optional deps really optional #1738 (@rytilahti)
  • Add roborock mop washing actions #1730 (@starkillerOG)
  • Use standard identifiers for roborock #1729 (@starkillerOG)
  • Allow defining id for descriptor decorators #1724 (@rytilahti)
  • Use normalized property names for genericmiotstatus #1723 (@rytilahti)
  • Require name for status embedding #1712 (@rytilahti)
  • Add parent reference to embedded containers #1711 (@rytilahti)
  • add specs for yeelink.light.colorb #1709 (@Mostalk)
  • Cache descriptors on first access #1701 (@starkillerOG)
  • Improve cloud interface and cli #1699 (@rytilahti)
  • Improve roborock update handling #1685 (@rytilahti)
  • Use descriptors for default status command cli output #1684 (@rytilahti)
  • Fix access to embedded status containers #1682 (@rytilahti)
  • Prettier settings and status for genericmiot #1664 (@rytilahti)
  • Implement input parameters for actions #1663 (@rytilahti)
  • Handle non-readable miot properties #1662 (@rytilahti)
  • Add firmware_features command to roborock #1661 (@rytilahti)
  • Improve info output (command to use, miot support) #1660 (@rytilahti)
  • Add supports_miot to device class #1659 (@rytilahti)
  • Add more status codes for dreamevacuum #1650 (@zoic21)
  • roborock: Fix waterflow setting for Q7 Max+ #1646 (@nijel)
  • Add support for pet waterer mmgg.pet_waterer.wi11 #1630 (@Alex-ala)
  • Add mop dryer add-on of the S7 MaxV Ultra station #1621 (@jpbede)
  • Add Roborock S7 MaxV Ultra station sensors #1608 (@jpbede)
  • Expose dnd status, add actions for viomivacuum #1603 (@rytilahti)
  • Add range_attribute parameter to NumberSettingDescriptor #1602 (@rytilahti)
  • Off fan speed for Roborock S7 #1601 (@rogelio-o)
  • Add multi map handling to roborock #1596 (@starkillerOG)
  • Implement introspectable actions #1588 (@starkillerOG)
  • Implement choices_attribute for setting decorator #1587 (@starkillerOG)
  • Add additional sensors and settings to Roborock vacuums #1585 (@starkillerOG)
  • Add generic miot support #1581 (@rytilahti)
  • Add interface to obtain miot schemas #1578 (@rytilahti)
  • Add models to parse miotspec files to miio module #1577 (@rytilahti)
  • Use rich for logging and cli print outs #1568 (@rytilahti)
  • Improve serverprotocol error handling #1564 (@rytilahti)
  • Add VacuumDeviceStatus and VacuumState #1560 (@rytilahti)
  • Add descriptors for yeelight #1557 (@rytilahti)
  • Implement device factory #1556 (@rytilahti)
  • Add miot simulator #1539 (@rytilahti)
  • Allow custom methods for miio simulator #1538 (@rytilahti)
  • Add descriptors for zhimi.fan.{v2,v3,sa1,za1,za3,za4} #1533 (@rytilahti)
  • Add basic miIO simulator #1532 (@rytilahti)
  • Make pushserver more generic #1531 (@rytilahti)
  • Implement embedding DeviceStatus containers #1526 (@rytilahti)
  • Use asyncio facilities for push server where possible #1521 (@starkillerOG)
  • Make unit optional for @setting, fix type hint for choices #1519 (@Kirmas)
  • Add yeelink.light.mono6 specs for yeelight #1509 (@tomechio)
  • Expose sensors, switches, and settings for zhimi.airhumidifier #1508 (@Kirmas)
  • Add parse-pcap command to devtools #1506 (@rytilahti)
  • Add sensor decorators for roborock vacuums #1498 (@rytilahti)
  • Implement introspectable switches #1494 (@rytilahti)
  • Implement introspectable sensors #1488 (@rytilahti)
  • Add smb share feature for Chuangmi Camera #1482 (@0x5e)

Fixed bugs:

  • Fix genericmiot status to query all readable properties #1898 (@rytilahti)
  • Make Device.sensors() only return read-only descriptors #1871 (@rytilahti)
  • Use call_action_from_mapping for existing miot integrations #1855 (@rytilahti)
  • add json decode quirk for xiaomi e10 #1837 (@kolos)
  • Don't log error message when decoding valid discovery packets #1832 (@gunjambi)
  • dreamevacuum: don't crash on missing property values #1831 (@rytilahti)
  • genericmiot: skip properties with invalid values #1830 (@rytilahti)
  • Fix invalid cache handling for miotcloud schema fetch #1819 (@rytilahti)
  • Make sure cache directory exists for miotcloud #1798 (@rytilahti)
  • Fix hardcoded lumi.gateway module path #1794 (@rytilahti)
  • Fix broken miio-simulator start-up #1792 (@rytilahti)
  • roborock: guard current_map_id access #1760 (@rytilahti)
  • Fix wrong check in genericmiot for writable properties #1758 (@rytilahti)
  • Remove unsupported settings first after initialization is done #1736 (@rytilahti)
  • Allow gatt-access for miotproperties #1722 (@rytilahti)
  • Add tests to genericmiot's get_descriptor #1716 (@rytilahti)
  • Catch UnsupportedFeatureException on unsupported settings #1703 (@starkillerOG)
  • Do not crash on extranous urn components #1693 (@rytilahti)
  • Fix read-only check for miotsimulator #1690 (@rytilahti)
  • Fix broken logging when miotcloud reports multiple available versions #1686 (@rytilahti)
  • viomivacuum: Fix incorrect attribute accesses on status output #1677 (@rytilahti)
  • Fix incorrect super().__getattr__() use on devicestatus #1676 (@rytilahti)
  • Pass package_name to click.version_option() #1675 (@rytilahti)
  • Fix json output handling for genericmiot #1674 (@rytilahti)
  • Fix logging undecodable responses #1626 (@rytilahti)
  • Use piid-siid instead of did for mapping genericmiot responses #1620 (@rytilahti)
  • Ensure that cache directory exists #1613 (@rytilahti)
  • Fix inconsistent constructor signatures for device classes #1606 (@rytilahti)
  • Use __qualname__ to make ids unique for settings and sensors #1589 (@starkillerOG)
  • Fix yeelight status for white-only bulbs #1562 (@rytilahti)
  • Prefer newest, released release for miottemplate #1540 (@rytilahti)
  • Use typing.List for devtools/pcapparser #1530 (@rytilahti)
  • Skip write-only properties for miot status requests #1525 (@rytilahti)
  • Fix roborock timers' next_schedule on repeated requests #1520 (@phil9909)
  • Fix support for airqualitymonitor running firmware v4+ #1510 (@WeslyG)
  • Mark zhimi.airp.mb3a as supported for airpurifier_miot #1507 (@rytilahti)
  • Suppress deprecated accesses to properties for devicestatus repr #1487 (@rytilahti)
  • Fix favorite level for zhimi.airp.rmb1 #1486 (@alexdrl)
  • Fix mDNS name for chuangmi.camera.038a2 #1480 (@0x5e)
  • Add missing functools.wraps() for @command decorated methods #1478 (@rytilahti)
  • fix bright level in set_led_brightness for miot purifiers #1477 (@borky)
  • Fix chuangmi_ir supported models for h102a03 #1475 (@rytilahti)

New devices:

  • Added support for dreame d10 plus #1827 (@TxMat)
  • Support for Xiaomi Baseboard Heater 1S (leshow.heater.bs1s) #1656 (@sayzard)
  • Add support for zhimi.airp.mb5a #1527 (@rytilahti)
  • Add support for dreame.vacuum.p2029 #1522 (@escoand)
  • Add support for dreame trouver finder vacuum #1514 (@Massl123)
  • Add support Mi Robot Vacuum-Mop 2 Pro (ijai.vacuum.v3) #1497 (@k402xxxcenxxx)
  • Add yeelink.light.strip6 support #1484 (@st7105)
  • Add support for the Xiaomi/Viomi Dishwasher (viomi.dishwasher.m02) #877 (@TheDJVG)

Documentation updates:

  • Improve docs on token acquisition and cleanup legacy methods #1757 (@rytilahti)
  • Simplify install from git instructions #1737 (@rytilahti)
  • Miscellaneous janitor work #1691 (@rytilahti)
  • Update and restructure the readme #1689 (@rytilahti)
  • Use python3 for update firmware docs #1666 (@martin-kokos)
  • Add miot-simulator docs #1561 (@rytilahti)
  • Enable fail-on-error for doc builds #1473 (@rytilahti)
  • Build readthedocs on python3.9 #1472 (@rytilahti)
  • Document traffic capture and analysis #1471 (@rytilahti)

Merged pull requests:

  • Mark Q Revo as supporting auto-empty #1900 (@SLaks)
  • Update pre-commit hooks & dependencies #1899 (@rytilahti)
  • Add Roborock S8 Pro Ultra #1891 (@spangenberg)
  • Move mocked device and status into conftest #1873 (@rytilahti)
  • Update gitignore #1872 (@rytilahti)
  • Rename properties to descriptors for devicestatus #1870 (@rytilahti)
  • Use trusted publisher setup for CI #1852 (@rytilahti)
  • Add python 3.12 to CI #1851 (@rytilahti)
  • Suppress 'found an unsupported model' warning #1850 (@rytilahti)
  • Update dependencies and pre-commit hooks #1848 (@rytilahti)
  • Use __cli_output__ for info() #1847 (@rytilahti)
  • Mark roborock q revo (roborock.vacuum.a75) as supported #1841 (@rytilahti)
  • Fix doc build for sphinx v7 #1817 (@rytilahti)
  • Support pydantic v2 using v1 shims #1816 (@rytilahti)
  • Add deprecation warnings for main module imports #1813 (@rytilahti)
  • Replace datetime.utcnow + datetime.utcfromtimestamp #1809 (@cdce8p)
  • Mark xiaomi.wifispeaker.l05g as supported for ChuangmiIr #1804 (@danielszilagyi)
  • Expose DeviceInfoUnavailableException #1799 (@rytilahti)
  • Fix flake8 SIM910 errors and add pin pydantic==^1 #1793 (@rytilahti)
  • Implement __cli_output__ for descriptors #1762 (@rytilahti)
  • Pull 'unit' up to the descriptor base class #1761 (@rytilahti)
  • Update dependencies and pre-commit hooks #1755 (@rytilahti)
  • Minor pretty-printing changes #1754 (@rytilahti)
  • Generalize settings and sensors into properties #1753 (@rytilahti)
  • Add deerma.humidifier.jsq2w to jsqs integration #1748 (@mislavbasic)
  • Remove fan_common module #1744 (@rytilahti)
  • Minor viomi cleanups #1742 (@rytilahti)
  • Add enum for standardized vacuum identifier names #1732 (@rytilahti)
  • Add missing command for feature request template #1731 (@rytilahti)
  • add specs for yeelink.light.colora #1727 (@Mostalk)
  • Split genericmiot into parts #1725 (@rytilahti)
  • Mark Roborock Q7+ (a40) as supported for roborock #1704 (@andyloree)
  • Remove hardcoded model information from mdns discovery #1695 (@rytilahti)
  • Set version to 0.6.0.dev #1688 (@rytilahti)
  • Remove LICENSE.md #1687 (@rytilahti)
  • Move creation of miot descriptors to miot model #1672 (@rytilahti)
  • Fix flake8 issues (B028) #1671 (@rytilahti)
  • Make simulators return localhost address for info query #1657 (@rytilahti)
  • Fix GitHub issue template #1648 (@nijel)
  • Enable auto-empty settings for roborock Q7 Max+ #1645 (@nijel)
  • Bump codecov-action to @v3 #1643 (@rytilahti)
  • Update pre-commit hooks #1642 (@rytilahti)
  • Bump dependencies in poetry.lock #1641 (@rytilahti)
  • Mark dreame.vacuum.r2228o (L10S ULTRA) as supported #1634 (@zoic21)
  • Bump github action versions #1615 (@rytilahti)
  • Use micloud for miotspec cloud connectivity #1610 (@rytilahti)
  • Mark "chuangmi.camera.021a04" as supported #1599 (@st7105)
  • Update pre-commit url for flake8 #1598 (@rytilahti)
  • Use type instead of string for SensorDescriptor type #1597 (@rytilahti)
  • Mark philips.light.cbulb as supported #1593 (@rytilahti)
  • Raise exception on not-implemented @setting(setter) #1591 (@starkillerOG)
  • default unit to None in sensor decorator #1590 (@starkillerOG)
  • Mark more roborock devices as supported #1582 (@rytilahti)
  • Less verbose reprs for descriptors #1579 (@rytilahti)
  • Initialize descriptor extras using factory #1575 (@rytilahti)
  • Fix setting enum values, report on invalids in miotsimulator #1574 (@rytilahti)
  • Use __ as delimiter for embedded statuses #1573 (@rytilahti)
  • Rename ButtonDescriptor to ActionDescriptor #1567 (@rytilahti)
  • Remove SwitchDescriptor in favor of BooleanSettingDescriptor #1566 (@rytilahti)
  • Manually pass the codecov token in CI #1565 (@rytilahti)
  • Fix CI by defining attrs constraint properly #1534 (@rytilahti)
  • fix some typos #1529 (@phil9909)
  • Allow defining callable setters for switches and settings #1504 (@rytilahti)
  • Use attr.s instead attrs.define for homeassistant support #1503 (@rytilahti)
  • Simplify helper decorators to accept name as non-kwarg #1499 (@rytilahti)
  • Fix supported angles for dmaker.fan.{p15,p18) #1496 (@iMicknl)
  • Mark Xiaomi Chuangmi Camera (chuangmi.camera.ipc013) as supported #1479 (@0x5e)

0.5.12 (2022-07-18)

Release highlights:

  • Thanks to @starkillerOG, this library now supports event handling using miio.PushServer, making it possible to support instantenous event-based callbacks on supported devices. This works by leveraging the scene functionality for subscribing to events, and is at the moment only known to be supported by gateway devices. See the documentation for details: https://python-miio.readthedocs.io/en/latest/push_server.html

  • Optional support for obtaining tokens from the cloud (using micloud library by @Squachen), making onboarding new devices out-of-the-box simpler than ever. You can access this feature using miiocli cloud command, or through miio.CloudInterface API.

  • And of course support for new devices, various enhancements to existing ones as well as bug fixes

Thanks to all 20 individual contributors for this release, see the full changelog below for details!

Full Changelog

Breaking changes:

  • Require click8+ (API incompatibility on result_callback) #1378 (@Sir-Photch)
  • Move yeelight to integrations.light package #1367 (@rytilahti)
  • Move humidifier implementations to miio.integrations.humidifier package #1365 (@rytilahti)
  • Move airpurifier impls to miio.integrations.airpurifier package #1364 (@rytilahti)

Implemented enhancements:

  • Implement fetching device tokens from the cloud #1460 (@rytilahti)
  • Implement push notifications for gateway #1459 (@starkillerOG)
  • Add soundpack install support for vacuum/dreame #1457 (@GH0st3rs)
  • Improve gateway get_devices_from_dict #1456 (@starkillerOG)
  • Improved fanspeed mapping for Roborock S7 MaxV #1454 (@arthur-morgan-1)
  • Add push server implementation to enable event handling #1446 (@starkillerOG)
  • Add yeelink.light.color7 for yeelight #1426 (@rytilahti)
  • vacuum/roborock: Allow custom timer ids #1423 (@rytilahti)
  • Add fan speed presets to VacuumInterface #1405 (@2pirko)
  • Add device_id property to Device class #1384 (@starkillerOG)
  • Add common interface for vacuums #1368 (@2pirko)
  • roborock: auto empty dustbin support #1188 (@craigcabrey)

Fixed bugs:

  • Consolidate supported models for class and instance properties #1462 (@rytilahti)
  • fix lumi.plug.mmeu01 ZNCZ04LM #1449 (@starkillerOG)
  • Add quirk fix for double-oh values #1438 (@rytilahti)
  • Use result_callback (click8+) in roborock integration #1390 (@DoganM95)
  • Retry on error code -9999 #1363 (@rytilahti)
  • Catch exceptions during quirk handling #1360 (@rytilahti)
  • Use devinfo.model for unsupported model warning #1359 (@MPThLee)

New devices:

  • Add support for Xiaomi Smart Standing Fan 2 Pro (dmaker.fan.p33) #1467 (@dainnilsson)
  • add zhimi.airpurifier.amp1 support #1464 (@dsh0416)
  • roborock: Add support for Roborock G10S (roborock.vacuum.a46) #1437 (@rytilahti)
  • Add support for Smartmi Air Purifier (zhimi.airpurifier.za1) #1417 (@julian-klode)
  • Add zhimi.airp.rmb1 support #1402 (@jedziemyjedziemy)
  • Add zhimi.airp.vb4 support (air purifier 4 pro) #1399 (@rperrell)
  • Add support for dreame.vacuum.p2150o #1382 (@icepie)
  • Add support for Air Purifier 4 (zhimi.airp.mb5) #1357 (@MPThLee)
  • Support for Xiaomi Vaccum Mop 2 Ultra and Pro+ (dreame) #1356 (@2pirko)

Documentation updates:

  • Various documentation cleanups #1466 (@rytilahti)
  • Remove docs for now-removed mi{ceil,plug,eyecare} cli tools #1465 (@rytilahti)
  • Fix outdated vacuum mentions in README #1442 (@rytilahti)
  • Update troubleshooting to note discovery issues with roborock.vacuum.a27 #1414 (@golddragon007)
  • Add cloud extractor for token extraction to documentation #1383 (@NiRi0004)

Merged pull requests:

  • Mark zhimi.airp.mb3a as supported #1468 (@rytilahti)
  • Disable 3.11-dev builds on mac and windows #1461 (@rytilahti)
  • Fix doc8 regression #1458 (@rytilahti)
  • Disable fail-fast on CI tests #1450 (@rytilahti)
  • Mark roborock q5 (roborock.vacuum.a34) as supported #1448 (@rytilahti)
  • zhimi_miot: Rename fan_speed to speed #1439 (@syssi)
  • Add viomi.vacuum.v13 for viomivacuum #1432 (@rytilahti)
  • Add python 3.11-dev to CI #1427 (@rytilahti)
  • Add codeql checks #1403 (@rytilahti)
  • Update pre-commit hooks to fix black in CI #1380 (@rytilahti)
  • Mark chuangmi.camera.038a2 as supported #1371 (@rockyzhang)
  • Mark roborock.vacuum.c1 as supported #1370 (@rytilahti)
  • Use integration type specific imports #1366 (@rytilahti)
  • Mark dmaker.fan.p{15,18} as supported #1362 (@rytilahti)
  • Mark philips.light.sread2 as supported for philips_eyecare #1355 (@rytilahti)
  • Use _mappings for all miot integrations #1349 (@rytilahti)

0.5.11 (2022-03-07)

This release fixes zhimi.fan.za5 support and makes all integrations introspectable for their supported models. For developers, there is now a network trace parser (in devtools/parse_pcap.py) that prints the decrypted the traffic for given tokens.

The following previously deprecated classes in favor of model-based discovery, if you were using these classes directly you need to adjust your code:

  • AirFreshVA4 - use AirFresh
  • AirHumidifierCA1, AirHumidifierCB1, AirHumidifierCB2 - use AirHumidifier
  • AirDogX5, AirDogX7SM - use AirDogX3
  • AirPurifierMB4 - use AirPurifierMiot
  • Plug, PlugV1, PlugV3 - use ChuangmiPlug
  • FanP9, FanP10, FanP11 - use FanMiot
  • DreameVacuumMiot - use DreameVacuum
  • Vacuum - use RoborockVacuum

Full Changelog

Breaking changes:

  • Remove deprecated integration classes #1343 (@rytilahti)

Implemented enhancements:

  • Add PCAP file parser for protocol analysis #1331 (@rytilahti)

Fixed bugs:

  • Fix bug for zhimi.fan.za5 resulting in user ack timeout #1348 (@saxel)

Deprecated:

  • Deprecate wifi_led in favor of led #1342 (@rytilahti)

Merged pull requests:

  • Make sure miotdevice implementations define supported models #1345 (@rytilahti)
  • Add Viomi V2 (viomi.vacuum.v6) as supported #1340 (@rytilahti)
  • Mark Roborock S7 MaxV (roborock.vacuum.a27) as supported #1337 (@rytilahti)
  • Add pyupgrade to CI runs #1329 (@rytilahti)

0.5.10 (2022-02-17)

This release adds support for several new devices (see details below, thanks to @PRO-2684, @peleccom, @ymj0424, and @supar), and contains improvements to Roborock S7, yeelight and gateway integrations (thanks to @starkillerOG, @Kirmas, and @shred86). Thanks also to everyone who has reported their working model information, we can use this information to provide better discovery in the future and this release silences the warning for known working models.

Python 3.6 is no longer supported, and Fan{V2,SA1,ZA1,ZA3,ZA4} utility classes are now removed in favor of using Fan class.

Full Changelog

Breaking changes:

  • Split fan.py to vendor-specific fan integrations #1304 (@rytilahti)
  • Drop python 3.6 support #1263 (@rytilahti)

Implemented enhancements:

  • Improve miotdevice mappings handling #1302 (@rytilahti)
  • airpurifier_miot: force aqi update prior fetching data #1282 (@rytilahti)
  • improve gateway error messages #1261 (@starkillerOG)
  • yeelight: use and expose the color temp range from specs #1247 (@Kirmas)
  • Add Roborock S7 mop scrub intensity #1236 (@shred86)

New devices:

  • Add support for zhimi.heater.za2 #1301 (@PRO-2684)
  • Dreame F9 Vacuum (dreame.vacuum.p2008) support #1290 (@peleccom)
  • Add support for Air Purifier 4 Pro (zhimi.airp.va2) #1287 (@ymj0424)
  • Add support for deerma.humidifier.jsq{s,5} #1193 (@supar)

Merged pull requests:

  • Add roborock.vacuum.a23 to supported models #1314 (@rytilahti)
  • Move philips light implementations to integrations/light/philips #1306 (@rytilahti)
  • Move leshow fan implementation to integrations/fan/leshow/ #1305 (@rytilahti)
  • Split fan_miot.py to vendor-specific fan integrations #1303 (@rytilahti)
  • Add chuangmi.remote.v2 to chuangmiir #1299 (@rytilahti)
  • Perform pypi release on github release #1298 (@rytilahti)
  • Print debug recv contents prior accessing its contents #1293 (@rytilahti)
  • Add more supported models #1292 (@rytilahti)
  • Add more supported models #1275 (@rytilahti)
  • Update installation instructions to use poetry #1259 (@rytilahti)
  • Add more supported models based on discovery.py's mdns records #1258 (@rytilahti)

0.5.9.2 (2021-12-14)

This release fixes regressions caused by the recent refactoring related to supported models:

  • philips_bulb now defaults to a bulb that has color temperature setting
  • gateway devices do not perform an info query as that is handled by their parent

Also, the list of the supported models was extended thanks to the feedback from the community!

Full Changelog

Implemented enhancements:

  • Add yeelink.bhf_light.v2 and yeelink.light.lamp22 support #1250 (FaintGhost)
  • Skip warning if the unknown model is reported on a base class #1243 (rytilahti)
  • Add emptying bin status for roborock s7+ #1190 (rytilahti)

Fixed bugs:

Merged pull requests:

0.5.9.1 (2021-12-01)

This minor release only adds already known models pre-emptively to the lists of supported models to avoid flooding the issue tracker on reports after the next homeassistant release.

Full Changelog

Merged pull requests:

0.5.9 (2021-11-30)

Besides enhancements and bug fixes, this release includes plenty of janitoral work to enable common base classes in the future.

For library users:

  • Integrations are slowly moving to their own packages and directories, e.g. the vacuum module is now located in miio.integrations.vacuum.roborock.
  • Using Vacuum is now deprecated and will be later used as the common interface class for all vacuum implementations. For roborock vacuums, use RoborockVacuum instead.

Full Changelog

Breaking changes:

  • Move vacuums to self-contained integrations #1165 (rytilahti)
  • Remove unnecessary subclass constructors, deprecate subclasses only setting the model #1146 (rytilahti)
  • Remove deprecated cli tools (plug,miceil,mieye) #1130 (rytilahti)

Implemented enhancements:

Fixed bugs:

Deprecated:

New devices:

  • add support for smart pet water dispenser mmgg.pet_waterer.s1 #1174 (ofen)

Documentation updates:

Merged pull requests:

0.5.8 (2021-09-01)

Full Changelog

Implemented enhancements:

Closed issues:

  • Smart Mi Standing fan 3 (Xiaomi Pedestal Fan 3, zhimi.fan.za5) #788

Merged pull requests:

0.5.7 (2021-08-13)

This release improves several integrations (including yeelight, airpurifier_miot, dreamevacuum, rockrobo) and adds support for Roidmi Eve vacuums, see the full changelog for more details.

Note that this will likely be the last release on the 0.5 series before breaking the API to reorganize the project structure and provide common device type specific interfaces.

Full Changelog

Implemented enhancements:

  • Add setting for carpet avoidance to vacuums #1040
  • Add optional "Length" parameter to chuangmi_ir.py play_raw(). for "chuangmi.remote.v2" to send some command properly #820
  • Add update_service callback for zeroconf listener #1112 (rytilahti)
  • Add rockrobo-vacuum-a10 to mdns discovery list #1110 (rytilahti)
  • Added additional OperatingModes and FaultStatuses for dreamevacuum #1090 (StarterCraft)
  • yeelight: add dump_ble_debug #1053 (rytilahti)
  • Convert codebase to pass mypy checks #1046 (rytilahti)
  • Add optional length parameter to play_* for chuangmi_ir #1043 (Dozku)
  • Add features for newer vacuums (eg Roborock S7) #1039 (fettlaus)

Fixed bugs:

  • air purifier unknown oprating mode #1106
  • Missing Listener method for current zeroconf library #1101
  • DeviceError when trying to turn on my Xiaomi Mi Smart Pedestal Fan #1100
  • Unable to discover vacuum cleaner: Xiaomi Mi Robot Vacuum Mop (aka dreame.vacuum.mc1808) #1086
  • Crashes if no hw_ver present #1084
  • Viomi S9 does not expose hv_wer #1082
  • set_rotate FanP10 sends the wrong command #1076
  • Vacuum 1C STYTJ01ZHM (dreame.vacuum.mc1808) is not update, 0% battery #1069
  • Requirement is pinned for python-miio 0.5.6: defusedxml>=0.6,<0.7 #1062
  • Problem with dmaker.fan.1c #1036
  • Yeelight Smart Dual Control Module (yeelink.switch.sw1) - discovered by HA but can not configure #1033
  • Update-firmware not working for Roborock S5 #1000
  • Roborock S7 #994
  • airpurifier_miot: return OperationMode.Unknown if mode is unknown #1111 (rytilahti)
  • Fix set_rotate for dmaker.fan.p10 (#1076) #1078 (pooyashahidi)

Closed issues:

  • Xiaomi Roborock S6 MaxV #1108
  • dreame.vacuum.mb1808 unsupported #1104
  • The new way to get device token #1088
  • Add Air Conditioning Partner 2 support #1058
  • Please add support for the Mijia 1G Vacuum! #1057
  • ble_dbg_tbl_dump user ack timeout #1051
  • Roborock S7 can't be added to Home Assistant #1041
  • Cannot get status from my zhimi.airpurifier.mb3(Airpurifier 3H) #1037
  • Xiaomi Mi Robot (viomivacuum), command stability #800
  • [meta] list of miot-enabled devices #627

Merged pull requests:

0.5.6 (2021-05-05)

Full Changelog

Implemented enhancements:

  • RFC: Add a script to simplify finding supported properties for miio #919
  • Improve test_properties output #1024 (rytilahti)
  • Relax zeroconf version requirement #1023 (rytilahti)
  • Add test_properties command to device class #1014 (rytilahti)
  • Add discover command to miiocli #1013 (rytilahti)
  • Fix supported oscillation angles of the dmaker.fan.p9 #1011 (syssi)
  • Add additional operation mode of the deerma.humidifier.jsq1 #1010 (syssi)
  • Roborock S7: Parse history details returned as dict #1006 (fettlaus)

Fixed bugs:

  • zeroconf 0.29.0 which is incompatible #1022
  • Remove superfluous decryption failure for handshake responses #1008
  • Skip pausing on Roborock S50 #1005
  • Roborock S7 after Firmware Update 4.1.2-0928 - KeyError #1004
  • No air quality value when aqi is 1 #958
  • Fix exception on devices with removed lan_ctrl #1028 (Kirmas)
  • Fix start bug and improve error handling in walkingpad integration #1017 (dewgenenny)
  • gateway: fix zigbee lights #1016 (starkillerOG)
  • Silence unable to decrypt warning for handshake responses #1015 (rytilahti)
  • Fix set_mode_and_speed mode for airdog airpurifier #993 (alexeypetrenko)

Closed issues:

  • Add Dafang camera (isa.camera.df3) support #996
  • Roborock S7 #989
  • WalkingPad A1 Pro #797

Merged pull requests:

  • Add basic dmaker.fan.1c support #1012 (syssi)
  • Always return aqi value [Revert PR#930] #1007 (bieniu)
  • Added S6 to skip pause on docking #1002 (Sian-Lee-SA)
  • Added number of dust collections to CleaningSummary if available #992 (fettlaus)
  • Reformat history data if returned as a dict/Roborock S7 Support (#989) #990 (fettlaus)
  • Add support for Walkingpad A1 (ksmb.walkingpad.v3) #975 (dewgenenny)

0.5.5.2 (2021-03-24)

This release is mainly to re-add mapping parameter to MiotDevice constructor for backwards-compatibility reasons, but adds also PyYAML dependency and improves MiOT support to allow limiting how many properties to query at once.

Full Changelog

Implemented enhancements:

  • Please add back the mapping parameter to MiotDevice constructor #982

Fixed bugs:

  • Missing dependency: pyyaml #986

Merged pull requests:

0.5.5.1 (2021-03-20)

This release fixes a single regression of non-existing sequence file for those users who never used mirobo/miiocli vacuum previously. Users of the library do not need this upgrade.

Full Changelog

Implemented enhancements:

  • Release new version of the library #969
  • Support for Mi Robot S1 #517

Fixed bugs:

  • Unable to decrypt token for S55 Vacuum #973
  • [BUG] No such file or directory: '/home/username/.cache/python-miio/python-mirobo.seq' when trying to update firmware #972
  • Fix wrong ordering of contextmanagers #976 (rytilahti)

0.5.5 (2021-03-13)

This release adds support for several new devices, and contains improvements and fixes on several existing integrations. Instead of summarizing all changes here, this library seeks to move completely automated changelogs based on the pull request tags to facilitate faster release cycles. Until that happens, the full list of changes is listed below as usual.

Full Changelog

Implemented enhancements:

  • Connecting from external network #931
  • Filter out value 1 from the property AQI #925
  • Any plans on supporting Air Detector Lite PM2.5? #879
  • Get possible device commands/arguments via API #846
  • Add support for xiaomi scishare coffee machine #833
  • Make netifaces optional dependency #970 (rytilahti)
  • Unify subdevice types #947 (starkillerOG)
  • Cleanup: add DeviceStatus to simplify status containers #941 (rytilahti)
  • add method to load subdevices from dict (EU gateway support) #936 (starkillerOG)
  • Refactor & improve support for gateway devices #924 (starkillerOG)
  • Add docformatter to pre-commit hooks #914 (rytilahti)
  • Improve MiotDevice API (get_property_by, set_property_by, call_action, call_action_by) #905 (rytilahti)
  • Stopgap fix for miottemplate #902 (rytilahti)
  • Support resume_or_start for vacuum's segment cleaning #894 (Sian-Lee-SA)
  • Add missing annotations for ViomiVacuum #872 (dominikkarall)
  • Add generic __repr__ for Device class #869 (rytilahti)
  • Set timeout as parameter #866 (titilambert)
  • Improve Viomi support (status reporting, maps) #808 (titilambert)

Fixed bugs:

  • Make netifaces optional dependency #964
  • Some errors in miio/airdehumidifier.py #960
  • Roborock S5 Max not discovered #944
  • Vacuum timezone returns 'int' object is not subscriptable #921
  • discover_devices doesnt work with xiaomi gateway v3 #916
  • Can control but not get info from the vacuum #912
  • airhumidifier_miot.py - mapping attribute error #911
  • Xiaomi Humidifier CA4 fail to read status. (zhimi.humidifier.ca4) #908
  • miottemplate.py print specs.json fails #906
  • Miiocli and Airdog appliance #892
  • ServiceInfo has no attribute 'address' in miio/discovery #891
  • Devtools exception miottemplate.py generate #885
  • Issue with Xiaomi Miio gateway Integrations ZNDMWG03LM #864
  • Xiaomi Mi Robot Vacuum V1 - Fan Speed Issue #860
  • Xiaomi Smartmi Evaporation Air Humidifier 2 (zhimi.humidifier.ca4) #859
  • Report more specific exception when airdehumidifer is off #963 (rytilahti)
  • vacuum: second try to fix the timezone returning an integer #949 (rytilahti)
  • Fix the logic of staring cleaning a room for Viomi #946 (AlexAlexPin)
  • vacuum: skip pausing on s50 and s6 maxv before return home call #933 (rytilahti)
  • Fix airpurifier_airdog x5 and x7sm to derive from the x3 base class #903 (rytilahti)
  • Fix discovery for python-zeroconf 0.28+ #898 (rytilahti)
  • Vacuum: add fan speed preset for gen1 firmwares 3.5.8+ #893 (mat4444)

Closed issues:

  • miiocli command not found #956
  • [Roborock S6 MaxV] Need a delay between pause and charge commands to return to dock #918
  • Support for Xiaomi Air purifier 3C #888
  • zhimi.heater.mc2 not fully supported #880
  • Support for leshow.fan.ss4 (xiaomi Rosou SS4 Ventilator) #806
  • Constant spam of: Unable to discover a device at address [IP] and Got exception while fetching the state: Unable to discover the device [IP] #407
  • Add documentation for miiocli #400

Merged pull requests:

  • Fix another typo in the docs #968 (muellermartin)
  • Fix link to API documentation #967 (muellermartin)
  • Add section for getting tokens from rooted devices #966 (muellermartin)
  • Improve airpurifier doc strings by adding raw responses #961 (arturdobo)
  • Add troubleshooting for Roborock app #954 (lyghtnox)
  • Initial support for Vacuum 1C STYTJ01ZHM (dreame.vacuum.mc1808) #952 (legacycode)
  • Replaced typing by pyyaml #945 (legacycode)
  • janitoring: add bandit to pre-commit checks #940 (rytilahti)
  • vacuum: fallback to UTC when encountering unknown timezone response #932 (rytilahti)
  • [miot air purifier] Return None if aqi is 1 #930 (bieniu)
  • added support for zhimi.humidifier.cb2 #917 (sannoob)
  • Include some more flake8 checks #915 (rytilahti)
  • Improve miottemplate.py print to support python 3.7.3 (Closes: #906) #910 (syssi)
  • Fix __repr__ of AirHumidifierMiotStatus (Closes: #908) #909 (syssi)
  • Add clean mode (new feature) to the zhimi.humidifier.ca4 #907 (syssi)
  • Allow downloading miot spec files by model for miottemplate #904 (rytilahti)
  • Add Qingping Air Monitor Lite support (cgllc.airm.cgdn1) #900 (arturdobo)
  • Add support for Xiaomi Air purifier 3C #899 (arturdobo)
  • Add support for zhimi.heater.mc2 #895 (bafonins)
  • Add support for Yeelight Dual Control Module (yeelink.switch.sw1) #887 (IhorSyerkov)
  • Retry and timeout can be change by setting a class attribute #884 (titilambert)
  • Add support for all Huizuo Lamps (w/ fans, heaters, and scenes) #881 (darckly)
  • Add deerma.humidifier.jsq support #878 (syssi)
  • Export MiotDevice for miio module #876 (syssi)
  • Add missing "info" to device information query #873 (rytilahti)
  • Add Rosou SS4 Ventilator (leshow.fan.ss4) support #871 (syssi)
  • Initial support for HUIZUO PISCES For Bedroom #868 (darckly)
  • Add airdog.airpurifier.{x3,x5,x7sm} support #865 (syssi)
  • Add dmaker.airfresh.a1 support #862 (syssi)
  • Add support for Scishare coffee maker (scishare.coffee.s1102) #858 (rytilahti)

0.5.4 (2020-11-15)

New devices:

  • Xiaomi Smartmi Fresh Air System VA4 (zhimi.airfresh.va4) (@syssi)
  • Xiaomi Mi Smart Pedestal Fan P9, P10, P11 (dmaker.fan.p9, dmaker.fan.p10, dmaker.fan.p11) (@swim2sun)
  • Mijia Intelligent Sterilization Humidifier SCK0A45 (deerma.humidifier.jsq1)
  • Air Conditioner Companion MCN (lumi.acpartner.mcn02) (@EugeneLiu)
  • Xiaomi Water Purifier D1 (yunmi.waterpuri.lx9) and C1 (Triple Setting, yunmi.waterpuri.lx11) (@zhangjingye03)
  • Xiaomi Mi Smart Air Conditioner A (xiaomi.aircondition.mc1, mc2, mc4 and mc5) (@zhangjingye03)
  • Xiaomiyoupin Curtain Controller (Wi-Fi) / Aqara A1 (lumi.curtain.hagl05) (@in7egral)

Improvements:

  • ViomiVacuum: New modes, states and error codes (@fs79)
  • ViomiVacuum: Consumable status added (@titilambert)
  • Gateway: Throws GatewayException in get_illumination (@javicalle)
  • Vacuum: Tangible User Interface (TUI) for the manual mode added (@rnovatorov)
  • Vacuum: Mopping to VacuumingAndMopping renamed (@rytilahti)
  • raw_id moved from Vacuum to the Device base class (@rytilahti)
  • __json__ boilerplate code from all status containers removed (@rytilahti)
  • Pinned versions loosed and cryptography dependency bumped to new major version (@rytilahti)
  • importlib_metadata python_version bounds corrected (@jonringer)
  • CLI: EnumType defaults to incasesensitive now (@rytilahti)
  • Better documentation and presentation of the documentation (@rytilahti)

Fixes:

  • Vacuum: Invalid cron expression fixed (@rytilahti)
  • Vacuum: Invalid cron elements handled gracefully (@rytilahti)
  • Vacuum: WaterFlow as an enum defined (@rytilahti)
  • Yeelight: Check color mode values for emptiness (@rytilahti)
  • Airfresh: Temperature property of the zhimi.airfresh.va2 fixed (@syssi)
  • Airfresh: PTC support of the dmaker.airfresh.t2017 fixed (@syssi)
  • Airfresh: Payload of the boolean setter fixed (@syssi)
  • Fan: Fan speed property of the dmaker.fan.p11 fixed (@iquix)

Full Changelog

Implemented enhancements:

  • Add error codes 2103 & 2105 #789
  • ViomiVacuumState 6 seems to be VaccuumMopping #783
  • Added some parameters: Error code, Viomimode, Viomibintype #799 (fs79)
  • Add mopping state & log a warning when encountering unknown state #784 (rytilahti)

Fixed bugs:

  • Invalid cron expression when using xiaomi_miio integration in Home Assistant #847
  • viomivacuum doesn´t work with -o json_pretty #816
  • yeeligth without color temperature status error #802
  • set_waterflow roborock.vacuum.s5e #786
  • Requirement is pinned for python-miio 0.5.3: zeroconf>=0.25.1,<0.26.0 #780
  • Requirement is pinned for python-miio 0.5.3: pytz>=2019.3,<2020.0 #779
  • miiocli: remove network & AP information from info output #857 (rytilahti)
  • Fix PTC support of the dmaker.airfresh.t2017 #853 (syssi)
  • Vacuum: handle invalid cron elements gracefully #848 (rytilahti)
  • yeelight: Check color mode values for emptiness #829 (rytilahti)
  • Define WaterFlow as an enum #787 (rytilahti)

Closed issues:

  • Notify access support for MIoT Device #843
  • Xiaomi WiFi Power Plug(Bluetooth Gateway)(chuangmi.plug.hmi208) #840
  • Mi Air Purifier 3H - unable to connect #836
  • update-firmware on Xiaomi Mi Robot Vacuum V1 fails #818
  • Freash air system calibration of CO2 sensor command #814
  • Unable to discover the device (zhimi.airpurifier.ma4) #798
  • Mi Air Purifier 3H Timed out #796
  • Xiaomi Smartmi Fresh Air System XFXTDFR02ZM. upgrade version of XFXT01ZM with heater. #791
  • mi smart sensor gateway - check status #762
  • Installation problem 64bit #727
  • support dmaker.fan.p9 and dmaker.fan.p10 #721
  • Add support for lumi.acpartner.mcn02 please? #637

Merged pull requests:

0.5.3 (2020-07-27)

New devices:

  • Xiaomi Mi Air Humidifier CA4 (zhimi.humidifier.ca4) (@Toxblh)

Improvements:

  • S5 vacuum: adjustable water volume for mopping
  • Gateway: improved light controls (@starkillerOG)
  • Chuangmi Camera: improved home monitoring support (@impankratov)

Fixes:

  • Xioawa E25: do not crash when trying to access timers
  • Vacuum: allow resuming after error in zoned cleanup (@r4nd0mbr1ck)

Full Changelog

Implemented enhancements:

Fixed bugs:

  • AqaraSmartBulbE27 support added in #729 is not work #771
  • Broken timezone call (dictionary instead of string) breaks HASS integration #759

Closed issues:

  • Roborock S5 Max, Failure to connect in Homeassistant. #758
  • Unable to decrypt, returning raw bytes: b'' - while mirobo discovery #752
  • Error with Windows x64 python #733
  • Xiaomi Vacuum - resume clean-up after pause #471

Merged pull requests:

0.5.2.1 (2020-07-03)

A quick minor fix for vacuum gen1 fan speed detection.

Full Changelog

Merged pull requests:

  • vacuum: Catch DeviceInfoUnavailableException for model detection #748 (rytilahti)

0.5.2 (2020-07-03)

This release brings several improvements to the gateway support, thanks to @starkillerOG as well as some minor improvements and fixes to some other parts.

Improvements:

  • gateway: plug controls, support for aqara wall outlet and aqara smart bulbs, ability to enable telnet access & general improvements
  • viomi: ability to change the mopping pattern
  • fan: ability to disable delayed turn off

Fixes:

  • airpurifier_miot: Incorrect get_properties usage

Full Changelog

Fixed bugs:

  • Air priefier H3 doasn't work in 0.5.1 #730

Closed issues:

  • Viomi V8: AttributeError: 'NoneType' object has no attribute 'header' #746
  • viomi: add command for changing the mopping mode #725
  • fan za3, got token, but does not work #720
  • Capitalisation of Air Purifier modes #715
  • STYJ02YM Unable to decrypt error #701

Merged pull requests:

0.5.1 (2020-06-04)

The most noteworthy change in this release is the work undertaken by @starkillerOG to improve the support for Xiaomi gateway devices. See the PR description for more details at #700 .

For downstream developers, this release adds two new exceptions to allow better control in situations where the response payloads from the device are something unexpected. This is useful for gracefully fallbacks when automatic device type discovery fails.

P.S. There is now a matrix room (https://matrix.to/#/#python-miio-chat:matrix.org) so feel free to hop in for any reason.

This release adds support for the following new devices:

  • chuangmi.plug.hmi208
  • Gateway subdevices: Aqara Wireless Relay 2ch (@bskaplou), AqaraSwitch{One,Two}Channels (@starkillerOG)

Fixes & Enhancements:

  • The initial UDP handshake is sent now several times to accommodate spotty networks
  • chuangmi.camera.ipc019: camera rotation & alarm activation
  • Vacuum: added next_schedule property for timers, water tank status, is_on state for segment cleaning mode
  • chuangmi.plug.v3: works now with updated firmware version
  • Viomi vacuum: various minor fixes

API changes:

  • Device.send() accepts extra_parameters to allow passing values to the main payload body. This is useful at least for gateway devices.

  • Two new exceptions to give more control to downstream developers:

    • PayloadDecodeException (when the payload is unparseable)
    • DeviceInfoUnavailableException (when device.info() fails)
  • Dependency management is now done using poetry & pyproject.toml

Full Changelog

Implemented enhancements:

  • How to enhance the Xiaomi camera(chuangmi.camera.ipc019) function #655
  • miio local api soon deprecated? / add support for miot api #543

Fixed bugs:

  • STYJ02YM - AttributeError: 'ViomiVacuumStatus' object has no attribute 'mop_type' #704
  • 0.5.0 / 0.5.0.1 breaks viomivacuum status #694
  • Error controlling gateway #673

Closed issues:

  • xiaomi fan 1x encountered 'user ack timeout' #714
  • New device it's possible ? Ikea tradfri GU10 #707
  • not supported chuangmi.plug.hmi208 #691
  • is\_on not correct #687
  • Enhancement request: get snapshot / recording from chuangmi camera #682
  • Add support to Xiaomi Mi Home 360 1080p MJSXJ05CM #671
  • Xiaomi Mi Air Purifier 3H (zhimi-airpurifier-mb3) #670
  • Can't connect to vacuum anymore #667
  • error timeout - adding supported to viomi-vacuum-v8_miio 309248236 #666
  • python-miio v0.5.0 incomplete utils.py #659
  • REQ: vacuum - restore map function ? #646
  • Unsupported device found - chuangmi.plug.hmi208 #616
  • Viomi V2 discoverable, not responding #597

Merged pull requests:

  • Add next_schedule to vacuum timers #712 (MarBra)
  • gateway: add support for AqaraSwitchOneChannel and AqaraSwitchTwoChannels #708 (starkillerOG)
  • Viomi: Expose mop_type, fix error string handling and fix water_grade #705 (rytilahti)
  • restructure and improve gateway subdevices #700 (starkillerOG)
  • Added support of Aqara Wireless Relay 2ch (LLKZMK11LM) #696 (bskaplou)
  • Viomi: Use bin_type instead of box_type for cli tool #695 (rytilahti)
  • Add support for chuangmi.plug.hmi208 #693 (rytilahti)
  • vacuum: is_on should be true for segment cleaning #688 (rytilahti)
  • send multiple handshake requests #686 (rytilahti)
  • Add PayloadDecodeException and DeviceInfoUnavailableException #685 (rytilahti)
  • update readme (matrix room, usage instructions) #684 (rytilahti)
  • Fix Gateway constructor to follow baseclass' parameters #677 (rytilahti)
  • Update vacuum doc to actual lib output #676 (ckesc)
  • Xiaomi vacuum. Add property for water box (water tank) attach status #675 (ckesc)
  • Convert to use pyproject.toml and poetry, extend tests to more platforms #674 (rytilahti)
  • add viomi.vacuum.v8 to discovery #668 (rytilahti)
  • chuangmi.plug.v3: Fixed power state status for updated firmware #665 (ad)
  • Xiaomi camera (chuangmi.camera.ipc019): Add orientation controls and alarm #663 (rytilahti)
  • Add Device.get_properties(), cleanup devices using get_prop #657 (rytilahti)
  • Add extra_parameters to send() #653 (rytilahti)

Due to a mistake during the release process, some changes were completely left out from the release. This release simply bases itself on the current master to fix that.

Full Changelog

Closed issues:

  • Xiaomi Mijia Smart Sterilization Humidifier (SCK0A45) error - DEBUG:miio.protocol:Unable to decrypt, returning raw bytes: b'' #649

Merged pull requests:

  • Prepare for 0.5.0 #658 (rytilahti)
  • Add miottemplate tool to simplify adding support for new miot devices #656 (rytilahti)
  • Add Xiaomi Zero Fog Humidifier (shuii.humidifier.jsq001) support (#642) #654 (iromeo)
  • Gateway get_device_prop_exp command #652 (fsalomon)
  • Add fan_speed_presets() for querying available fan speeds #643 (rytilahti)
  • Initial support for xiaomi gateway devices #470 (rytilahti)

Xiaomi is slowly moving to use new protocol dubbed MiOT on the newer devices. To celebrate the integration of initial support for this protocol, it is time to jump from 0.4 to 0.5 series! Shout-out to @rezmus for the insightful notes, links, clarifications on #543 to help to understand how the protocol works!

Special thanks go to both @petrkotek (for initial support) and @foxel (for polishing it for this release) for making this possible. The ground work they did will make adding support for other new miot devices possible.

For those who are interested in adding support to new MiOT devices can check out devtools directory in the git repository, which now hosts a tool to simplify the process. As always, contributions are welcome!

This release adds support for the following new devices:

  • Air purifier 3/3H support (zhimi.airpurifier.mb3, zhimi.airpurifier.ma4)
  • Xiaomi Gateway devices (lumi.gateway.v3, basic support)
  • SmartMi Zhimi Heaters (zhimi.heater.za2)
  • Xiaomi Zero Fog Humidifier (shuii.humidifier.jsq001)

Fixes & Enhancements:

  • Vacuum objects can now be queried for supported fanspeeds
  • Several improvements to Viomi vacuums
  • Roborock S6: recovery map controls
  • And some other fixes, see the full changelog!

Full Changelog

Closed issues:

  • viomi.vacuum.v7 and zhimi.airpurifier.mb3 support homeassistain yet? #645
  • subcon should be a Construct field #641
  • Roborock S6 - only reachable from different subnet #640
  • Python 3.7 error #639
  • Posibillity for local push instead of poll? #638
  • Xiaomi STYJ02YM discovered but not responding #628
  • miplug module is not working from python scrips #621
  • Unsupported device found: zhimi.humidifier.v1 #620
  • Support for Smartmi Radiant Heater Smart Version (zhimi.heater.za2) #615
  • Support for Xiaomi Qingping Bluetooth Alarm Clock? #614
  • How to connect a device to WIFI without MiHome app | Can I connect a device to WIFI using Raspberry Pi? #help wanted #Support #609
  • Additional commands for vacuum #607
  • "cgllc.airmonitor.b1" No response from the device #603
  • Xiao AI Smart Alarm Clock Time #600
  • Support new device (yeelink.light.lamp4) #598
  • Errors not shown for S6 #595
  • Fully charged state not shown #594
  • Support for Roborock S6/T6 #593
  • Pi3 b python error #588
  • Support for Xiaomi Air Purifier 3 (zhimi.airpurifier.ma4) #577
  • Updater: Uses wrong local IP address for HTTP server #571
  • How to deal with getDeviceWifi().subscribe #528
  • Move Roborock when in error #524
  • Roborock v2 zoned_clean() doesn't work #490
  • [ADD] Xiaomi Mijia Caméra IP WiFi 1080P Panoramique #484
  • Add unit tests #88
  • Get the map from Mi Vacuum V1? #356

Merged pull requests:

  • Add miottemplate tool to simplify adding support for new miot devices #656 (rytilahti)
  • Add Xiaomi Zero Fog Humidifier (shuii.humidifier.jsq001) support (#642) #654 (iromeo)
  • Gateway get_device_prop_exp command #652 (fsalomon)
  • Add fan_speed_presets() for querying available fan speeds #643 (rytilahti)
  • Air purifier 3/3H support (remastered) #634 (foxel)
  • Add eyecare on/off to philips_eyecare_cli #631 (hhrsscc)
  • Extend viomi vacuum support #626 (rytilahti)
  • Add support for SmartMi Zhimi Heaters #625 (bazuchan)
  • Add error code 24 definition ("No-go zone or invisible wall detected") #623 (insajd)
  • s6: two new commands for map handling #608 (glompfine)
  • Refactoring: Split Device class into Device+Protocol #592 (petrkotek)
  • STYJ02YM: Manual movement and mop mode support #590 (rumpeltux)
  • Initial support for xiaomi gateway devices #470 (rytilahti)

This release adds support for the following new devices:

  • Xiaomi Mijia STYJ02YM vacuum (viomi.vacuum.v7)
  • Xiaomi Mi Smart Humidifier (deerma.humidifier.mjjsq)
  • Xiaomi Mi Fresh Air Ventilator (dmaker.airfresh.t2017)
  • Xiaomi Philips Desk Lamp RW Read (philips.light.rwread)
  • Xiaomi Philips LED Ball Lamp White (philips.light.hbulb)

Fixes & Enhancements:

  • Improve Xiaomi Tinymu Smart Toilet Cover support
  • Remove UTF-8 encoding definition from source files
  • Azure pipeline for tests
  • Pre-commit hook to enforce black, flake8 and isort
  • Pre-commit hook to check-manifest, check for pypi-description, flake8-docstrings

Full Changelog

Implemented enhancements:

  • Support for new vaccum Xiaomi Mijia STYJ02YM #550
  • Support for Mi Smart Humidifier (deerma.humidifier.mjjsq) #533
  • Support for Mi Fresh Air Ventilator dmaker.airfresh.t2017 #502

Closed issues:

  • The voice pack does not change in Xiaomi Vacuum 1S #583
  • Support for chuangmi.plug.hmi206 #574
  • miplug crash in macos catalina 10.15.1 #573
  • Roborock S50 not responding to handshake anymore #572
  • Cannot control my Roborock S50 through my home wifi network #570
  • I can not get load_power with my set is Xiaomi Smart WiFi with two usb (chuangmi.plug.v3) #549

Merged pull requests:

  • Add Xiaomi Mi Fresh Air (dmaker.airfresh.t2017) support #591 (syssi)
  • Add philips.light.rwread support #589 (syssi)
  • Add philips.light.hbulb support #587 (syssi)
  • Add support for deerma.humidifier.mjjsq #586 (syssi)
  • Improve toiletlid various parameters #579 (scp10011)
  • Add support for Xiaomi Mijia STYJ02YM (viomi.vacuum.v7) #576 (rytilahti)
  • Add check-manifest, check for pypi-description, flake8-docstrings #575 (rytilahti)
  • Remove UTF-8 encoding comment #569 (quamilek)
  • Improve the contribution process with better checks and docs #568 (rytilahti)
  • add azure pipeline for tests, and enforce black, flake8 and isort for commits #566 (rytilahti)

This release adds support for the following new devices:

  • Widetech WDH318EFW1 dehumidifier (nwt.derh.wdh318efw1)
  • Xiaomi Xiao AI Smart Alarm Clock (zimi.clock.myk01)
  • Xiaomi Air Quality Monitor 2gen (cgllc.airmonitor.b1)
  • Xiaomi ZNCZ05CM EU Smart Socket (chuangmi.plug.hmi206)

Fixes & Enhancements:

  • Air Humidifier: Parsing of the firmware version improved
  • Add travis build for python 3.7
  • Use black for source code formatting
  • Require python >=3.6

Full Changelog

Implemented enhancements:

  • Add support for WIDETECH WDH318EFW1 dehumidifier (nwt.derh.wdh318efw1) #534
  • Support for Xiaomi Xiao AI Smart Alarm Clock (zimi.clock.myk01) #505
  • Add support for the cgllc.airmonitor.b1 #562 (fwestenberg)

Fixed bugs:

  • Air Humidifier #529

Closed issues:

  • mirobo updater -- No request was made #557
  • What‘s the plan to release 0.4.6? #553
  • does this support aqara water leak sensor? #551
  • Unsupported device chuangmi.plug.hmi206 #545
  • python-miio not compatible with Python <=3.5.1 #494
  • Support for Xiaomi Air Quality Monitor 2gen #419

Merged pull requests:

  • Add travis build for python 3.7 #561 (syssi)
  • bump required python version to 3.6+ #560 (rytilahti)
  • Use black for source code formatting #559 (rytilahti)
  • Add initial support for Xiao AI Smart Alarm Clock (zimi.clock.myk01) #558 (rytilahti)
  • Improve firmware version parser of the Air Humidifier (Closes: #529) #556 (syssi)
  • Bring cgllc.airmonitor.s1 into line #555 (syssi)
  • Add Xiaomi ZNCZ05CM EU Smart Socket (chuangmi.plug.hmi206) support #554 (syssi)

This release adds support for the following new devices:

  • Xiaomi Air Quality Monitor S1 (cgllc.airmonitor.s1)
  • Xiaomi Mi Dehumidifier V1 (nwt.derh.wdh318efw1)
  • Xiaomi Mi Roborock M1S and Mi Robot S1
  • Xiaomi Mijia 360 1080p camera (chuangmi.camera.ipc009)
  • Xiaomi Mi Smart Fan (zhimi.fan.za3, zhimi.fan.za4, dmaker.fan.p5)
  • Xiaomi Smartmi Pure Evaporative Air Humidifier (zhimi.humidifier.cb1)
  • Xiaomi Tinymu Smart Toilet Cover
  • Xiaomi 16 Relays Module

Fixes & Enhancements:

  • Air Conditioning Companion: Add particular swing mode values of a chigo air conditioner
  • Air Humidifier: Handle poweroff exception on set_mode
  • Chuangmi IR controller: Add indicator led support
  • Chuangmi IR controller: Add discovery of the Xiaomi IR remote 2gen (chuangmi.remote.h102a03)
  • Chuangmi Plug: Fix set_wifi_led cli command
  • Vacuum: Add state 18 as "segment cleaning"
  • Device: Add easily accessible properties to DeviceError exception
  • Always import DeviceError exception
  • Require click version >=7
  • Remove pretty_cron and typing dependencies from requirements.txt

Full Changelog

Closed issues:

  • Roborock Vacuum Bin full #546
  • Add support for Xiao AI Smart Alarm Clock #538
  • rockrobo.vacuum.v1 Error: No response from the device #536
  • Assistance #532
  • Unsupported device found - roborock.vacuum.s5 #527
  • Discovery mode to chuangmi_camera. #522
  • 新款小米 1X 电风扇不支持 #520
  • Add swing mode of a Chigo Air Conditioner #518
  • Discover not working with Mi AirHumidifier CA1 #514
  • Question about vacuum errors_codes duration #511
  • Support device model dmaker.fan.p5 #510
  • Roborock S50: ERROR:miio.updater:No request was made.. #508
  • Roborock S50: losing connection with mirobo #507
  • Support for Xiaomi IR Remote (chuangmi.remote.v2) #506
  • Support for Humidifier new model: zhimi.humidifier.cb1 #492
  • impossible to get the last version (0.4.5) or even the 0.4.4 #489
  • Getting the token of Air Purifier Pro v7 #461
  • Moonlight sync with HA #452
  • Replace pretty-cron dependency with cron_descriptor #423

Merged pull requests:

  • remove pretty_cron and typing dependencies from requirements.txt #548 (rytilahti)
  • Add tinymu smart toiletlid #544 (scp10011)
  • Add support for Air Quality Monitor S1 (cgllc.airmonitor.s1) #539 (zhumuht)
  • Add pwzn relay #537 (SchumyHao)
  • add mi dehumidifier v1 (nwt.derh.wdh318efw1) #535 (stkang)
  • add mi robot s1 (m1s) to discovery #531 (rytilahti)
  • Add preliminary Roborock M1S / Mi Robot S1 support #526 (syssi)
  • Add state 18 as "segment cleaning" #525 (syssi)
  • Add particular swing mode values of a chigo air conditioner #519 (syssi)
  • Add chuangmi.camera.ipc009 support #516 (impankratov)
  • Add zhimi.fan.za3 support #515 (syssi)
  • Add dmaker.fan.p5 support #513 (syssi)
  • Add zhimi.fan.za4 support #512 (syssi)
  • Require click version >=7 #503 (fvollmer)
  • Add indicator led support of the chuangmi.remote.h102a03 and chuangmi.remote.v2 #500 (syssi)
  • Chuangmi Plug: Fix set_wifi_led cli command #499 (syssi)
  • Add discovery of the Xiaomi IR remote 2gen (chuangmi.remote.h102a03) #497 (syssi)
  • Air Humidifier: Handle poweroff exception on set_mode #496 (syssi)
  • Add zhimi.humidifier.cb1 support #493 (antylama)
  • Add easily accessible properties to DeviceError exception #488 (syssi)
  • Always import DeviceError exception #487 (syssi)

This release adds support for the following new devices:

  • Xiaomi Chuangmi Plug M3
  • Xiaomi Chuangmi Plug HMI205
  • Xiaomi Air Purifier Pro V7
  • Xiaomi Air Quality Monitor 2gen
  • Xiaomi Aqara Camera

Fixes & Enhancements:

  • Handle "resp invalid json" error
  • Drop pretty_cron dependency
  • Make android_backup an optional dependency
  • Docs: Add troubleshooting guide for cross-subnet communications
  • Docs: Fix link in discovery.rst
  • Docs: Sphinx config fix
  • Docs: Token extraction for Apple users
  • Docs: Add a troubleshooting entry for vacuum timeouts
  • Docs: New method to obtain tokens
  • miio-extract-tokens: Allow extraction from Yeelight app db
  • miio-extract-tokens: Fix for devices without tokens

API changes:

  • Air Conditioning Partner: Add swing mode 7 with unknown meaning
  • Air Conditioning Partner: Extract the return value of the plug_state request properly
  • Air Conditioning Partner: Expose power_socket property
  • Air Conditioning Partner: Fix some conversion issues
  • Air Humidifier: Add set_led method
  • Air Humidifier: Rename speed property to avoid a name clash at HA
  • Air Humidifier CA1: Fix led brightness command
  • Air Purifier: Add favorite level 17
  • Moonlight: Align signature of set_brightness_and_rgb
  • Moonlight: Fix parameters of the set_rgb api call
  • Moonlight: Night mode support and additional scenes
  • Vacuum: Add control for persistent maps, no-go zones and barriers
  • Vacuum: Add resume_zoned_clean() and resume_or_start() helper
  • Vacuum: Additional error descriptions
  • Yeelight Bedside: Fix set_name and set_color_temp

Full Changelog

Fixed bugs:

  • miio-extract-tokens raises a TypeError when running against extracted SQLite database #467
  • Do not crash on last_clean_details when no history available #457
  • install-sound command not working on Xiaowa vacuum (roborock.vacuum.c1 v1.3.0) #418
  • DeviceError code -30001 (Resp Invalid JSON) - Philips Bulb #205

Closed issues:

  • Issues adding roborock s50 vacuum to HA and controlling from mirobo #456
  • Support for chuangmi plug m3 #454
  • Xiaomi Phillips Smart LED Ball Lamp and API token for Home Assistant (yaml) #445
  • xiaomi ir control #444
  • Mirobo does not start on raspberry pi #442
  • Add mi band 3 watch to your library #441
  • Unsupported Device: chuangmi.plug.hmi205 #440
  • Air Purifier zhimi.airpurifier.m1 set_mode isn't working #436
  • Can't make it work in a Domoticz plugin #433
  • chuangmi.plug.hmi205 unsupported device #427
  • Some devices not responding across subnets. #422

Merged pull requests:

  • Add missing error description #483 (oncleben31)
  • Enable the night mode (scene 6) by calling "go_night" #481 (syssi)
  • Philips Moonlight: Support up to 6 fixed scenes #478 (syssi)
  • Remove duplicate paragraph about "Tokens from Mi Home logs" #477 (syssi)
  • Make android_backup an optional dependency #476 (rytilahti)
  • Drop pretty_cron dependency #475 (rytilahti)
  • Vacuum: add resume_zoned_clean() and resume_or_start() helper #473 (rytilahti)
  • Check for empty clean_history instead of crashing on it #472 (rytilahti)
  • Fix miio-extract-tokens for devices without tokens #469 (domibarton)
  • Rename speed property to avoid a name clash at HA #466 (syssi)
  • Corrected link in discovery.rst and Xiaomi Air Purifier Pro fix #465 (swiergot)
  • New method to obtain tokens #464 (swiergot)
  • Add a troubleshooting entry for vacuum timeouts #463 (rytilahti)
  • Extend miio-extract-tokens to allow extraction from yeelight app db #462 (rytilahti)
  • Docs for token extraction for Apple users #460 (domibarton)
  • Add troubleshooting guide for cross-subnet communications #459 (domibarton)
  • Sphinx config fix #458 (domibarton)
  • Add Xiaomi Chuangmi Plug M3 support (Closes: #454) #455 (syssi)
  • Add a "Reviewed by Hound" badge #453 (salbertson)
  • Air Humidifier: Add set_led method #451 (syssi)
  • Air Humidifier CA1: Fix led brightness command #450 (syssi)
  • Handle "resp invalid json" error (Closes: #205) #449 (syssi)
  • Air Conditioning Partner: Extract the return value of the plug_state request properly #448 (syssi)
  • Expose power_socket property at AirConditioningCompanionStatus.__repr__() #447 (syssi)
  • Air Conditioning Companion: Fix some conversion issues #446 (syssi)
  • Add support v7 version for Xiaomi AirPurifier PRO #443 (quamilek)
  • Add control for persistent maps, no-go zones and barriers #438 (rytilahti)
  • Moonlight: Fix parameters of the set_rgb api call #435 (syssi)
  • yeelight bedside: fix set_name and set_color_temp #434 (rytilahti)
  • AC Partner: Add swing mode 7 with unknown meaning #431 (syssi)
  • Philips Moonlight: Align signature of set_brightness_and_rgb #430 (syssi)
  • Add support for next generation of the Xiaomi Mi Smart Plug #428 (syssi)
  • Add Xiaomi Air Quality Monitor 2gen (cgllc.airmonitor.b1) support #420 (syssi)
  • Add initial support for aqara camera (lumi.camera.aq1) #375 (rytilahti)

0.4.4 (2018-12-03)

This release adds support for the following new devices:

  • Air Purifier 2s
  • Vacuums roborock.vacuum.e2 and roborock.vacuum.c1 (limited features, sound packs are known not to be working)

Fixes & Enhancements:

  • AC Partner V3: Add socket support
  • AC Parner & AirHumidifer: improved autodetection
  • Cooker: fixed model confusion
  • Vacuum: add last_clean_details() to directly access the information from latest cleaning
  • Yeelight: RGB support
  • Waterpurifier: improved support

API changes:

  • Vacuum: returning a list for clean_details() is deprecated and to be removed in the future.
  • Philips Moonlight: RGB values are expected and delivered as tuples instead of an integer

Full Changelog

Implemented enhancements:

  • Not working with Rockrobo Xiaowa (roborock.vacuum.e2) #364
  • Support for new vacuum model Xiaowa E20 #348

Fixed bugs:

  • No working with Xiaowa (roborock.vacuum.c1 v1.3.0) #370
  • Send multiple params broken result #73

Closed issues:

  • Add lumi.gateway.aqhm01 as unsuppported gateway #424
  • Unsupported device zhimi.airpurifier.mc1 #403
  • xiaomi repeater v1 #396
  • Control Air Conditioner Companion like Xiaomi Mi Smart WiFi Socket #337

Merged pull requests:

  • Improve discovery a specific device models #421 (syssi)
  • Fix PEP8 lint issue: unexpected spaces around keyword / parameter equals #416 (syssi)
  • AC Partner V3: Add socket support (Closes #337) #415 (syssi)
  • Moonlight: Provide property rgb as tuple #414 (syssi)
  • fix last_clean_details to return the latest, not the oldest #413 (rytilahti)
  • generate docs for more modules #412 (rytilahti)
  • Use pause instead of stop for home command #411 (rytilahti)
  • Add .readthedocs.yml #410 (rytilahti)
  • Fix serial number reporting for some devices, add locale command #409 (rytilahti)
  • Force parameters to be an empty list if none is given #408 (rytilahti)
  • Cooker: Fix mixed model name #406 (syssi)
  • Waterpurifier: Divide properties into multiple requests (Closes: #73) #405 (syssi)
  • Add Xiaomi Air Purifier 2s support #404 (syssi)
  • Fixed typo in log message #402 (microraptor)

This is a bugfix release which provides improved compatibility.

Full Changelog

Closed issues:

  • unsupported device zhimi airmonitor v1 #393
  • Unsupported device found: chuangmi.ir.v2 #392
  • TypeError: not all arguments converted during string formatting #385
  • Status not worked for AirHumidifier CA1 #383
  • Xiaomi Rice Cooker Normal5: get_prop only works if "all" properties are requested #380
  • python-construct-2.9.45 #374

Merged pull requests:

  • Update commands in manual #398 (olskar)
  • Add cli interface for yeelight devices #397 (rytilahti)
  • Add last_clean_details to return information from the last clean #395 (rytilahti)
  • Add discovery of the Xiaomi Air Quality Monitor (PM2.5) (Closes: #393) #394 (syssi)
  • Add miiocli support for the Air Humidifier CA1 #391 (syssi)
  • Add property LED to the Xiaomi Air Fresh #390 (syssi)
  • Fix Cooker Normal5: get_prop only works if "all" properties are requested (Closes: #380) #389 (syssi)
  • Improve the support of the Air Humidifier CA1 (Closes: #383) #388 (syssi)

This release removes the version pinning for "construct" library as its API has been stabilized and we don't want to force our downstreams for our version choices. Another notable change is dropping the "mirobo" package which has been deprecated for a very long time, and everyone using it should have had converted to use "miio" already. Furthermore the client tools work now with click's version 7+.

This release also changes the behavior of vacuum's got_error property to signal properly if an error has occured. The previous behavior was based on checking the state instead of the error number, which changed after an error to 'idle' after a short while.

Full Changelog

Fixed bugs:

  • Zoned cleanup start and stops imediately #355

Closed issues:

  • STATE not supported: Updating, state_code: 14 #381
  • cant get it to work with xiaomi robot vacuum cleaner s50 #378
  • airfresh problem #377
  • get device token is 000000000000000000 #366
  • Rockrobo firmware 3.3.9_003254 #358
  • No response from the device on Xiaomi Roborock v2 #349
  • Information : Xiaomi Aqara Smart Camera Hack #347

Merged pull requests:

This release provides support for some new devices, improved support of existing devices and various fixes.

New devices:

  • Xiaomi Mijia Smartmi Fresh Air System Wall-Mounted (@syssi)
  • Xiaomi Philips Zhirui Bedside Lamp (@syssi)

Improvements:

  • Vacuum: Support of multiple zones for app_zoned_cleaning added (@ciB89)
  • Fan: SA1 and ZA1 support added as well as various fixes and improvements (@syssi)
  • Chuangmi Plug V3: Measurement unit of the power consumption fixed (@syssi)
  • Air Humidifier: Strong mode property added (@syssi)

Full Changelog

Closed issues:

  • Xiaomi Rice Cooker component not working #365
  • vacuum refuses to answer if the access to internet is blocked #353
  • Xiaomi Philips Zhirui Bedside Lamp #351
  • Unable to get Xiaomi miplug working on HA #350
  • Error codes #346
  • miiocli plug does not show the USB power status #344
  • could you pls add support to gateway's functions of security and light? #340
  • miplug discover throws exception #339
  • miioclio: raw_command() got an unexpected keyword argument 'parameters' #335
  • qmi.powerstrip.v1 no longer working on 0.40 #334
  • Starting the vacuum clean up after remote control #235

Merged pull requests:

  • Fan: Fix broken model names #363 (syssi)
  • Xiaomi Mi Smart Pedestal Fan: Add ZA1 (zimi.fan.za1) support #362 (syssi)
  • ignore cli and test files from test coverage to get correct coverage percentage #361 (rytilahti)
  • Add Xiaomi Airfresh VA2 support #360 (syssi)
  • Add basic Philips Moonlight support (Closes: #351) #359 (syssi)
  • Xiaomi Mi Smart Pedestal Fan: Add SA1 (zimi.fan.sa1) support #354 (syssi)
  • Fix "miplug discover" method (Closes: #339) #342 (syssi)
  • Fix ChuangmiPlugStatus repr format #341 (syssi)
  • Chuangmi Plug V3: Fix measurement unit (W) of the power consumption (load_power) #338 (syssi)
  • miiocli: Fix raw_command parameters (Closes: #335) #336 (syssi)
  • Fan: Fix a KeyError if button_pressed isn't available #333 (syssi)
  • Fan: Add test for the natural speed setter #332 (syssi)
  • Fan: Divide the retrieval of properties into multiple requests #331 (syssi)
  • Support of multiple zones for app_zoned_cleaning #311 (ciB89)
  • Air Humidifier: Strong mode property added and docstrings updated #300 (syssi)

The highlight of this release is a crisp, unified and scalable command line interface called miiocli (thanks @yawor). Each supported device of this library is already integrated.

New devices:

  • Xiaomi Mi Smart Electric Rice Cooker (@syssi)

Improvements:

  • Unified and scalable command line interface (@yawor)
  • Air Conditioning Companion: Support for captured infrared commands added (@syssi)
  • Air Conditioning Companion: LED property fixed (@syssi)
  • Air Quality Monitor: Night mode added (@syssi)
  • Chuangi Plug V3 support fixed (@syssi)
  • Pedestal Fan: Improved support of both versions
  • Power Strip: Both versions are fully supported now (@syssi)
  • Vacuum: New commands app_goto_target and app_zoned_clean added (@ciB89)
  • Vacuum: Carpet mode support (@rytilahti)
  • WiFi Repeater: WiFi roaming and signal strange indicator added (@syssi)

Full Changelog

Implemented enhancements:

  • Extend the Air Quality Monitor PM2.5 support #283
  • Support for Xiaomi Mi Smart Electric Rice Cooker #282
  • Improved support of the Xiaomi Smart Fan #244
  • Extended support of the Philips LED Ceiling Lamp #209
  • Add JSON output for easier integration with other tools #98
  • Xiaomi Mi Water Purifier support #71
  • Xiaomi WiFi Speaker support #69
  • Air Quality Monitor: Full support of the night mode #294 (syssi)

Fixed bugs:

  • Unable to extract token from Android backup #138
  • Xiaomi-Philips Eyecare control fail #74
  • Working with water purifier #48

Closed issues:

  • miiocli: Provide an error message for unknown commands #327
  • miplug status crash #326
  • IR remote chuangmiir module #325
  • Qing Mi Smart Power Strip cannot be setup,device id is 04b8824e #318
  • I can not start mirobo #316
  • acpartner-v3 #312
  • Vacuum v1 new firmware #305
  • Xiaomi Power Strip V1 is unable to handle some V2 properties #302
  • TypeError: isinstance() arg 2 must be a type or tuple of types #296
  • Extend the Power Strip support #286
  • when i try to send a command #277
  • Obtain token for given IP address #263
  • Unable to discover the device #259
  • xiaomi vaccum cleaner not responding #92
  • xiaomi vacuum, manual moving mode: duration definition incorrect #62

Merged pull requests:

  • Chuangmi Plug V3: Make a local copy of the available properties #330 (syssi)
  • miiocli: Handle unknown commands (Closes: #327) #329 (syssi)
  • Fix a name clash of click_common and the argument "command" #328 (syssi)
  • Update README #324 (syssi)
  • Migrate miplug cli to the new ChuangmiPlug class (Fixes: #296) #323 (syssi)
  • Link to the Home Assistant custom component "xiaomi_cooker" added #320 (syssi)
  • Improve the Xiaomi Rice Cooker support #319 (syssi)
  • Air Conditioning Companion: Rewrite a captured command before replay #317 (syssi)
  • Air Conditioning Companion: Led property fixed #315 (syssi)
  • mDNS names of the cooker fixed #314 (syssi)
  • mDNS names of the Air Conditioning Companion (AC partner) added #313 (syssi)
  • Added new commands app_goto_target and app_zoned_clean #310 (ciB89)
  • Link to the Home Assistant custom component "xiaomi_raw" added #309 (syssi)
  • Improved support of the Xiaomi Smart Fan #306 (syssi)
  • mDNS discovery: Xiaomi Smart Fans added #304 (syssi)
  • Xiaomi Power Strip V1 is unable to handle some V2 properties #303 (syssi)
  • mDNS discovery: Additional Philips Candle Light added #301 (syssi)
  • Add support for vacuum's carpet mode, which requires a recent firmware version #299 (rytilahti)
  • Air Conditioning Companion: Extended parsing of model and state #297 (syssi)
  • Air Quality Monitor: Type and payload example of the time_state property updated #293 (syssi)
  • WiFi Speaker support improved #291 (syssi)
  • Imports optimized #290 (syssi)
  • Support of the unified command line interface for all devices #289 (syssi)
  • Power Strip support extended by additional attributes #288 (syssi)
  • Basic support for Xiaomi Mi Smart Electric Rice Cooker #287 (syssi)
  • WiFi Repeater: Wifi roaming and signal strange indicator added #285 (syssi)
  • Preparation of release 0.3.9 #281 (syssi)
  • Unified and scalable command line interface #191 (yawor)

This release provides support for some new devices, improved support of existing devices and various fixes.

New devices:

  • Xiaomi Mi WiFi Repeater 2 (@syssi)
  • Xiaomi Philips Zhirui Smart LED Bulb E14 Candle Lamp (@syssi)

Improvements:

  • Repr of the AirPurifierStatus fixed (@sq5gvm)
  • Chuangmi Plug V1, V2, V3 and M1 merged into a common class (@syssi)
  • Water Purifier: Some properties added (@syssi)
  • Air Conditioning Companion: LED status fixed (@syssi)
  • Air Conditioning Companion: Target temperature property renamed (@syssi)
  • Air Conditioning Companion: Swing mode property returns the enum now (@syssi)
  • Move some generic util functions from vacuumcontainers to utils module (@rytilahti)
  • Construct version bumped (@syssi)

Full Changelog

Closed issues:

  • Xiaomi Mi WiFi Amplifier 2 support #275
  • TypeError: not enough arguments for format string in airpurifier.py #264
  • Issue vaccum gen 2 - HA 0.64 -> 0.65 Python 3.6.0 -> 3.7.0 #261
  • Add support for Xiaomi Philips Zhirui Smart LED Bulb E14 Candle Lamp #243
  • Basic support for the Yeelight LED Ceiling Lamp v4 #240
  • from Construct developer, a note #222

Merged pull requests:

  • construct version bumped #280 (syssi)
  • Support for the Xiaomi Mi WiFi Repeater 2 added #278 (syssi)
  • Move some generic util functions from vacuumcontainers to utils module #276 (rytilahti)
  • Air Conditioning Companion: Swing mode property returns the enum now #274 (syssi)
  • Air Conditioning Companion: Target temperature property properly named #273 (syssi)
  • Air Conditioning Companion: LED status fixed #272 (syssi)
  • Water Purifier: Some properties added #271 (syssi)
  • Merge of the Chuangmi Plug V1, V2, V3 and M1 #270 (syssi)
  • Improve test coverage #269 (syssi)
  • Support for Xiaomi Philips Zhirui Smart LED Bulb E14 Candle Lamp #268 (syssi)
  • Air Purifier: Duplicate property removed from __repr__ #267 (syssi)
  • Tests for reprs of the status classes #266 (syssi)
  • Repr of the AirPurifierStatus fixed #265 (sq5gvm)

Goodbye Python 3.4! This release marks end of support for python versions older than 3.5, paving a way for cleaner code and a nicer API for a future asyncio support. Highlights of this release:

  • Support for several new devices, improvements to existing devices and various fixes thanks to @syssi.

  • Firmware updates for vacuums (@rytilahti), the most prominent use case being installing custom firmwares (e.g. for rooting your device). Installing sound packs is also streamlined with a self-hosting server.

  • The protocol quirks handling was extended to handle invalid messages from the cloud (thanks @jschmer), improving interoperability for Dustcloud.

New devices:

  • Chuangmi Plug V3 (@syssi)
  • Xiaomi Air Humidifier CA (@syssi)
  • Xiaomi Air Purifier V3 (@syssi)
  • Xiaomi Philips LED Ceiling Light 620mm (@syssi)

Improvements:

  • Provide the mac address as property of the device info (@syssi)
  • Air Purifier: button_pressed property added (@syssi)
  • Generalize and move configure_wifi to the Device class (@rytilahti)
  • Power Strip: The wifi led and power price can be controlled now (@syssi)
  • Try to fix decrypted payload quirks if it fails to parse as json (@jschmer)
  • Air Conditioning Companion: Turn on/off and LED property added, load power fixed (@syssi)
  • Strict check for version equality of construct (@arekbulski)
  • Firmware update functionality (@rytilahti)

Full Changelog

Closed issues:

  • Can't retrieve token from Android app #246
  • Unsupported device found! chuangmi.ir.v2 #242
  • Improved support of the Air Humidifier #241
  • Add support for the Xiaomi Philips LED Ceiling Light 620mm (philips.light.zyceiling) #234
  • Support Xiaomi Air Purifier v3 #231

Merged pull requests:

  • Add --ip for install_sound, update_firmware & update docs #262 (rytilahti)
  • Provide the mac address as property of the device info #260 (syssi)
  • Tests: Non-essential code removed #258 (syssi)
  • Support of the Chuangmi Plug V3 #257 (syssi)
  • Air Purifier V3: Response example updated #255 (syssi)
  • Support of the Air Purifier V3 added (Closes: #231) #254 (syssi)
  • Air Purifier: Property "button_pressed" added #253 (syssi)
  • Respond with an error after the retry counter is down to zero, log retries into debug logger #252 (rytilahti)
  • Drop python 3.4 support, which paves a way for nicer API for asyncio among other things #251 (rytilahti)
  • Generalize and move configure_wifi to the Device class #250 (rytilahti)
  • Support of the Xiaomi Air Humidifier CA (zhimi.humidifier.ca1) #249 (syssi)
  • Xiaomi AC Companion: LED property added #248 (syssi)
  • Some misleading docstrings updated #245 (syssi)
  • Powerstrip support improved #239 (syssi)
  • Repr of the AirQualityMonitorStatus fixed #238 (syssi)
  • mDNS discovery: Additional philips light added #237 (syssi)
  • Try to fix decrypted payload quirks if it fails to parse as json #236 (jschmer)
  • Device support of the Xiaomi Air Conditioning Companion improved #233 (syssi)
  • Construct related, strict check for version equality #232 (arekbulski)
  • Implement firmware update functionality #153 (rytilahti)

This is a bugfix release which provides improved stability and compatibility.

Full Changelog

Closed issues:

  • construct.core.StreamError: could not write bytes, expected 4, found 8 #227
  • yeelink.light.color1 unsupported #225
  • Cant decode token (invalid start byte) #224
  • from Construct developer, a note #222

Merged pull requests:

  • Proper handling of the device_id representation #228 (syssi)
  • Construct related, support upto 2.9.31 #226 (arekbulski)

This is a bugfix release because of further breaking changes of the underlying library construct.

Improvements:

  • Lazy discovery on demand (@syssi)
  • Support of construct 2.9.23 to 2.9.30 (@yawor, @syssi)
  • Avoid device crash on wrap around of the sequence number (@syssi)
  • Extended support of the Philips Ceiling Lamp (@syssi)

Full Changelog

Closed issues:

  • Unable to discover a device #217
  • AirPurifier set_mode #213
  • Construct 2.9.28 breaks the Chuangmi IR packet assembly #212
  • Set mode for Air Purifier 2 not working #207
  • Trying to get map data without rooting #206
  • Unknown miio device found #204
  • Supporting raw and pronto optional parameter without type specifier. #199

Merged pull requests:

  • Fixes for the API change of construct v2.9.30 #220 (syssi)
  • Philips Ceiling Lamp: New setter "bricct" added #216 (syssi)
  • Lazy discovery on demand #215 (syssi)
  • Chuangmi IR: Fix Construct 2.9.28 regression #214 (yawor)
  • Philips Bulb crashs if _id is 0 #211 (syssi)

This release provides major improvements for various supported devices. Special thanks goes to @yawor for his awesome work!

Additionally, a compatibility issue when using construct version 2.9.23 and greater -- causing timeouts and inability to control devices -- has been fixed again.

Device errors are now wrapped in a exception (DeviceException) for easier handling.

New devices:

  • Air Purifier: Some additional models added to the list of supported and discovered devices by mDNS (@syssi)
  • Air Humidifier CA added to the list of supported and discovered devices by mDNS (@syssi)

Improvements:

  • Air Conditioning Companion: Extended device support (@syssi)
  • Air Humidifier: Device support tested and improved (@syssi)
  • Air Purifier Pro: Second motor speed and filter type detection added (@yawor)
  • Air Purifier: Some additional properties added (@syssi)
  • Air Quality Monitor: Additional property "time_state" added (@syssi)
  • Revise error handling to be more consistent for library users (@rytilahti)
  • Chuangmi IR: Ability to send any Pronto Hex encoded IR command added (@yawor)
  • Chuangmi IR: Command type autodetection added (@yawor)
  • Philips Bulb: New command "bricct" added (@syssi)
  • Command line interface: Make discovery to work with no IP addr and token, courtesy of @M0ses (@rytilahti)

Full Changelog

Fixed bugs:

  • TypeError: build() takes 2 positional arguments but 3 were given #201
  • Error on build message #197

Closed issues:

  • Control Air purifier and Humidifier? #177
  • Construct error, "subcon should be a Construct field" #167

Merged pull requests:

  • mDNS discovery: Additional air humidifier model (zhimi-humidifier-ca1) added #200 (syssi)
  • Make discovery to work with no IP addr and token, courtesy of M0ses #198 (rytilahti)
  • Minimum supported version of construct specified #196 (syssi)
  • Chuangmi IR command type autodetection #195 (yawor)
  • Point hound-ci to the flake8 configuration. Second try. #193 (syssi)
  • Fix a breaking change of construct 2.9.23 #192 (syssi)
  • Air Purifier: SleepMode enum added. SleepMode isn't a subset of OperationMode #190 (syssi)
  • Point hound-ci to the flake8 configuration #189 (syssi)
  • Features of mixed air purifier models added #188 (syssi)
  • Air Quality Monitor: New property "time_state" added #187 (syssi)
  • Philips Bulb: New setter "bricct" added #186 (syssi)
  • Tests for the Chuangmi IR controller #184 (syssi)
  • Chuangmi IR: Add ability to send any Pronto Hex encoded IR command. #183 (yawor)
  • Tests for the Xiaomi Air Conditioning Companion #182 (syssi)
  • Flake8 configuration updated #181 (syssi)
  • Revise error handling to be more consistent for library users #180 (rytilahti)
  • All device specific exceptions should derive from DeviceException #179 (syssi)
  • Air Purifier Pro second motor speed #176 (yawor)
  • Tests of the Air Purifier improved #174 (syssi)
  • New properties of the Xiaomi Air Humidifier added #173 (syssi)
  • Return type of the property "volume" should be Optional #172 (syssi)
  • Missing dependency "appdirs" added #171 (syssi)
  • Xiaomi Air Humidifier: Unavailable property "led" removed. #170 (syssi)
  • Extended Air Conditioning Companion support #169 (syssi)

The most significant change for this release is unbreaking the communication when using a recent versions of construct library (thanks to @syssi). On top of that there are various smaller fixes and improvements, e.g. support for sound packs and running python-miio on Windows.

New devices:

  • Air Purifier 2S added to the list of supported and discovered devices by mDNS (@harnash)

Improvements:

  • Air Purifier Pro: support for sound volume level and illuminance sensor (@yawor)
  • Vacuum: added sound pack handling and ability to change the sound volume (@rytilahti)
  • Vacuum: better support for status information on the 2nd gen model (@hastarin)

Full Changelog

Fixed bugs:

  • Error with info command #156
  • Change hard coded /tmp to cross-platform tempfile #148

Closed issues:

  • mirobo vacuum sound volume control #159
  • wifi signal strength #155
  • xiaomi philips bulb & philips ceiling #151
  • Vaccum Timer / Timezone issue #149
  • Exception when displaying Power load using Plug CLI #144
  • Missing states and error_codes #57

Merged pull requests:

  • Use appdirs' user_cache_dir for sequence file #165 (rytilahti)
  • Add a more helpful error message when info() fails with an empty payload #164 (rytilahti)
  • Adding "Go to target" state description for Roborock S50. #163 (hastarin)
  • Add ability to change the volume #162 (rytilahti)
  • Added Air Purifier 2S to supported devices #161 (harnash)
  • Modified to support zoned cleaning mode of Roborock S50. #160 (hastarin)
  • Fix for a breaking change of construct 2.8.22 #158 (syssi)
  • Air Purifier Pro: support for sound volume level and fix for bright propery #157 (yawor)
  • Add preliminary support for managing sound files #154 (rytilahti)

This release brings support for Air Conditioner Companion along some improvements and an increase in the test coverage for future-proofing the code-base. Special thanks for this release goes to @syssi & to all new contributors!

A bug exposed in python-miio when using version 2.8.17 or newer of the underlying construct library -- causing timeouts and inability to control devices -- has also been fixed in this release.

New supported devices:

  • Xiaomi Mi Home Air Conditioner Companion

Improvements:

  • Mi Vacuum 2nd generation is now detected by discovery
  • Air Purifier 2: expose additional properties
  • Yeelight: parse RGB properly

Full Changelog

Implemented enhancements:

  • Xiaomi Mi Home Air Conditioner Companion support #76

Closed issues:

  • Philip Eye Care Lamp Got error when receiving: timed out #146
  • Can't reach my mirobo #145
  • installiation problems #130
  • Unable to discover Xiaomi Philips LED Bulb #106
  • Xiaomi Mi Robot Vacuum 2nd support #90

Merged pull requests:

  • Update for Rock Robot (Mi Robot gen 2) #143 (fanthos)
  • Unbreak the communication when using construct v2.8.17 #142 (rytilahti)
  • fix powerstate invalid #139 (roiff)
  • Unit tests for the Chuang Mi Plug V1 #137 (syssi)
  • Unit tests of the Xiaomi Power Strip extended #136 (syssi)
  • Unit tests for the Xiaomi Air Quality Monitor #135 (syssi)
  • Unit tests for the Xiaomi Air Humidifier #134 (syssi)
  • Unit tests for philips lights #133 (syssi)
  • Additional properties of the Xiaomi Air Purifier 2 introduced #132 (syssi)
  • Fix Yeelight RGB parsing #131 (Sduniii)
  • Xiaomi Air Conditioner Companion support #129 (syssi)
  • Fix manual_control error message typo #127 (skorokithakis)
  • bump to 0.3.2, add RELEASING.md for describing the process #126 (rytilahti)

This release includes small improvements for powerstrip and vacuum support. Furthermore this is the first release with proper documentation. Generated docs are available at https://python-miio.readthedocs.io - patches to improve them are more than welcome!

Improvements:

  • Powerstrip: expose correct load power, works also now without cloud connectivity
  • Vacuum: added ability to reset consumable states
  • Vacuum: exposes time left before next sensor clean-up

Full Changelog

Closed issues:

  • philips.light.ceiling Unsupported device found! #118
  • Xiaomi Philips ceiling light automation #116
  • Unsupported device found #112
  • PM2.5 Faster Readout #111

Merged pull requests:

  • add pure text LICENSE #125 (rytilahti)
  • Add GPLv3 license #124 (pluehne)
  • Don’t require typing with Python 3.5 and newer #123 (pluehne)
  • Powerstrip fixes #121 (rytilahti)
  • Added time left for recommended sensor cleaning #119 (bbbenji)
  • Load power of the PowerStrip fixed and removed from the Plug #117 (syssi)
  • Reset consumable by name #115 (mrin)
  • Model name of the Xiaomi Philips Ceiling Lamp updated #113 (syssi)
  • Update apidocs for sphinx-generated documentation, which follows at l… #93 (rytilahti)

0.3.1 (2017-11-01)

New supported devices:

  • Xioami Philips Smart LED Ball Lamp

Improvements:

  • Vacuum: add ability to configure used wifi network
  • Plug V1: improved discovery, add temperature reporting
  • Airpurifier: setting of favorite level works now
  • Eyecare: safer mapping of properties

Breaking:

  • Strip has been renamed to PowerStrip to avoid confusion

Full Changelog

Fixed bugs:

  • AirPurifier: set_favorite_level not working #103

Closed issues:

  • Unsupported device #108
  • Xiaomi Vacuum resume cleaning session from dock capability? #102

Merged pull requests:

  • Chuang Mi Plug V1: Property "temperature" added & discovery fixed #109 (syssi)
  • Add the ability to define a timezone for configure_wifi #107 (rytilahti)
  • Make vacuum robot wifi settings configurable via CLI #105 (infinitydev)
  • API call set_favorite_level (method: set_level_favorite) updated #104 (syssi)
  • use upstream android_backup #101 (rytilahti)
  • add some tests to vacuum #100 (rytilahti)
  • Add a base to allow easier testing of devices #99 (rytilahti)
  • Rename of Strip to PowerStrip to avoid confusion with led strips #97 (syssi)
  • Some typing hints added and the code order aligned #96 (syssi)
  • Philips Eyecare: More safety property mapping of the device status #95 (syssi)
  • Device support of the Xioami Philips Smart LED Ball Lamp #94 (syssi)

0.3.0 (2017-10-21)

Good bye to python-mirobo, say hello to python-miio! As the library is getting more mature and supports so many other devices besides the vacuum sporting the miIO protocol, it was decided that the project deserves a new name. The name python-miio was previously used by a fork of python-mirobo, and we are thankful to SchumyHao for releasing the name for us.

The old "mirobo" package will continue working (and is API compatible) for the foreseeable future, however, developers using this package (if any) are encouraged to port their code over to use the the new "miio" package. The old command-line tools remain as they are.

In order to simplify the initial configuration, a tool to extract tokens from a Mi Home's backup (Android) or its database (Apple, Android) is added. It will also decrypt the tokens if needed, a change which was introduced recently how they are stored in the database of iOS devices.

Improvements:

  • Vacuum: add support for configuring scheduled cleaning
  • Vacuum: more user-friendly do-not-disturb reporting
  • Vacuum: VacuumState's 'dnd' and 'in_cleaning' properties are deprecated in favor of 'dnd_status' and 'is_on'.
  • Power Strip: load power is returned now correctly
  • Yeelight: allow configuring 'developer mode', 'save state on change', and internal name
  • Properties common for several devices are now named more consistently

New supported devices:

  • Xiaomi PM2.5 Air Quality Monitor
  • Xiaomi Water Purifier
  • Xiaomi Air Humidifier
  • Xiaomi Smart Wifi Speaker (incomplete, help wanted)

Full Changelog

Implemented enhancements:

  • Column ZToken of the iOS app contains a 96 character token #75
  • Xiaomi PM2.5 Air Quality Monitor support #70

Closed issues:

  • Calling message handler 'onHeartbeat'. #82
  • How do I find more features? #10

Merged pull requests:

  • Device support of the Xiaomi PM2.5 Air Quality Monitor introduced #89 (syssi)
  • wrap vacuum's dnd status inside an object #87 (rytilahti)
  • Initial support for wifi speakers #86 (rytilahti)
  • Extend yeelight support #85 (rytilahti)
  • Discovery: Device name of the zimi powerstrip v2 fixed #84 (syssi)
  • Rename the project to python-miio #83 (rytilahti)
  • Device support of the Xiaomi Power Strip updated #81 (syssi)
  • WIP: Extract Android backups, yield devices instead of just echoing #80 (rytilahti)
  • add a note about miio-extract-tokens #79 (rytilahti)
  • Implement adding, deleting and updating the timer #78 (rytilahti)
  • Add miio-extract-tokens tool for extracting tokens from sqlite databases #77 (rytilahti)
  • WIP: Avoid discovery flooding #72 (syssi)
  • mDNS discovery: New air purifier model (zhimi-airpurifier-m2) #68 (syssi)
  • First draft of the water purifier support #67 (syssi)
  • Device support of the Xiaomi Air Humidifier #66 (syssi)
  • Device info extended by two additional properties #65 (syssi)
  • Abstract device model exteded by model name (identifier) #64 (syssi)
  • Adjust property names of some devices #63 (syssi)

0.2.0 (2017-09-05)

Considering how far this project has evolved from being just an interface for the Xiaomi vacuum, it is time to leave 0.1 series behind and call this 0.2.0.

This release brings support to a couple of new devices, and contains fixes for some already supported ones. All thanks for the improvements in this release go to syssi!

  • Extended mDNS discovery to support more devices (@syssi)
  • Improved support for the following devices:
    • Air purifier (@syssi)
    • Philips ball / Ceiling lamp (@syssi)
    • Xiaomi Strip (@syssi)
  • New supported devices:
    • Chuangmi IR Remote control (@syssi)
    • Xiaomi Mi Smart Fan (@syssi)

Full Changelog

Closed issues:

  • Error in new mirobo/protocol.py #54
  • Some element about Xiaomi Philips Bulb #43
  • Philips Bulb and ceiling how to get token ? #42
  • Add support for other devices using the same protocol #17
  • Allow sending discovery packets to static IP address #5

Merged pull requests:

  • trivial: fix typo in automatic discovery description. #61 (haim0n)
  • Some typos fixed #60 (syssi)
  • Fixes an AttributeError: PlugStatus object has no attribute current #59 (syssi)
  • Fixes various lint issues #58 (syssi)
  • Air Purifier: Set favorite level fixed #55 (syssi)
  • mDNS name of the Chuangmi Infrared Controller #53 (syssi)
  • Device support for the Xiaomi Mi Smart Fan #52 (syssi)
  • mDNS device map extended #51 (syssi)
  • Power strip: Fixes calculation of the instantaneous current #50 (syssi)
  • Air purifier: defaultdict used for safety and transparency #49 (syssi)
  • Device support for the Chuangmi IR Remote Controller #46 (syssi)
  • Xiaomi Ceiling Lamp: Some refactoring and fault tolerance if a philips light ball is used #45 (syssi)
  • New dependency "zeroconf" added. It's used for discovery now. #44 (syssi)
  • Readme for firmware >= 3.3.9_003077 (Vacuum robot) #41 (mthoretton)
  • Some improvements of the air purifier support #40 (syssi)

0.1.4 (2017-08-23)

Fix dependencies

Full Changelog

0.1.3 (2017-08-22)

  • New commands:

    • --version to print out library version
    • info to return information about a device (requires token to be set)
    • serial_number (vacuum only)
    • timezone (getting and setting the timezone, vacuum only)
    • sound (querying)
  • Supports for the following new devices thanks to syssi and kuduka:

    • Xiaomi Smart Power Strip (WiFi, 6 Ports) (@syssi)
    • Xiaomi Mi Air Purifier 2 (@syssi)
    • Xiaomi Mi Smart Socket Plug (1 Socket, 1 USB Port) (@syssi)
    • Xiaomi Philips Eyecare Smart Lamp 2 (@kuduka)
    • Xiaomi Philips LED Ceiling Lamp (@kuduka)
    • Xiaomi Philips LED Ball Lamp (@kuduka)
  • Discovery now uses mDNS instead of handshake protocol. Old behavior still available with --handshake true

Full Changelog

Closed issues:

  • After updating to new firmware - can #37
  • CLI tool demands an IP address always #36
  • Use of both app and script not possible? #30
  • Moving from custom_components to HA version not working #28
  • Xiaomi Robot new Device ID #27

Merged pull requests:

  • Supported devices added to README.md and version bumped #39 (syssi)
  • Fix Home Assistant link to doc, using new vacuum component #38 (azogue)
  • Added support for Xiaomi Philips LED Ceiling Lamp #35 (kuduka)
  • Added support for Xiaomi Philips Eyecare Smart Lamp 2 #34 (kuduka)
  • Device support for the chuangmi plug v1 added #33 (syssi)
  • Device support for the xiaomi power strip added. #32 (syssi)
  • Device support for the xiaomi air purifier added. #31 (syssi)

0.1.2 (2017-07-22)

  • Add support for Wifi plugs (thanks to syssi)
  • Make communication more robust by retrying automatically on errors

Full Changelog

Closed issues:

  • Pause not working in remote control mode #26
  • geht error singe 0.1.0 #25
  • Check that given token has correct length #11

Merged pull requests:

  • Device support for the xiaomi smart wifi socket added #29 (syssi)

0.1.1 (2017-07-10)

add 'typing' requirement for python <3.5

Full Changelog

Closed issues:

  • No module named 'typing' #24

0.1.0 (2017-07-08)

Full Changelog

Closed issues:

  • Error: Invalid value for "--id-file" #23
  • error on execute mirobo discover #22
  • Only one command working #21
  • Integration in home assistant #4

0.0.9 (2017-07-06)

fixes communication with newer firmwares

Full Changelog

Closed issues:

  • Feature request: show cleaning map #20
  • Command "map" and "raw_command" - what do they do? #19
  • mirobo "DND enabled: 0", after change to 1 #18
  • Xiaomi vaccum control from Raspberry pi + iPad Mi app at the same time - token: b'ffffffffffffffffffffffffffffffff' #16
  • Not working with newest firmware version 3.3.9_003073 #14

0.0.8 (2017-06-05)

Full Changelog

Closed issues:

  • WIFI Switch for HA #12
  • Bug when having multiple network interfaces (discovery) #9
  • Get token from android App #8
  • Hello Thank you ! #7
  • WARNING:root:could not open file'/etc/apt/sources.list' #6

0.0.7 (2017-04-14)

cleanup in preparation for homeassistant inclusion

Full Changelog

0.0.6 (2017-04-14)

cli improvements, total cleaning stats, remaining time for consumables

Full Changelog

Closed issues:

  • some concern about the new version #3
  • can't find my robot #2
  • [Error] Timout when querying for status #1

0.0.5 (2017-04-14)

* This Change Log was automatically generated by github_changelog_generator