Race timer software that works with the AMB P3 protocol over a TCP socket. Collects lap times and displays these in real time (using websockets) on a webpage.
- Run
composer install
(requires composer from getcomposer.org) - Copy
.env.example
to.env
and change settings for your setup (most important one is theP3_HOST
)
php bin\console.php importParticipants "/path/to/your/particpants.csv"
After importing participants start the services in this order:
php bin\console.php capture
(starts the capturing of data)php bin\console.php eventprocessor
(processes captured data into laps and hosts websocket server)composer start
(runs webserver for static page)
Navigate your browser to localhost:9090
.