Python API for Universal Devices ISY994 Insteon controller
Project description
Python library for Universal Devices ISY994 Insteon/ZWave controller hub
This library transforms the XML from the ISY into more pythonic data structures and provides both an object model interface as well as a more procedural/lower interface for commands.
Usage
The ISYController object provides methods to get devices and programs. GetDevice and GetProgram return ISYDevice and ISYProgram objects, respectively, and those objects provide methods to tunr devices on/off, run programs, etc.
from simpleisy import ISYController
isy = ISYController("1.2.3.4", "admin", "password")
dev = isy.GetDevice("Living room lights")
print dev.GetState()
dev.TurnOn()
Output:
Off
You can also use device/program commands more directly if you want by directly calling NodeCommand or ProgramCommand
from simpleisy import ISYController
isy = ISYController("1.2.3.4", "admin", "password")
node_address = "1A 2B 3C"
# Turn on the device
isy.NodeCommand(node_address, "DON")
# Turn off the device
isy.NodeCommand(node_address, "DOF")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file simpleisy-1.0.tar.gz
.
File metadata
- Download URL: simpleisy-1.0.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c348be5a1b6bbdc450d5ab65dd64deb884d3114ea8e98355007c740b94224dd7 |
|
MD5 | 931fc92254c60281da8479f82189f86c |
|
BLAKE2b-256 | ca3bcb9a606f0a7325607c6822a81dad7f1f73b4807d871584ba922f2578810e |