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

AC Partner V3: Add socket support (Closes #337) #415

Merged
merged 7 commits into from
Nov 18, 2018
Merged
Changes from 1 commit
Commits
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
14 changes: 14 additions & 0 deletions miio/airconditioningcompanion.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,20 @@ def off(self):
"""Turn the air condition off by infrared."""
return self.send("set_power", ["off"])

@command(
default_output = format_output("Powering socket on"),

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unexpected spaces around keyword / parameter equals

)
def socket_on(self):
"""Socket power on. Supported by acpartner.v3 only."""
return self.send("toggle_plug", ["on"])

@command(
default_output = format_output("Powering socket off"),

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unexpected spaces around keyword / parameter equals

)
def socket_off(self):
"""Socket power off. Supported by acpartner.v3 only."""
return self.send("toggle_plug", ["off"])

@command(
click.argument("slot", type=int),
default_output=format_output(
Expand Down