Giter VIP home page Giter VIP logo

time-on-screen's Introduction

time-on-screen (work in progress)

This is node.js app to show timer/time on screen for live streaming of the competition. Source of time is github.com/proalvo/canoe-freestyle-timer.
Workflow of software:

  • Connect the software to a usb serial port
  • Recieve time from timer via the usb serial port
  • Display time on web browser.
  • Add display as browser source on OBS Studio or any other streaming software.

This script has two essential files:

  • inedx.js; this provides connection to the USB serialport and provides the tim through websocket connection to a client.
  • home.html; this the client which display the time received by websocket connection. It has also styling of the page.

This has been tested with Windows 10, but nothing prevents it to use with Linux. Windows is using port named as "COMx" and Linux propably something like "/tty/..."

Setup

install serialport cmd (run as an admin?) cd time-on-screen (wherever it is)) npm install serialport npm install express npm install ws

Run

node index.js <port>

List available ports

Currently COM port is hard coded to the index.js which is not working solution as the COM port can change when the timing system is reconnected to the computer.

SerialPort.list().then(ports => {
  ports.forEach(function(port) {
    console.log(port);
    console.log(port.path);
    console.log(port.pnpId);
    console.log(port.manufacturer);
  });
});

time-on-screen's People

Contributors

proalvo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.