Devon Orienteering's Timing setup

Last updated: Sat 10 Feb 2024

Devon Orienteering’s timing setup

DEVON uses the SPORTident timing system, supplied by SPORTident UK. Many thanks to SPORTident UK; their SiTiming software is superb for staging events, and they are unfailingly supportive, even during Martin's ambitious misadventures trying new ideas!

Controls

Detailed here

Kites and stakes are bundled in 10’s, with the expected total number clearly visible on their bags/boxes - to encourage counting out and counting back in.

SiAC

The stations are always SiAC-enabled. This gives all event Planners the option of supporting SiAC for their event, without any intervention from Timing volunteers (more effort, and opportunity for mis-communication). This benefit is considered worth the extra battery drain.

The Start is not SiAC-enabled - experience shows this causes confusion among start volunteers.

The Finish is not SiAC-enabled - it is a valuable to be able to check this station for punches in case of a non-downloaded competitor, and contactless punches are not stored on stations.

Download

Specific sections below. Details on using this setup at an event are in DEVON’s SiTiming Guide.

Download: Power

Krisdonia 25000mAh and 50000mAh power banks.

Sold under many names, here’s the site for the mainland Europe version.

Power banks are much safer, smaller and simpler than the traditional 12V battery + inverter setup. However: no mains power influences choice of all other download equipment - see sections below.

The Krisdonias were chosen specifically for their wide array of DC power adapters - can plug into any laptop we use. We don’t need a bank per laptop - laptops can last some time on their own, so we swap power banks around as different laptops get low batteries.

Download: Laptops

We use refurbished laptops, preferably ex-business laptops, which tend to be more reliable. Requirements:

A common Microsoft account between all the laptops, including OneDrive, makes it easier to keep the laptop files and settings aligned with each other.

Thanks to Mike’s Laptops of Exeter for supplying and maintaining our club laptops.

Download: Printers

Unitech SP319

Chosen because power and print jobs both come via the same USB cable.

Tips for optimal performance

Download: Networking

Cable Matters USB ethernet switcher

Ethernet minimises latency, which is important when running download and the database on separate laptops.

We can use Wi-Fi in an emergency - any laptop can create a network using the below script:

@echo off
echo SETTING UP LOCAL WIRELESS NETWORK...
@echo on

netsh wlan set hostednetwork mode<b>=</b>allow ssid<b>=</b>%COMPUTERNAME% key<b>=</b>my-password
netsh wlan start hostednetwork

@echo off
timeout 10
@echo on

Download: Displaying Results

No mains power prevents using an A4 printer or big screens.

Basic results can be printed by the splits printers. We offer full results pages via attendee’s smartphones, with basic tablet computers for those that aren’t carrying phones.

Tablet computers

Kindle Fire or any other budget tablet

As basic as possible - just need Wi-Fi and a web browser. Low power requirements, and can charge from the power banks if needed.

Live results to website (smartphone Wi-Fi hotspot)

Ideally via smartphone hotspot and FTP onto the club website. Attendees get results by visiting the club website on their personal smartphones, or on the tablet computers which access the website via the smartphone hotspot.

Need a website that supports FTP uploads from SiTiming’s HTML Results interface. DEVON’s website is provided by PFweb and includes an effective setup for this.

Live results locally (USB Wi-Fi router)

GL.iNet Mango (GL-MT300N-V2)

For when a smartphone can’t be used (e.g. signal, mobile data limits). Attendees’ personal smartphones and tablets both connect to the router and visit the results webpage - details of both these steps are described in the Live Results appendix of DEVON’s SiTiming Guide.

This router is fantastic. It runs on USB power, has comprehensive documentation, and uses open source software so can be configured as an FTP server that will receive and then display SiTiming’s HTML Results output.

Here’s how we did it:

Router basic setup
Router FTP server configuration
# Guidance: https://linux.die.net/man/5/vsftpd.conf
background=YES
listen=YES
check_shell=NO
anonymous_enable=YES
anon_root=/usr/live-results
write_enable=YES
anon_mkdir_write_enable=YES
anon_other_write_enable=YES
anon_upload_enable=YES
anon_umask=000