Skip to main content

No project description provided

Project description

Sightlines

Sightlines is a framework for using a Novation Launchpad as an information display and control panel for general computing tasks.

Sightlines is made possible by the launchpad.py library, written by @FMMT666.

Quick Start

  • Install Sightlines: pip install git+ssh://git@github.com/jarpy/sightlines
  • Run a sample app: sightlines-rainbow

Writing an App (WIP)

Cell

Grid

Individual cells are not much fun. The Grid class collect all the cells in the main 8x8 grid of the launchpad together. You can then look up cells in various ways.

Linear Addressing

All the grid cells are available for lookup by linear index. They are numbered 0 to 63, starting top-left and proceeding left-to right, then top to bottom (revealing the cultural bias of the author).

grid = Grid()
top_left_cell = grid[0]
bottom_right_cell = grid[63]

Cartesian Addressing

You can use x/y coordinates to get a cell in a more spatial way.

grid = Grid()
top_left_cell = grid[0, 0]
bottom_right_cell = grid[7, 7]

Slicing

Finally, you can use Python's slicing syntax.

grid = Grid()
second_row = grid[8:15]

CellRunner

As a rule, information displays periodically gather some data and then update the display output with what they learned. Sightlines encapsulates this behaviour in the CellRunner class. A CellRunner takes a collection of cells, and a function. It then periodically calls the function and does whatever is in it, generally setting the color of the cells.

def be_green(cells):
    for cell in cells:
        cell.set_rgb(0, 127, 0)

CellRunner()

Cell Functions

When you press a cell on the Launchpad, it can do... stuff.

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

sightlines-0.3.0.tar.gz (9.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sightlines-0.3.0-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file sightlines-0.3.0.tar.gz.

File metadata

  • Download URL: sightlines-0.3.0.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.8 Darwin/22.3.0

File hashes

Hashes for sightlines-0.3.0.tar.gz
Algorithm Hash digest
SHA256 80ce9a5e3b23fcb88b561b3624fa0d5cd00b0b801202ac97c0088178b351b628
MD5 ef0502d5c5d92d3f3910553de4ce016a
BLAKE2b-256 79f6845320098a48a7f1a51f71c0c2fbbedfa8fb4002cded3ef6ac112063c03c

See more details on using hashes here.

File details

Details for the file sightlines-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: sightlines-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.8 Darwin/22.3.0

File hashes

Hashes for sightlines-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 91c324e21577f0183c8e59e261f3ce3298323a4854aed7fe6420cc8027811d84
MD5 78051c789e4a14d9018c12ed32e1e3b3
BLAKE2b-256 044cc8bb27b0e452b0629ed99217c3f4456301ccea3e6325efbbac6b2a1c9ac9

See more details on using hashes here.

Supported by

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