Skip to main content

HTTP server for Metlink PID

Project description

latest release on PyPI

The metlinkpid-http script provides an HTTP endpoint for a Metlink LED passenger information display:

$ metlinkpid-http --serial=/dev/ttyUSB0
Serving on http://127.0.0.1:8080

$ curl 'http://127.0.0.1:8080?12:34+FUNKYTOWN~5|Limited+Express|_Stops+all+stations+except+East+Richard'
{"error":null,"message":"12:34 FUNKYTOWN~5|Limited Express|_Stops all stations except East Richard"}

Installation

Install from PyPI using pip:

pip install metlinkpid-http

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.

Start the HTTP server

Run the script passing that device location as the --serial option:

$ metlinkpid-http --serial=/dev/tty/USB0

The script accepts the following options:

--serial=PORT

The PID serial device name, such as /dev/ttyUSB0 on Linux or COM1 on Windows. If not specified, defaults to the value of environment variable METLINKPID_SERIAL; if no such variable, defaults to /dev/ttyUSB0.

--http=HOST:PORT

The hostname/IP address and port to listen on, separated by a colon (:). If not specified, defaults to the value of environment variable METLINKPID_HTTP; if no such variable, defaults to 127.0.0.1:8080.

-h or --help

Displays usage information similar to above, and provides a link to this documentation.

If the PID successfully connects, the URL is confirmed:

Serving on http://127.0.0.1:8080

Display a message

Next, browse to the specified URL in a browser, adding an appropriately encoded query string to the end:

http://127.0.0.1:8080?MY+MESSAGE

You should see a plain-text JSON result similar to this:

{"error":null,"message":"MY MESSAGE"}

The same result can be obtained on the terminal using curl:

$ curl 'http://127.0.0.1:8080?MY+MESSAGE'
{"error":null,"message":"MY MESSAGE"}

You could do the same thing in Python like this, using the “requests” library:

>>> import requests
>>> requests.get('http://127.0.0.1:8080?MY+MESSAGE').json()
{'error': None, 'message': 'MY MESSAGE'}

By exposing the display via HTTP in this way, you can operate it using almost any programming language or toolkit.

See the “metlinkpid” module documentation for full details about message formatting.

The HTTP server also periodically pings the display in the background, preventing message display timeout.

Support

Bug reports, feature requests, and questions are welcome via the issue tracker.

Issue tracker:

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

Contribute

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

GitHub repository:

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

License

This project is licensed under the MIT License.

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

metlinkpid-http-1.0.0.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

metlinkpid_http-1.0.0-py3-none-any.whl (5.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