Metadata-Version: 2.1
Name: myicomfort
Version: 0.3.0
Summary: API Wrapper for myicomfort.com
Home-page: https://github.com/thevoltagesource/myicomfort
Author: Jacob Southard
Author-email: jacob@thevoltagesource.com
License: UNKNOWN
Description: # PyPI - myicomfort
        ### API Wrapper for www.myicomfort.com
        
        By Jacob Southard (https://github.com/thevoltagesource)  
        Based on the work of Jerome Avondo (https://github.com/ut666)
        
        Read and adjust your Lennox iComfort WiFi thermostat thru the Lennox cloud API
        at www.myicomfort.com. You must have an existing myicomfort account and
        have your iComfort WiFi thermostat configured to work with the cloud service.
        If you can control your thermostat from your iPhone or Android you are ready to
        use this wrapper.
        
        Support has been added for AirEase thermostats.  AirEase is in the Lennox
        family and the interaction is the same, just with a different URL
        (www.mycomfortsync.com). A parameter has been added to the class to select the
        AirEase Cloud API instead of the Lennox Cloud API.
        
        This was created primarly to provide an API for use with
        https://www.home-assistant.io/ but should work on any project you have in mind.
        
        ##### Class:  
        myicomfort.api.Tstat (username, password, system, zone, svc, units)
        
        * username: your myicomfort account username
        * password: your myicomfort account password
        * system: Zero-based index of systems in your myicomfort account (default = 0)
        * zone: Zero-based index of zones for selected system (default = 0)
        * svc: String value to select 'lennox' or 'airease' API (default = 'lennox')
        * units: F = 0, C = 1, Use thermostat setting = 9 (default = 9)
        
        ##### Example:
        ```python
        from myicomfort.api import Tstat
        
        t = Tstat('username', 'password', 0, 0, 'lennox', 0)
        t.current_temperature
        t.set_points((68, 75))
        ```
        
        ##### Notes:
        * This API currently only supports manual mode (no programs) on the thermostat.
        
        ##### Cloud API Response Notes:
        * Pref_Temp_Units: [0='F', 1='C']
        * Operation_Mode: [0='Off', 1='Heat only', 2='Cool only', 3='Heat & Cool']
        * Fan_Mode: [0='Auto', 1='On', 2='Circulate']
        * System_Status: [0='Idle', 1='Heating', 2='Cooling']
        
        ##### Ideas/Future:
        * Support thermostat programs
        * Set Away temps - Research if possible through cloud API
        * Support other states - dehumidify / waiting
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
