-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from djtimca/develop
Updated url endpoint to fix certificate error.
- Loading branch information
Showing
3 changed files
with
17 additions
and
5 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,12 @@ | ||
Metadata-Version: 2.1 | ||
Name: omnilogic | ||
Version: 0.4.0 | ||
Version: 0.4.3 | ||
Summary: Integration for the Hayward OmniLogic pool control system | ||
Home-page: https://github.com/djtimca/omnilogic-api | ||
Author: Tim Empringham | ||
Author-email: [email protected] | ||
License: apache-2.0 | ||
Download-URL: https://github.com/djtimca/omnilogic-api/archive/v_040.tar.gz | ||
Download-URL: https://github.com/djtimca/omnilogic-api/archive/v_043.tar.gz | ||
Description: # Hayward OmniLogic Integration | ||
Integration library for Hayward Omnilogic pool controllers to allow easy integration through their API to your home automation system. | ||
|
||
|
@@ -109,6 +109,18 @@ Description: # Hayward OmniLogic Integration | |
|14|Show-USA| | ||
|15|Show-Mardi Gras| | ||
|16|Show-Cool Cabaret| | ||
|17|YELLOW| | ||
|18|ORANGE| | ||
|19|GOLD| | ||
|20|MINT| | ||
|21|TEAL| | ||
|22|BURNT_ORANGE| | ||
|23|PURE_WHITE| | ||
|24|CRISP_WHITE| | ||
|25|WARM_WHITE| | ||
|26|BRIGHT_YELLOW| | ||
|
||
Note that show 17-26 may not be supported by all ColorLogic Light Systems. | ||
|
||
### set_lightshowv2(APIClient, MspSystemID, PoolID, LightID, ShowID, Speed, Brightness) | ||
|
||
|
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
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 |
---|---|---|
|
@@ -6,15 +6,15 @@ | |
setup( | ||
name = 'omnilogic', | ||
packages = ['omnilogic'], | ||
version = '0.4.2', | ||
version = '0.4.3', | ||
license='apache-2.0', | ||
description = 'Integration for the Hayward OmniLogic pool control system', | ||
long_description = long_description, | ||
long_description_content_type = "text/markdown", | ||
author = 'Tim Empringham', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/djtimca/omnilogic-api', | ||
download_url = 'https://github.com/djtimca/omnilogic-api/archive/v_042.tar.gz', | ||
download_url = 'https://github.com/djtimca/omnilogic-api/archive/v_043.tar.gz', | ||
keywords = ['OmniLogic', 'Hayward', 'Pool', 'Spa'], | ||
install_requires=[ | ||
'xmltodict', | ||
|