Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic support for Xiaomi Mi Smart Electric Rice Cooker #287

Merged
merged 35 commits into from
Apr 19, 2018
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
efd5bb9
First draft of the Xiaomi Cooker support
syssi Mar 29, 2018
6e9f18f
Missing import added
syssi Mar 29, 2018
f83c979
Cooker profiles added
syssi Mar 30, 2018
a6feafc
Typo fixed
syssi Mar 30, 2018
1999e76
Docstring updated
syssi Mar 30, 2018
5b4e126
Throw an exception if the cooking profile is invalid
syssi Mar 30, 2018
f74fe2c
Some observations added
syssi Mar 30, 2018
e690a62
Format improved and caption added
syssi Mar 30, 2018
abf7e47
Cooker settings added
syssi Mar 30, 2018
0b2b560
Use the new settings at set_interaction
syssi Mar 30, 2018
ec88e71
Set interaction is feature complete
syssi Mar 30, 2018
22957b3
FIXMEs added
syssi Mar 30, 2018
6fa24f3
Refactoring
syssi Mar 30, 2018
d63b8b5
Repr fixed
syssi Mar 30, 2018
b3515b8
Refactoring
syssi Mar 31, 2018
6e138d5
Cooking stages added
syssi Mar 31, 2018
4d723da
Refactoring and cooker customizations added
syssi Mar 31, 2018
032e662
Typos fixed
syssi Mar 31, 2018
d7f4a41
Clean-up and some docstrings added
syssi Mar 31, 2018
d1b9d5e
Support of the temperature property extended
syssi Mar 31, 2018
0e133e8
Stages translated
syssi Mar 31, 2018
089a711
Temperature history added
syssi Mar 31, 2018
1d322aa
Missing blank line added
syssi Mar 31, 2018
a2b0412
Translations updated
syssi Mar 31, 2018
3ea64fc
Unified cli support added
syssi Mar 31, 2018
2034fd8
README updated
syssi Apr 15, 2018
1d4e0fd
Taste phase fixed
syssi Apr 15, 2018
3e8d549
Typo fixed
syssi Apr 15, 2018
842a23f
Cooking profiles moved to data directory
syssi Apr 19, 2018
2bda04f
Include package data
syssi Apr 19, 2018
0b27bd0
Merge branch 'master' into feature/xiaomi-cooker
syssi Apr 19, 2018
18adea2
WifiSpeaker import removed by accident
syssi Apr 19, 2018
5de4107
Incomplete CLI code removed
syssi Apr 19, 2018
30ade06
Unused import removed
syssi Apr 19, 2018
7d272fa
Description of the data structures added
syssi Apr 19, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions miio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from miio.wifirepeater import WifiRepeater
from miio.airqualitymonitor import AirQualityMonitor
from miio.airconditioningcompanion import AirConditioningCompanion
from miio.cooker import Cooker
from miio.yeelight import Yeelight
from miio.device import Device, DeviceException
from miio.discovery import Discovery
Loading