An Ardunio Based Defect Detector Simulator

Introduction

Defect detectors are one of the technologies that allowed the prototype railroads to virtually eliminate the use of cabooses on trains. The purpose of a defect detector is to stand gaurd along the right of way and monitor passing trains for defects. Defect detectors may watch for one or more of the following conditions (this may not be an exhaustive list):

Most modern defect detectors are of the talking type. This means they broadcast a message over radio indicating whether or not there is a defect detected.

This page describes a simulator of a defect detector which can be used on a model railroad. The defect detector we are modeling will broadcast messages to a speaker, or, optionally, to an FRS style radio operating in voice activated mode

The Arduino

The Arduino is an open source microcontroller platform which is very handy for prototyping systems. The Arduino platform includes a nice integrated development environment which can be used to build applications and upload those applications to an Arduino development board. More information on arduino can be found at http://www.arduino.cc.

The VoiceBox

This project makes use of speach synthesizer chip called a SpeakJet.

For use with our Arduino hardware, we utilize the SparkFun Electronics Voicebox Shield. In the Arduino world, a shield is a pluggable board that can be connected to the arduino itself using a set of headers. By utilizing the VoiceBox Shield, we can build the project without having to think about the circuit which generates the voice. All we need to do is solder a few headers in place.

Detection

We only want our detector to trigger when a train is present. To make this happen we need to have some form of detection available to us.

Version 1 - Active High inputs

In my initial development, I used a simple optical detector constructed with a phototransistor, as shown in the diagram below.

Arduino Phototransistor Input - Active High

Version 2 - Active Low inputs

Ultimatly, My intention is to use the circuit with current sensing detectors. These may also be augmented with current optical detectors. The current sensing detectors I have available to me (Mostly NCE BD20s) are all active low devices. This means they connect the input on the Arduino to a ground, instead of connecting the Arduino input to +5vdc. In order to utilize these, we need to slightly adjust our phototransisotr arangement. The same components are used, they are just connected in a different order, as shown below

Arduino Phototransistor Input - Active Low

The Completed Defect Detector

The completed detector is shown below.

The completed Arduino based hotbox detector

The breadboard on the right hand side of the image holds the two phototransistors and a 3.5mm audio jack. The cable leading off the right edge goes to a pair of headphones I am using for testing.

Except for the phototransistor, the optical detector circuit is connstructed on the voicebox shield itself.

Hardware Construction

Populating the VoiceBox Shield

We start with a VoiceBox shield as it arrives from Sparkfun:

The VoiceBox shield, as it arrives from Sparkfun Electronics

and a set of connectors:

Connectors used on the VoiceBox shield

The top row of connectors are a Arduino Stackable headers. You may substitute 0.1 inch spacing breakaway headers for these if you do not want to use the headers for off board connections. The single connector on the bottom row is a 0.1 inch spacing 2 pin right angle header for the speaker. You may substitute wires directly to the speaker if you prefer.

The first step is to solder the speaker connections to the voicebox shield

Speaker connection attached

Next, we solder the headers on to the shield. When doing this, I recommend starting by only soldering one pin on each end of the header. Having only one pin soldered allows you to test fit the mounting on the Arduino, and adjust the alignment of the headers as necessary. Once you are satisfied with the alignment, solder the rest of the pins of each of the 4 headers.

headers connected (bottom of shield)

headers connected (side of shield)

Once the headers are soldered, you can connect a speaker, program your Arduino. and test your build. I have provided images of two possible speaker arangements below

Speaker attached, ready for testing

Installed in a Sparkfun Arduino project box.  The connector on the side is a 3.5mm mono headphone jack, for output to an FRS radio.

Testing at this point should result in the hotbox detector randomly going through the opening and closing message sequences. This behavior will change when we connect inputs to the detector

Inputs

Current Detection

I am utilizing an NCE BD20 for current detection. The BD20 needs three wires connected to it to work with our circuit. I have connected a red wire to the +5VDC terminal, a black wire to the Ground terminal, and a green wire to the logical output terminal.

An NCE BD20.  The red wire connects to +5VDC on the Arduino.  The black wire is connected to a ground connection on the Arduino, and the green wire is connected to one of pins 6 or 7.

Connect the red wire to the Arduino +5VDC terminal, connect the black wire to ground, and connect the green wire to either pin 6 or pin 7. To enable speed reports, connect the other pin to the second detector.

All of the wires from the NCE BD20s connected to the Arduino. The red wires connect to +5VDC on the Arduino.  The black wires are connected to a ground connection on the Arduino, and the green wires are connected to pins 6 and 7.

All of the wires from the NCE BD20s connected to the Arduino The red wires connect to +5VDC on the Arduino.  The black wires are connected to a ground connection on the Arduino, and the green wires are connected to pins 6 and 7.

Optical Detection

The diagrams for two optical detection circuits have been outlined above. The components required for both are shown below. NOTE: the components shown are for two optical detectors, except there is one missing resistor (I ran out of 470K Ohm resistors for the photo).

Optical Detector Components

Start by soldering the 4 pin header into position. I recommend soldering it near the digital input pins.

choose one of the pins in each pair to solder the resistor next too. When completed, the top of the board should look something like this

Components soldered to Voicebox Shield.  (Top).

On the connector side of the resistors, create a solder bridge between the solder pads for the connector and the ones for the resistor.

Connect these combined pads to the inputs (pin 6 for one and pin 7 for the other).

Connect the oposite end of the resistors to ground.

Connect the two remaining pins on the connector to +5VDC

When finished, the board should look something like the following

Components soldered to Voicebox Shield (bottom)

NOTE: To switch from active high to active low, reverse the ground and +5VDC connections. The board above was originally wired this way, but has since had the black and red wires switched at the arduino pins (so black is +5VDC and red is ground in the photo above).

The only remaining task is to connect the phototransistors to the input circuit. Remember these are polorized components, so if they don't work in the first time, try reversing the two leads that go to the device.

Dissabling Speed Reports

If you do not need speed reports, connect pin 7 or 6 (whichever one does not have the a detector connected to it) to the arduino 3.3V terminal. This last connection will force the arduino to see the input as high. (NOTE:If you are using active high detectors, this pin should be grounded instead).

Single input bypass wire installed.

Software (Version 1)

The Version 1 Software I have written represents a modern defect detector. It has the following behavior

The milepost number can be changed with a variable in a header file.

If the speed is reported, it is calculated using the difference in trigger times between the first and second inputs. The speed calculation assumes the input sensors are spaced 80 scale feet apart.

A software download for active high sensor inputs is available here

A software download for active low sensor inputs is available here

Example Output

I have also posted a youtube video showing the device in operation on a test track:


This page has been created and maintained with pico and vi. Please address corrections and comments to paul.bender@acm.org