Skip to content

A card for displaying the status of National Rail trains in the style of the matrix screens on station platforms

License

Notifications You must be signed in to change notification settings

ChevronTango/nationalrail-status-card

Repository files navigation

Lovelace Nationalrail Status Card

A status card for Home Assistant Lovelace UI for showing the current status of trains running from a station.

The card works with entities from within the sensor domain and is intended to be used with entities from the National Rail API Integration.

Preview

Install

HACS (recommended)

This card is not yet available in HACS (Home Assistant Community Store) directly but can still be added manually. HACS is a third party community store and is not included in Home Assistant out of the box.

  1. Open HACS and navigate to Custom Repositories.

  2. Select Dashboard as the Type and enter https://github.com/ChevronTango/nationalrail-status-card as the repository. Save and refresh.

  3. Find Nationalrail Status Card in the HACS store and select install.

Manual install

  1. Download and copy nationalrail-status-card.js from the latest release into your config/www directory.

  2. Add the resource reference as decribed below.

CLI install

  1. Move into your config/www directory.

  2. Grab nationalrail-status-card.js:

$ wget https://github.com/ChevronTango/ha-nationalrail-status-card/releases/download/v0.0.1/nationalrail-status-card.js
  1. Add the resource reference as decribed below.

Add resource reference

If you configure Lovelace via YAML, add a reference to nationalrail-status-card.js inside your configuration.yaml:

resources:
  - url: /local/nationalrail-status-card.js?v=0.0.1
    type: module

Else, if you prefer the graphical editor, use the menu to add the resource:

  1. Make sure, advanced mode is enabled in your user profile (click on your user name to get there)
  2. Navigate to Configuration -> Lovelace Dashboards -> Resources Tab. Hit orange (+) icon
  3. Enter URL /local/nationalrail-status-card.js and select type "JavaScript Module". (Use /hacsfiles/nationalrail-status-card/nationalrail-status-card.js and select "JavaScript Module" for HACS install)
  4. Restart Home Assistant.

Using the card

  1. Install the National Rail API Integration.

  2. Add a new device from the National Rail API Integration with a source and destination station. Only trains with a direct connection from the source to the destination will appear. Trains that require an interchange will not display.

  3. In your dashboard add a New Card and select the National Rail Status Card.

  4. Select the entity for your station and destination, and optionally choose the number of trains to display. Click Save.

Options

Card options

Name Type Default Since Description
type (required) string v0.0.1 custom:nationalrail-status-card.
entity (required) string v0.0.1 The entity being monitored
limit (optional) number v0.0.1 The maximum number of trains to show at once. If absent then defaults to the API default.

Development

  1. Clone this repository into your config/www folder using git:
$ git clone https://github.com/ChevronTango/ha-nationalrail-status-card.git
  1. Add a reference to the card in your ui-lovelace.yaml:
resources:
  - url: /local/nationalrail-status-card/dist/nationalrail-status-card.js
    type: module

Instructions

Requires nodejs & npm.

  1. Move into the nationalrail-status-card repo, checkout the dev branch & install dependencies:
$ cd nationalrail-status-card && git checkout dev && npm install
  1. Make changes to the source code.

  2. Build the source by running:

$ npm run build
  1. Refresh the browser to see changes.

    Make sure cache is cleared or disabled.

  2. (Optional) Watch the source and automatically rebuild on save:

$ npm run watch

The new nationalrail-status-card.js will be build and ready inside /dist.

Note that the dev branch is the most up-to-date and matches our beta releases.

Please refer to the Contribution Guidelines if you're interested in contributing to the project. (And thanks for considering!)

Getting errors?

Make sure you have javascript_version: latest in your configuration.yaml under frontend:.

Make sure you have the latest versions of nationalrail-status-card.js & nationalrail-status-lib.js.

If you have issues after updating the card, try clearing your browser cache.

If you have issues displaying the card in older browsers, try changing type: module to type: js at the card reference in ui-lovelace.yaml.

License

This project is under the MIT license.

About

A card for displaying the status of National Rail trains in the style of the matrix screens on station platforms

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published