Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ttroy50/pyephember
Simple monitor script for the EPH Controls Ember heating system
https://github.com/ttroy50/pyephember
eph eph-ember heating home-automation smart-home temperature thermostat
Last synced: 3 months ago
JSON representation
Simple monitor script for the EPH Controls Ember heating system
- Host: GitHub
- URL: https://github.com/ttroy50/pyephember
- Owner: ttroy50
- License: mit
- Created: 2017-09-20T21:00:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-30T07:58:31.000Z (almost 3 years ago)
- Last Synced: 2024-04-29T20:22:04.253Z (9 months ago)
- Topics: eph, eph-ember, heating, home-automation, smart-home, temperature, thermostat
- Language: Python
- Size: 129 KB
- Stars: 11
- Watchers: 15
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
PyEphEmber
========================================PyEphEmber is a Python module implementing an interface to the [EPH Control Systems Ember API](http://emberapp.ephcontrols.com/). It allows a user to interact with their EPH heating system for the purposes of monitoring their heating system. This requires you to
have the EPH Gateway to provide external internet access for your heating system.[![Build Status](https://travis-ci.org/ttroy50/pyephember.svg?branch=master)](https://travis-ci.org/ttroy50/pyephember)
Example basic usage
------------------->>> from pyephember.pyephember import EphEmber
>>> e = EphEmber('[email protected]', 'mypassword')
>>> e.get_zone_temperature("MyZone")API
---The API is a basic HTTPS API returning data in JSON format. For more details see [here](API.md)
Disclaimer: I have no connection with EPH Controls so cannot guarentee that these API calls will always be valid.