Skip to main content

A library for controlling a LiteJet lighting system.

Project description

This project provides a pure Python3 library for interfacing with the LiteJet lighting system.

Setup

  1. You will need the LiteJet programming software from the Dragon Technologies Programming page.
  2. Your LiteJet MCP should be configured for 19.2 K baud.
    1. For firmware versions 5.00 and higher, this setting is configured using the LiteJet software's Settings screen.
    2. For firmware versions 4.90 and lower, this setting is configured by setting DIP Switch 4 to OFF. Press the RESET button after changing this.
  3. In the LiteJet software's Settings screen configure it to send "Third Party Carriage Return".
  4. In the LiteJet software's Lights screen configure each load to announce changes. This is the "Load RS232" checkbox on each load's middle panel.
  5. Connect the LiteJet's RS232-2 port to your computer.

If you have LiteJet 48 then the RS232-2 port is used to connect the two boards together. So you will need to configure RS232-1 for third party mode by setting DIP Switch 8 to ON and DIP Switch 3 to OFF. Press the RESET button after changing this. (To change RS232-1 back to programming mode, set DIP Switch 8 to OFF.)

Test

  1. List all buttons and loads: python3 ./test.py --path /dev/serial0 list -l -b
  2. Monitor button presses and load changes: python3 ./test.py --path /dev/serial0 monitor
  3. Control a load: python3 ./test.py --path /dev/serial0 load 1 on

Sample

import asyncio
import pylitejet

async def main():
    try:
        lj = await pylitejet.open("/dev/serial0")
    except pylitejet.LiteJetError as exc:
        print(f"Cannot connect: {exc}")
        return

    await lj.activate_load(1) # on

    await lj.deactivate_load(1) # off

    await lj.activate_load_at(1, 50, 8) # 50% over 8 seconds

    await lj.close()

asyncio.run(main())

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

pylitejet-0.6.2.tar.gz (13.0 kB view hashes)

Uploaded Source

Built Distribution

pylitejet-0.6.2-py3-none-any.whl (7.0 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