This is a simple Python library to talk to a Konnected device. Konnected is an open-source software for ESP8266 devices that enables simple wired binary sensors and actuators to talk to home automation frameworks such as Home Assistant and SmartThings. The most popular use case for Konnected is to connected a wired home alarm system to your Smart Home hub.
This library was written to support Home Assistant integration.
For more information see konnected.io
import aiohttp
import asyncio
import konnected
async def fetch(session, url):
async with session.get(url) as response:
return await response.text()
async def main():
async with aiohttp.ClientSession() as session:
k = konnected.Client('192.168.86.10', '17000', session)
# Sync settings to the device
print(await k.put_settings(sensors=[{"pin":1}], actuators=[], auth_token='secureToken', endpoint='http://example.com'))
# True
# Get status of each input pin
print(await k.get_device())
# [{'state': 0, 'pin': 1}, {'state': 1, 'pin': 2}]
# Get status of a single input pin
print(await k.get_device(2))
# [{'state': 1, 'pin': 2}]
# Actuate an output pin
print(await k.put_device(pin=8, state=1))
# {'state': 1, 'pin': 8}
# Get status of each input zone
print(await k.get_zone())
# [{'state': 0, 'zone': 1}, {'state': 1, 'zone': 2}]
# Get status of a single input zone
print(await k.get_zone(2))
# [{'state': 1, 'zone': 2}]
# Actuate an output zone
print(await k.put_zone(zone=8, state=1))
# {'state': 1, 'zone': 8}
# Get device status
await k.get_status()
# {'mac': '2c:3a:e8:43:8a:38', 'gw': '192.168.86.1', 'hwVersion': '2.0.5', 'rssi': -31, 'nm': '255.255.255.0', 'ip': '192.168.86.10', 'actuators': [{'trigger': 1, 'pin': 8}], 'port': 12426, 'uptime': 2349, 'heap': 23904, 'swVersion': '2.1.3', 'sensors': [{'state': 0, 'pin': 1}]}
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
This library was designed to work with Python 3.5 and above.