forked from roberodin/ha-samsungtv-custom
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
331 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
{ | ||
"domain": "samsungtv_custom", | ||
"name": "Samsungtv Custom", | ||
"documentation": "https://github.com/roberodin/ha-samsungtv-custom", | ||
"documentation": "https://github.com/xchwarze/ha-samsungtv-custom", | ||
"requirements": [ | ||
"samsungctl[websocket]==0.7.1", | ||
"wakeonlan==1.1.6" | ||
], | ||
"dependencies": [], | ||
"codeowners": ["@roberodin"], | ||
"codeowners": ["@xchwarze"], | ||
"homeassistant": "0.99.3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
custom_components/samsungtv_custom/samsungtvws/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
""" | ||
SamsungTVWS - Samsung Smart TV WS API wrapper | ||
Copyright (C) 2019 Xchwarze | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||
Boston, MA 02110-1335 USA | ||
""" | ||
from .remote import SamsungTVWS |
Oops, something went wrong.