Device::ISY perl library Code
Perl llibrary for interacting with UDI ISY controlers
Status: Beta
Brought to you by:
jchonig
Until this is set up as a proper CPAN module do the following:
Install it in some dir, such as /usr/local:
cd /usr/local
sudo tar xf $PATH_TO_TARBALL
And then use this script called isy_util linked to isy_rest:
-----
#!/bin/sh
LIBDIR=/usr/local/isyutil/Device-ISY/lib
BINDIR=/usr/local/isyutil/Device-ISY/bin
DEBUG=
if [ "$1" = "-d" ]; then
DEBUG="-d"
shift
fi
exec perl ${DEBUG} -I${LIBDIR} ${BINDIR}/$(basename $0) "${@}"
-----