Skip to content

Lx/python-metlinkpid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

metlinkpid: Metlink LED passenger information display driver

latest release on PyPI

build & test status

test coverage status

documentation build status on Read the Docs

The metlinkpid module provides a class to operate Metlink LED passenger information displays:

>>> from metlinkpid import PID >>> with PID.for_device('/dev/ttyUSB0') as pid: ... pid.send('12:34 FUNKYTOWN~5_Limited Express|_Stops all stations except East Richard')

It also provides a function to inspect raw display data, both with and without checksumming & packet-framing:

>>> from metlinkpid import inspect >>> inspect(b'x10x02x01x44x00x1Dx00x00x00x4Fx50x45x4Ex0Ax46x4Fx52x20x42x55x53x49x4Ex45x53x53x0Dx8FxDFx10x03') DisplayMessage.from_str('V0^OPEN_FOR BUSINESS') >>> inspect(b'x01x44x00x1Dx00x00x00x53x54x49x4Cx4Cx20x4Fx50x45x4Ex0Ax46x4Fx52x20x42x55x53x49x4Ex45x53x53x0D') DisplayMessage.from_str('V0^STILL OPEN_FOR BUSINESS') >>> inspect(b'x01x50x6F') PingMessage(unspecified_byte=111)

Installation

Install from PyPI using pip:

pip install -U metlinkpid

Basic usage

Find the device

Determine the device to which the display is connected. On Linux, this can be achieved by disconnecting the display from the computer & reconnecting, then inspecting the contents of dmesg output for USB attachment messages:

[    3.010816] usb 1-1.4: FTDI USB Serial Device converter now attached to ttyUSB0

The above output indicates that the display is reachable through /dev/ttyUSB0.

Display a message

Next, write & run a Python script that connects to that device location and calls PID.send():

from metlinkpid import PID
with PID.for_device('/dev/ttyUSB0') as pid:
    pid.send('12:34 FUNKYTOWN~5_Limited Express|_Stops all stations except East Richard')

The PID should display the specified message instantly, but after approximately one minute the display will self-clear.

Keep the message up

To prevent the message from clearing, the display can be pinged at a regular interval:

from time import sleep

from metlinkpid import PID
with PID.for_device('/dev/ttyUSB0') as pid:
    pid.send('12:34 FUNKYTOWN~5_Limited Express|_Stops all stations except East Richard')

    while True:
        sleep(10)
        pid.ping()

Message format

Use the | character to separate pages of a message:

pid.send('V10^FIRST_PAGE|V10^SECOND_PAGE|V10^THIRD_PAGE')

The message in the above send() call has three pages: V10^FIRST_PAGE, V10^SECOND_PAGE, and V10^THIRD_PAGE.

Page format

Everything in a page up to and including the ^ affects the display of the page, and is not included in the output. The letter specifies the animation and can be V for a vertical upwards scroll, H for a horizontal scroll, or N for no animation. The number specifies the delay (in roughly quarter-seconds) after the animation finishes and before the next page (or first page again) is shown.

Text after ~ will be right-aligned on the current line, and text after _ will appear on the next line. Each page in the above example therefore spans two lines.

Some ASCII characters are not available for display, and some "extended" Unicode characters are available. Full details are in the documentation for the Page class.

Known issues

Animation types

Not all known page animation types are implemented yet.

PID class unit testing

Unit tests have not yet been written for the PID class. A suitable serial port mocking interface is yet to be found.

Support

The metlinkpid module is fully documented. All further usage & development details can be found in the documentation. Bug reports, feature requests, and questions are welcome via the issue tracker.

Documentation

https://python-metlinkpid.readthedocs.io

Issue tracker

https://github.com/Lx/python-metlinkpid/issues

Changes

1.0.2

Add optional ignore_response parameter to allow PID response errors to be ignored.

1.0.1

Add support for Python 3.6.

1.0.0

Initial release.

Contribute

Pull requests for both code and documentation improvements are gratefully received and considered.

GitHub repository

https://github.com/Lx/python-metlinkpid

License

This project is licensed under the MIT License.

About

Metlink LED passenger information display driver

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages