mirror of
https://github.com/home-assistant/core.git
synced 2025-08-21 03:10:02 +00:00
.github
docs
homeassistant
auth
components
abode
ads
air_quality
alarm_control_panel
alarmdecoder
alert
alexa
ambient_station
amcrest
android_ip_webcam
androidtv
apcupsd
api
apple_tv
aqualogic
arduino
arlo
asterisk_mbox
asuswrt
august
auth
automation
axis
bbb_gpio
binary_sensor
blink
bloomsky
bmw_connected_drive
browser
calendar
camera
canary
cast
cisco_mobility_express
climate
cloud
cloudflare
coinbase
comfoconnect
config
configurator
conversation
counter
cover
cppm_tracker
daikin
danfoss_air
datadog
deconz
default_config
demo
device_sun_light_trigger
device_tracker
dialogflow
digital_ocean
discovery
dominos
doorbird
dovado
downloader
duckdns
dweet
dyson
ebusd
ecoal_boiler
ecobee
ecovacs
edp_redy
egardia
eight_sleep
elkm1
emoncms_history
emulated_hue
emulated_roku
enigma2
enocean
envisalink
esphome
eufy
evohome
fan
fastdotcom
feedreader
ffmpeg
fibaro
folder_watcher
foursquare
freebox
freedns
fritzbox
frontend
gc100
geo_location
geofency
goalfeed
google
google_assistant
google_domains
google_pubsub
googlehome
gpslogger
graphite
greeneye_monitor
group
habitica
hangouts
harmony
hassio
hdmi_cec
history
history_graph
hive
hlk_sw16
homekit
homekit_controller
homematic
homematicip_cloud
homeworks
http
huawei_lte
hue
hydrawise
idteck_prox
ifttt
ihc
image_processing
influxdb
input_boolean
input_datetime
input_number
input_select
input_text
insteon
insteon_local
insteon_plm
intent_script
introduction
ios
iota
iperf3
ipma
isy994
itach
joaoapps_join
juicenet
keyboard
keyboard_remote
kira
knx
konnected
lametric
lcn
lifx
light
lightwave
linode
lirc
litejet
locative
lock
logbook
logentries
logger
logi_circle
lovelace
luftdaten
lupusec
lutron
lutron_caseta
mailbox
mailgun
map
matrix
maxcube
media_extractor
media_player
melissa
meteo_france
microsoft_face
mobile_app
mochad
modbus
mqtt
mqtt_eventstream
mqtt_statestream
mychevy
mycroft
mysensors
mythicbeastsdns
namecheapdns
neato
ness_alarm
nest
netatmo
netgear_lte
nissan_leaf
no_ip
notify
nuheat
nuimo_controller
octoprint
onboarding
opentherm_gw
openuv
owlet
owntracks
panel_custom
panel_iframe
persistent_notification
person
pilight
plant
plum_lightpad
point
prometheus
proximity
ps4
python_script
qwikswitch
rachio
rainbird
raincloud
rainmachine
raspihats
recorder
reddit
remember_the_milk
remote
rest_command
rflink
rfxtrx
ring
roku
route53
rpi_gpio
rpi_pfio
rss_feed_template
sabnzbd
satel_integra
scene
script
scsgate
sense
sensor
shell_command
shiftr
shopping_list
simplisafe
sisyphus
skybell
sleepiq
smappee
smartthings
smhi
snips
sonos
spaceapi
spc
speedtestdotnet
spider
splunk
statsd
stream
sun
switch
__init__.py
acer_projector.py
anel_pwrctrl.py
arest.py
broadlink.py
command_line.py
deluge.py
demo.py
digitalloggers.py
dlink.py
edimax.py
flux.py
fritzdect.py
hikvisioncam.py
hook.py
kankun.py
litejet.py
mfi.py
mystrom.py
netio.py
orvibo.py
pencom.py
pulseaudio_loopback.py
rainbird.py
raspyrfm.py
recswitch.py
rest.py
rflink.py
rpi_rf.py
services.yaml
snmp.py
sony_projector.py
switchbot.py
switchmate.py
telnet.py
template.py
vesync.py
vultr.py
wake_on_lan.py
system_health
system_log
tado
tahoma
telegram_bot
tellduslive
tellstick
tesla
thethingsnetwork
thingspeak
thinkingcleaner
tibber
timer
tof
toon
tplink
tplink_lte
tradfri
transmission
tts
tuya
twilio
unifi
upcloud
updater
upnp
usps
utility_meter
vacuum
velbus
velux
vera
verisure
volvooncall
vultr
w800rf32
wake_on_lan
water_heater
waterfurnace
watson_iot
weather
webhook
weblink
webostv
websocket_api
wemo
wink
wirelesstag
wunderlist
xiaomi_aqara
xiaomi_miio
xs1
zabbix
zeroconf
zha
zigbee
zone
zoneminder
zwave
__init__.py
services.yaml
helpers
scripts
util
__init__.py
__main__.py
bootstrap.py
config.py
config_entries.py
const.py
core.py
data_entry_flow.py
exceptions.py
loader.py
monkey_patch.py
package_constraints.txt
requirements.py
setup.py
script
tests
virtualization
.coveragerc
.dockerignore
.gitattributes
.gitignore
.hound.yml
.ignore
.readthedocs.yml
.travis.yml
CLA.md
CODEOWNERS
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile
LICENSE.md
MANIFEST.in
README.rst
mypy.ini
pylintrc
requirements_all.txt
requirements_docs.txt
requirements_test.txt
requirements_test_all.txt
setup.cfg
setup.py
tox.ini
82 lines
2.3 KiB
Python
82 lines
2.3 KiB
Python
"""
|
|
Support for Switchmate.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/switch.switchmate/
|
|
"""
|
|
import logging
|
|
from datetime import timedelta
|
|
|
|
import voluptuous as vol
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.components.switch import SwitchDevice, PLATFORM_SCHEMA
|
|
from homeassistant.const import CONF_NAME, CONF_MAC
|
|
|
|
REQUIREMENTS = ['pySwitchmate==0.4.5']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONF_FLIP_ON_OFF = 'flip_on_off'
|
|
DEFAULT_NAME = 'Switchmate'
|
|
|
|
SCAN_INTERVAL = timedelta(minutes=30)
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_MAC): cv.string,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
vol.Optional(CONF_FLIP_ON_OFF, default=False): cv.boolean,
|
|
})
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None) -> None:
|
|
"""Perform the setup for Switchmate devices."""
|
|
name = config.get(CONF_NAME)
|
|
mac_addr = config[CONF_MAC]
|
|
flip_on_off = config[CONF_FLIP_ON_OFF]
|
|
add_entities([SwitchmateEntity(mac_addr, name, flip_on_off)], True)
|
|
|
|
|
|
class SwitchmateEntity(SwitchDevice):
|
|
"""Representation of a Switchmate."""
|
|
|
|
def __init__(self, mac, name, flip_on_off) -> None:
|
|
"""Initialize the Switchmate."""
|
|
# pylint: disable=import-error, no-member, no-value-for-parameter
|
|
import switchmate
|
|
self._mac = mac
|
|
self._name = name
|
|
self._device = switchmate.Switchmate(mac=mac, flip_on_off=flip_on_off)
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return a unique, HASS-friendly identifier for this entity."""
|
|
return self._mac.replace(':', '')
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return True if entity is available."""
|
|
return self._device.available
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the switch."""
|
|
return self._name
|
|
|
|
def update(self) -> None:
|
|
"""Synchronize state with switch."""
|
|
self._device.update()
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return true if it is on."""
|
|
return self._device.state
|
|
|
|
def turn_on(self, **kwargs) -> None:
|
|
"""Turn the switch on."""
|
|
self._device.turn_on()
|
|
|
|
def turn_off(self, **kwargs) -> None:
|
|
"""Turn the switch off."""
|
|
self._device.turn_off()
|