python-roborock 5.32.0__tar.gz → 5.34.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. python_roborock-5.34.0/LICENSE +202 -0
  2. {python_roborock-5.32.0 → python_roborock-5.34.0}/PKG-INFO +2 -2
  3. {python_roborock-5.32.0 → python_roborock-5.34.0}/pyproject.toml +3 -2
  4. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/v1/v1_code_mappings.py +0 -307
  5. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/v1/v1_containers.py +1 -374
  6. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/b01_grid_layers.py +32 -16
  7. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/b01_q10_map_parser.py +7 -7
  8. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/b01_q10_overlays.py +13 -14
  9. python_roborock-5.34.0/roborock/map/b01_q10_render.py +285 -0
  10. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/roborock_typing.py +0 -51
  11. python_roborock-5.32.0/LICENSE +0 -674
  12. {python_roborock-5.32.0 → python_roborock-5.34.0}/.gitignore +0 -0
  13. {python_roborock-5.32.0 → python_roborock-5.34.0}/README.md +0 -0
  14. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/__init__.py +0 -0
  15. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/broadcast_protocol.py +0 -0
  16. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/callbacks.py +0 -0
  17. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/cli.py +0 -0
  18. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/const.py +0 -0
  19. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/__init__.py +0 -0
  20. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/b01_q10/__init__.py +0 -0
  21. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/b01_q10/b01_q10_code_mappings.py +0 -0
  22. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/b01_q10/b01_q10_containers.py +0 -0
  23. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/b01_q7/__init__.py +0 -0
  24. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/b01_q7/b01_q7_code_mappings.py +0 -0
  25. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/b01_q7/b01_q7_containers.py +0 -0
  26. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/code_mappings.py +0 -0
  27. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/containers.py +0 -0
  28. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/dyad/__init__.py +0 -0
  29. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/dyad/dyad_code_mappings.py +0 -0
  30. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/dyad/dyad_containers.py +0 -0
  31. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/mower/__init__.py +0 -0
  32. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/mower/mower_containers.py +0 -0
  33. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/v1/__init__.py +0 -0
  34. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/v1/v1_clean_modes.py +0 -0
  35. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/zeo/__init__.py +0 -0
  36. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/zeo/zeo_code_mappings.py +0 -0
  37. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/data/zeo/zeo_containers.py +0 -0
  38. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/device_features.py +0 -0
  39. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/README.md +0 -0
  40. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/__init__.py +0 -0
  41. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/cache.py +0 -0
  42. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/device.py +0 -0
  43. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/device_manager.py +0 -0
  44. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/file_cache.py +0 -0
  45. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/rpc/__init__.py +0 -0
  46. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/rpc/a01_channel.py +0 -0
  47. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/rpc/b01_q10_channel.py +0 -0
  48. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/rpc/b01_q7_channel.py +0 -0
  49. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/rpc/v1_channel.py +0 -0
  50. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/__init__.py +0 -0
  51. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/a01/__init__.py +0 -0
  52. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/__init__.py +0 -0
  53. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/__init__.py +0 -0
  54. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/button_light.py +0 -0
  55. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/child_lock.py +0 -0
  56. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/clean_history.py +0 -0
  57. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/command.py +0 -0
  58. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/common.py +0 -0
  59. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/consumable.py +0 -0
  60. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/do_not_disturb.py +0 -0
  61. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/dust_collection.py +0 -0
  62. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/map.py +0 -0
  63. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/network_info.py +0 -0
  64. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/remote.py +0 -0
  65. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/status.py +0 -0
  66. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/vacuum.py +0 -0
  67. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q10/volume.py +0 -0
  68. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q7/__init__.py +0 -0
  69. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q7/clean_summary.py +0 -0
  70. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q7/map.py +0 -0
  71. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/b01/q7/map_content.py +0 -0
  72. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/common.py +0 -0
  73. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/traits_mixin.py +0 -0
  74. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/__init__.py +0 -0
  75. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/child_lock.py +0 -0
  76. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/clean_summary.py +0 -0
  77. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/command.py +0 -0
  78. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/common.py +0 -0
  79. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/consumeable.py +0 -0
  80. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/device_features.py +0 -0
  81. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/do_not_disturb.py +0 -0
  82. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/dust_collection_mode.py +0 -0
  83. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/flow_led_status.py +0 -0
  84. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/home.py +0 -0
  85. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/led_status.py +0 -0
  86. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/map_content.py +0 -0
  87. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/maps.py +0 -0
  88. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/network_info.py +0 -0
  89. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/rooms.py +0 -0
  90. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/routines.py +0 -0
  91. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/smart_wash_params.py +0 -0
  92. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/status.py +0 -0
  93. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/valley_electricity_timer.py +0 -0
  94. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/volume.py +0 -0
  95. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/traits/v1/wash_towel_mode.py +0 -0
  96. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/transport/__init__.py +0 -0
  97. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/transport/channel.py +0 -0
  98. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/transport/local_channel.py +0 -0
  99. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/devices/transport/mqtt_channel.py +0 -0
  100. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/diagnostics.py +0 -0
  101. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/exceptions.py +0 -0
  102. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/__init__.py +0 -0
  103. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/b01_map_parser.py +0 -0
  104. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/map_parser.py +0 -0
  105. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/proto/__init__.py +0 -0
  106. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/proto/b01_scmap.proto +0 -0
  107. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/map/proto/b01_scmap_pb2.py +0 -0
  108. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/mqtt/__init__.py +0 -0
  109. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/mqtt/health_manager.py +0 -0
  110. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/mqtt/roborock_session.py +0 -0
  111. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/mqtt/session.py +0 -0
  112. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/protocol.py +0 -0
  113. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/protocols/__init__.py +0 -0
  114. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/protocols/a01_protocol.py +0 -0
  115. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/protocols/b01_q10_protocol.py +0 -0
  116. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/protocols/b01_q7_protocol.py +0 -0
  117. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/protocols/v1_protocol.py +0 -0
  118. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/py.typed +0 -0
  119. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/roborock_message.py +0 -0
  120. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/testing/__init__.py +0 -0
  121. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/testing/b01_q10_simulator.py +0 -0
  122. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/testing/channel.py +0 -0
  123. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/testing/cloud.py +0 -0
  124. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/testing/simulator.py +0 -0
  125. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/testing/v1_simulator.py +0 -0
  126. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/util.py +0 -0
  127. {python_roborock-5.32.0 → python_roborock-5.34.0}/roborock/web_api.py +0 -0
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-roborock
3
- Version: 5.32.0
3
+ Version: 5.34.0
4
4
  Summary: A package to control Roborock vacuums.
