- Added edimax.py module to interface with Edimax SP-1101W and SP-2101W
This commit is contained in:
Rohit Kabadi 2015-07-20 20:16:54 -07:00
parent bfa8131f4b
commit 6631ebfdfa
3 changed files with 56 additions and 0 deletions

3
.gitmodules vendored
View File

@ -22,3 +22,6 @@
[submodule "homeassistant/external/pymysensors"]
path = homeassistant/external/pymysensors
url = https://github.com/theolind/pymysensors
[submodule "homeassistant/external/pyedimax"]
path = homeassistant/external/pyedimax
url = https://github.com/rkabadi/pyedimax

View File

@ -0,0 +1,52 @@
"""
homeassistant.components.switch.edimax
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Support for Edimax switches.
"""
import logging
from homeassistant.components.switch import SwitchDevice
# pylint: disable=unused-argument
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
""" Find and return Edimax Smart Plugs. """
try:
# pylint: disable=no-name-in-module, import-error
from homeassistant.external.pyedimax.smartplug import SmartPlug
except ImportError:
logging.getLogger(__name__).exception((
"Failed to import pyedimax. "
"Did you maybe not run `git submodule init` "
"and `git submodule update`?"))
return
add_devices_callback([
SmartPlugSwitch(SmartPlug(
host = config.get('host'),
auth=(
config.get('user', 'admin'),
config.get('password', '1234'))))
])
class SmartPlugSwitch(SwitchDevice):
""" Represents a Edimax Smart Plug switch within Home Assistant. """
def __init__(self, smartplug):
self.smartplug = smartplug
@property
def is_on(self):
""" True if switch is on. """
return self.smartplug.get_state()
def turn_on(self, **kwargs):
""" Turns the switch on. """
self.smartplug.state = 'ON'
def turn_off(self):
""" Turns the switch off. """
self.smartplug.state = 'OFF'

1
homeassistant/external/pyedimax vendored Submodule

@ -0,0 +1 @@
Subproject commit 3815f3bd99fb9dcd4d9e5e6fc58626f5873e43db