Skip to content

Commit

Permalink
Merge pull request #13 from djtimca/develop
Browse files Browse the repository at this point in the history
Updated url endpoint to fix certificate error.
  • Loading branch information
djtimca authored Mar 24, 2021
2 parents 783acc7 + 95b177a commit 8f8e157
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
16 changes: 14 additions & 2 deletions omnilogic.egg-info/PKG-INFO
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: tim.empringham@live.ca
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.

Expand Down Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion omnilogic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# import config
import aiohttp

HAYWARD_API_URL = "https://app1.haywardomnilogic.com/HAAPI/HomeAutomation/API.ashx"
HAYWARD_API_URL = "https://www.haywardomnilogic.com/HAAPI/HomeAutomation/API.ashx"

_LOGGER = logging.getLogger("omnilogic")

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 'tim.empringham@live.ca',
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',
Expand Down

0 comments on commit 8f8e157

Please sign in to comment.