5
5
  Project-URL: Repository, https://github.com/python-roborock/python-roborock
6
6
  Project-URL: Documentation, https://python-roborock.readthedocs.io/
7
7
  Author: Lash-L, allenporter
8
8
  Author-email: humbertogontijo <humbertogontijo@users.noreply.github.com>
9
- License-Expression: GPL-3.0-only
9
+ License-Expression: Apache-2.0
10
10
  License-File: LICENSE
11
11
  Keywords: homeassistant,roborock,vacuum
12
12
  Classifier: Development Status :: 5 - Production/Stable
@@ -1,11 +1,12 @@
1
1
  [project]
2
2
  name = "python-roborock"
3
- version = "5.32.0"
3
+ version = "5.34.0"
4
4
  description = "A package to control Roborock vacuums."
5
5
  authors = [{ name = "humbertogontijo", email = "humbertogontijo@users.noreply.github.com" }, {name="Lash-L"}, {name="allenporter"}]
6
6
  requires-python = ">=3.11, <4"
7
7
  readme = "README.md"
8
- license = "GPL-3.0-only"
8
+ license = "Apache-2.0"
9
+ license-files = ["LICENSE"]
9
10
  keywords = [
10
11
  "roborock",
11
12
  "vacuum",
@@ -281,209 +281,10 @@ class RoborockFanSpeedE2(RoborockFanPowerCode):
281
281
  turbo = 100
282
282
 
283
283
 
284
- class RoborockFanSpeedS7(RoborockFanPowerCode):
285
- off = 105
286
- quiet = 101
287
- balanced = 102
288
- turbo = 103
289
- max = 104
290
- custom = 106
291
-
292
-
293
- class RoborockFanSpeedS7MaxV(RoborockFanPowerCode):
294
- off = 105
295
- quiet = 101
296
- balanced = 102
297
- turbo = 103
298
- max = 104
299
- custom = 106
300
- max_plus = 108
301
-
302
-
303
- class RoborockFanSpeedS6Pure(RoborockFanPowerCode):
304
- gentle = 105
305
- quiet = 101
306
- balanced = 102
307
- turbo = 103
308
- max = 104
309
- custom = 106
310
-
311
-
312
- class RoborockFanSpeedQ7Max(RoborockFanPowerCode):
313
- quiet = 101
314
- balanced = 102
315
- turbo = 103
316
- max = 104
317
-
318
-
319
- class RoborockFanSpeedQRevoMaster(RoborockFanPowerCode):
320
- off = 105
321
- quiet = 101
322
- balanced = 102
323
- turbo = 103
324
- max = 104
325
- custom = 106
326
- max_plus = 108
327
- smart_mode = 110
328
-
329
-
330
- class RoborockFanSpeedQRevoCurv(RoborockFanPowerCode):
331
- quiet = 101
332
- balanced = 102
333
- turbo = 103
334
- max = 104
335
- off = 105
336
- custom = 106
337
- max_plus = 108
338
- smart_mode = 110
339
-
340
-
341
- class RoborockFanSpeedQRevoMaxV(RoborockFanPowerCode):
342
- off = 105
343
- quiet = 101
344
- balanced = 102
345
- turbo = 103
346
- max = 104
347
- custom = 106
348
- max_plus = 108
349
- smart_mode = 110
350
-
351
-
352
- class RoborockFanSpeedP10(RoborockFanPowerCode):
353
- off = 105
354
- quiet = 101
355
- balanced = 102
356
- turbo = 103
357
- max = 104
358
- custom = 106
359
- max_plus = 108
360
- smart_mode = 110
361
-
362
-
363
- class RoborockFanSpeedS8MaxVUltra(RoborockFanPowerCode):
364
- off = 105
365
- quiet = 101
366
- balanced = 102
367
- turbo = 103
368
- max = 104
369
- custom = 106
370
- max_plus = 108
371
- smart_mode = 110
372
-
373
-
374
- class RoborockFanSpeedSaros10(RoborockFanPowerCode):
375
- off = 105
376
- quiet = 101
377
- balanced = 102
378
- turbo = 103
379
- max = 104
380
- custom = 106
381
- max_plus = 108
382
- smart_mode = 110
383
-
384
-
385
- class RoborockFanSpeedSaros10R(RoborockFanPowerCode):
386
- off = 105
387
- quiet = 101
388
- balanced = 102
389
- turbo = 103
390
- max = 104
391
- custom = 106
392
- max_plus = 108
393
- smart_mode = 110
394
-
395
-
396
- class RoborockMopModeCode(RoborockEnum):
397
- """Describes the mop mode of the vacuum cleaner."""
398
-
399
-
400
- class RoborockMopModeQRevoCurv(RoborockMopModeCode):
401
- standard = 300
402
- deep = 301
403
- custom = 302
404
- deep_plus = 303
405
- fast = 304
406
- smart_mode = 306
407
-
408
-
409
- class RoborockMopModeS7(RoborockMopModeCode):
410
- """Describes the mop mode of the vacuum cleaner."""
411
-
412
- standard = 300
413
- deep = 301
414
- custom = 302
415
- deep_plus = 303
416
-
417
-
418
- class RoborockMopModeS8ProUltra(RoborockMopModeCode):
419
- standard = 300
420
- deep = 301
421
- deep_plus = 303
422
- fast = 304
423
- custom = 302
424
- smart_mode = 306
425
-
426
-
427
- class RoborockMopModeS8MaxVUltra(RoborockMopModeCode):
428
- standard = 300
429
- deep = 301
430
- custom = 302
431
- deep_plus = 303
432
- fast = 304
433
- deep_plus_pearl = 305
434
- smart_mode = 306
435
-
436
-
437
- class RoborockMopModeSaros10R(RoborockMopModeCode):
438
- standard = 300
439
- deep = 301
440
- custom = 302
441
- deep_plus = 303
442
- fast = 304
443
- smart_mode = 306
444
-
445
-
446
- class RoborockMopModeQRevoMaster(RoborockMopModeCode):
447
- standard = 300
448
- deep = 301
449
- custom = 302
450
- deep_plus = 303
451
- fast = 304
452
- smart_mode = 306
453
-
454
-
455
- class RoborockMopModeQRevoMaxV(RoborockMopModeCode):
456
- standard = 300
457
- deep = 301
458
- custom = 302
459
- deep_plus = 303
460
- fast = 304
461
- smart_mode = 306
462
-
463
-
464
- class RoborockMopModeSaros10(RoborockMopModeCode):
465
- standard = 300
466
- deep = 301
467
- custom = 302
468
- deep_plus = 303
469
- fast = 304
470
- smart_mode = 306
471
-
472
-
473
284
  class RoborockMopIntensityCode(RoborockEnum):
474
285
  """Describes the mop intensity of the vacuum cleaner."""
475
286
 
476
287
 
477
- class RoborockMopIntensityS7(RoborockMopIntensityCode):
478
- """Describes the mop intensity of the vacuum cleaner."""
479
-
480
- off = 200
481
- mild = 201
482
- moderate = 202
483
- intense = 203
484
- custom = 204
485
-
486
-
487
288
  class RoborockMopIntensityV2(RoborockMopIntensityCode):
488
289
  """Describes the mop intensity of the vacuum cleaner."""
489
290
 
@@ -494,114 +295,6 @@ class RoborockMopIntensityV2(RoborockMopIntensityCode):
494
295
  custom = 207
495
296
 
496
297
 
497
- class RoborockMopIntensityQRevoMaster(RoborockMopIntensityCode):
498
- """Describes the mop intensity of the vacuum cleaner."""
499
-
500
- off = 200
501
- low = 201
502
- medium = 202
503
- high = 203
504
- custom = 204
505
- custom_water_flow = 207
506
- smart_mode = 209
507
-
508
-
509
- class RoborockMopIntensityQRevoCurv(RoborockMopIntensityCode):
510
- off = 200
511
- low = 201
512
- medium = 202
513
- high = 203
514
- custom = 204
515
- custom_water_flow = 207
516
- smart_mode = 209
517
-
518
-
519
- class RoborockMopIntensityQRevoMaxV(RoborockMopIntensityCode):
520
- off = 200
521
- low = 201
522
- medium = 202
523
- high = 203
524
- custom = 204
525
- custom_water_flow = 207
526
- smart_mode = 209
527
-
528
-
529
- class RoborockMopIntensityP10(RoborockMopIntensityCode):
530
- """Describes the mop intensity of the vacuum cleaner."""
531
-
532
- off = 200
533
- low = 201
534
- medium = 202
535
- high = 203
536
- custom = 204
537
- custom_water_flow = 207
538
- smart_mode = 209
539
-
540
-
541
- class RoborockMopIntensityS8MaxVUltra(RoborockMopIntensityCode):
542
- off = 200
543
- low = 201
544
- medium = 202
545
- high = 203
546
- custom = 204
547
- max = 208
548
- smart_mode = 209
549
- custom_water_flow = 207
550
-
551
-
552
- class RoborockMopIntensitySaros10(RoborockMopIntensityCode):
553
- off = 200
554
- mild = 201
555
- standard = 202
556
- intense = 203
557
- extreme = 208
558
- custom = 204
559
- smart_mode = 209
560
-
561
-
562
- class RoborockMopIntensitySaros10R(RoborockMopIntensityCode):
563
- off = 200
564
- low = 201
565
- medium = 202
566
- high = 203
567
- custom = 204
568
- extreme = 250
569
- vac_followed_by_mop = 235
570
- smart_mode = 209
571
-
572
-
573
- class RoborockMopIntensityS5Max(RoborockMopIntensityCode):
574
- """Describes the mop intensity of the vacuum cleaner."""
575
-
576
- off = 200
577
- low = 201
578
- medium = 202
579
- high = 203
580
- custom = 204
581
- custom_water_flow = 207
582
-
583
-
584
- class RoborockMopIntensityS6MaxV(RoborockMopIntensityCode):
585
- """Describes the mop intensity of the vacuum cleaner."""
586
-
587
- off = 200
588
- low = 201
589
- medium = 202
590
- high = 203
591
- custom = 204
592
- custom_water_flow = 207
593
-
594
-
595
- class RoborockMopIntensityQ7Max(RoborockMopIntensityCode):
596
- """Describes the mop intensity of the vacuum cleaner."""
597
-
598
- off = 200
599
- low = 201
600
- medium = 202
601
- high = 203
602
- custom_water_flow = 207
603
-
604
-
605
298
  class RoborockDockErrorCode(RoborockEnum):
606
299
  """Describes the error code of the dock."""
607
300