Skip to main content

LiteTouch 5000LC

Project description

pylitetouch

Litetouch Integration library for interfacing with Savant SSL-P018 / 5000LC Controllers

Implemented Features:

  • Turn Load on by Load ID
  • Turn Load off by Load ID
  • Set Brightness Level by Load ID
  • Receive LED updates by keypad and button (events to determine if a load associated to the button is turned on or off)
    • Returned as: Event Keypad_Button Status //Example: RLEDU 22_1 1 Keypad 22 button 1 is on.

In Development:

  • Request LED States by Keypad

SAMPLE:

import pylitetouch 
import time

host = '192.168.1.65'
port = 10001

load = 105
lvl = 90
kp = 22
but = 1

def callback(msg, args, state):

    """Show the message are arguments."""

    print(msg, args)



LT = pylitetouch.LiteTouch(host,port,callback)



LT.set_loadlevel(load,lvl)

LT.set_loadon(load)
LT.get_led_states(22,1)
LT.set_loadoff(load)

LT.toggle_switch(22,1)

print('Waiting for Messages')
time.sleep(10.)

print('Close Connection')
LT.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pylitetouch-0.0.9.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

pylitetouch-0.0.9-py3-none-any.whl (17.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page