/Projects/Dual Channel Inductive Loop Vehicle Detector

This project is a revisit of my single channel loop detector from 3 years ago and it comes with some cool new features.

There are two PCB versions available, one is a standalone version (PCB v1.2) with DIPs and relays on board and another one is a digital version (PCB v1.3) without DIPs and relays where it requires PC or another microcontroller system to be connected in order to configure the operating parameters. Here we will be focusing on the standalone version.

UPDATE 2019-12-11: New, unpublished version available on Tindie.

Buy it on Tindie

UPDATE 2018-03-19: Pre-programmed PICs are available for purchase here.

UPDATE 2017-09-25: PCBs are available for DIY assembly:
- PCB v1.2 (standalone version) is available for purchase here, BOM and assembly instructions are also here.
- PCB v1.3 (digital version) is available for purchase here, BOM and assembly instructions are also here.

Dual channel inductive vehicle detector - standalone
DLD PCB v1.2 (standalone version)

Dual channel inductive vehicle detector - digital
DLD PCB v1.3 (digital version)

Specifications

  • Number of operating modes: 4
  • Tuning: Automatic
  • Detection type: Presence/Pulse
  • Presence time: Adjustable in 3 steps
  • Pulse duration: 250 ms / 500 ms
  • Signal filtering: Adjustable in 2 steps (NORMAL, HIGH)
  • Loop inductance: 20 uH – 1000 uH
  • Frequency range: 20 kHz – 145 kHz
  • Frequency selection: 2 combinations (LOW, HIGH)
  • Sensitivity: Maximum 0.0025\% Δf/f, adjustable in 8 steps
  • Detection speed: 10 ms by default, adjustable
  • Start-up time: ~ 1 second per channel (or longer if frequency is not stable)
  • Power supply: 12-40 V DC / 9-28 V AC (only for standalone version)
  • Current consumption: ~ 0.035 A
  • Temperature range: -35°C – 120°C
  • Sensor protection: Galvanic isolation + gas discharge tube for lightning protection
  • Dimensions: 8,5cm x 7cm

User Manuals and PC Configurator software source code
All user manuals are available for download in the ZIP archive (the red download button under the article). However, here is also a direct link for the user manual for PCB v1.2, FW v1 on this link (PDF), and for PCB v1.3, FW v1 here (PDF).
PC Configurator user manual is here (PDF) and source code is on GitHub here.

Modes of operation

  • Single Channel (only A)
  • Dual Channel Independent A & B
  • Dual Channel Directional Logic A + B
  • Speed Trap A + B

Dual channel inductive vehicle detector
Pinout of electronics for PCB v1.2

Hardware
Hardware differs from previous version in many ways but the essence is the same - it counts pulses coming into RA4/T0CKI pin and performs the same filtering and calculations in order to detect the change in frequency of oscillation. This time, it does that twice for both channels independently.
There were two possibilities on how to implement dual channel loop detector and one of them (and unfortunately widely used) is by using two independent oscillators on board while having them enabled/disabled one at a time in order to read loop A and loop B frequency. The other method is by multiplexing two (or more) loops on one single oscillator on board. I have chosen the second method because it just seams better to have one oscillator and two loops instead of two oscillators each connected to one loop.

Dual channel inductive vehicle detector oscillator
Oscillator without connected loops

It was quite tricky to enable/disable a loop in an oscillator so in the end I had to offset the multiplexer circuit to half of supply voltage (Vcc/2) and opted to use simple PNP transistors connected in parallel but in opposite direction so that one conducts positive half-wave and the other one negative half-wave of the oscillator signal. I first tried using CD4066 but with no luck.

Dual channel inductive vehicle detector multiplexer
Multiplexer

Offsetting voltage to Vcc/2 is done with TL431 2.5V precision reference voltage regulator, as it was extremely important to have a stable reference. Zener diode also works here but it does not have the required temperature stability so it was out of the question. Since now I had a way of connecting/disconnecting loops to the oscillator I decided to put an additional multiplexer for each channel to provide a way of choosing an alternative oscillator frequency. This was done by adding another winding/coil to primary of the transformer (the side that is connected to the oscillator).

Dual channel inductive vehicle detector multiplexer
Choosing alternative frequency

This way instead of having an additional capacitor + switching transistor in the oscillator we have an additional winding/coil in the isolation transformer + an additional multiplexing circuit. I actually copied this idea from some other high quality loop detector before and decided to do the same here. It would be a small change in firmware and hardware in case it is required to go back to the more conventional way of changing the oscillation frequency with an additional capacitor(s).
Since our oscillator signal is now offsetted to Vcc/2 I had to use a comparator circuit to decide when sine wave is positive (>Vcc/2) and when it is negative (<Vcc/2) in reference to our "floating ground" which is at Vcc/2.

Dual channel inductive vehicle detector sinewave
Sinewave signal

First I decided to reduce the part count by using PIC's internal comparator circuit to perform the job of deciding when signal crosses the "zero" point (Vcc/2), and this is where I originally made a bad decision. It actually worked fine until I increased the sensitivity setting of the device, then it started to behave strange. I simply could not get a stable reading from the frequency counter, sometimes it was off by ~1 Hz and sometimes even more. Since ~1 Hz was too much for me to ignore I had to track down the problem. After hitting my head on the desk for a long long time I figured out that it was the PIC's internal comparator and also unstable Vcc/2 "floating ground" rail. It would seem that the comparator was not making its decision correctly every single time. This was due to fluctuations of the comparators power supply which is unfortunately connected to the same point as PIC's Vcc. Even turning on a simple LED connected to microcontroller's pin the comparator would make a decision few microseconds off. This was driving me crazy so I re-designed the device to use external comparator LM211 where I could filter its supply rail and somehow isolate Vcc of microcontroller and Vcc of comparator. This was done by using two capacitors and a 10uH inductor. Now this little filter makes all that difference and is a very important part of the device. I also added capacitors to make Vcc/2 "floating ground" more stable.
For same filtering reasons I added LM78M05 stabilizer to increase the Vcc rail stability because relays make a proper power draw when they turn on. These are now powered directly from a step-down converter that steps down from any input voltage to some +10V and then everything else digital is powered from the LM78M05.
Note: I could have probably done it without this many capacitors in the device, but I didn't want to risk it. Also, it is quite possible that I haven't properly stabilized the Vcc/2 rail with capacitors during testing with internal comparator, so it is possible that internal comparator could actually do the job. But since the firmware must be a bit different for internal comparator version, I will not be trying that option any time soon (or ever, for this project).

Dual channel inductive vehicle detector filter
Filtering Vcc for comparator and oscillator

Finally, simply connecting the output of comparator to RA4/T0CKI pin of microcontroller was not possible since by adding pull-up resistor to output we would introduce all those voltage stability issues that we avoided so I had to put another NPN transistor just to once again separate Vcc of comparator from Vcc of PIC. Ideally an opto-coupler could be used here, but NPN transistor is smaller and cheaper and works just as well.
Aside from multiplexing two loops, there are also two buttons, two DIPs and two bar-graphs to control. These are also multiplexed at the same rate as the two loops with two NPN transistors on board. Multiplexing DIPs and buttons can't be done without diodes at each input so I had to use them. Interesting thing about the diodes connected to DIPs is that I could not find a diode array to use and I simply did not want to put 16 diodes on my PCB (for obvious reasons - 16 diodes!), so I opted to use SRV05-4 SOT23-6 Low Capacitance TVS and Diode Array in a way they were probably not designed to be used in. I use these devices just as a diode array where they do not perform any TVS protection and this saved a lot of PCB space. Alternative was to connect 16 diodes on the bottom side of PCB but that would be ridiculous and also harder to manufacture. This way all components are only on the top PCB side.

Dual channel inductive vehicle detector TVS diode array
Dual channel inductive vehicle detector TVS diode array
DIPs and their diode arrays

Transformers used in this device are repurposed ADSL DELTA (RM-5) Band Stop transformers, rewound manually to roughly 1:1 with a "tap" in secondary. This tap is for the alternative frequency selection that I was talking about earlier. Inductance of transformer is therefore anywhere around 3.6mH for primary, 3.6mH for secondary and 3.55mH for secondary at "tapped" output. The inductance is really not cricital. You can see how transformer is made in the video bellow.


Making isolation transformers

Important differences between standalone (PCB v1.2) and digital version (PCB v1.3) are:

  • Digital version does not have step down converter - it only has LM78M05. Therefore, digital version can only be connected to +7...+14V or even +5V directly (there is a jumper to bypass the LM78M05).
  • Digital version does not have bar-graphs, DIPs nor buttons.
  • Digital version does not have relays on board, but has isolated outputs instead (NPN opto-couplers).
  • Digital version has an isolated UART port where it is possible to connect external microcontroller device operating at difference voltage levels.

Speed Trap
The most interesting mode of operation (for me, at least) is Speed Trap. The device is able to measure speed of passing vehicles in both directions, and when configured properly it can do so with little error. It can (theoretically at least) perform as requested by this document http://www.ukroads.org/webfiles/tr2512a.pdf regarding the speed measurement errors.
It could, for example, be used in combination with another microcontroller device to display vehicle speeds on big LED displays or even standalone to trigger a camera to take a shot when vehicle exceeds configured speed limit.
The maximum time measurement error is supposed to be 2*sampling speed. The measurement method works this way: Two loops are multiplexed (multiplexing period is of duration of one sampling speed/period). When a vehicle triggers any of two loops, the multiplexing process stops and device waits for vehicle to exit the first loop. Upon exiting the first loop device starts time measurement and here we need to take into consideration that vehicle most probably did not exit exactly at the end of current sampling period, therefore we accumulate error as a duration of one sampling period. Now device disables that first loop and enables second loop to expect the vehicle to enter and leave the second loop. Once it leaves the second loop the process is complete and we have our measurement. Also we need to take into consideration that vehicle probably did not exit second loop at the end of sampling period so we need to accumulate one more sampling period to our error.
Influence of these accumulated errors to final measured speed is displayed in PC Configurator Software for each chosen sampling speed and loop distances. This way user can configure the device to achieve the requirements for maximum allowed measurement error.

Firmware
Firmware has been almost completely rewritten in order to provide reading and processing of two (or more) loops. Here I am saying "or more loops" because the device can be extended to more than two loops quite easily. Because of many new features I had to switch to different microcontroller, this time to PIC16F1939 because this one is the best one my current compiler (HI-TECH C) can compile the code for. I am also thinking about porting the code to some PIC18F microcontroller and implementing a bootloader to provide firmware updates in case new features are added or bugs are found later on.
If you have not already read how the firmware of previous version work, it would be best to do it here. This dual channel version works basically the same with some logical and obvious changes that had to be incorporated to support two channels and multiplexing of user-interface (bar-graph, buttons and DIPs). So old features will not be described here again, we can just focus on new stuff.

Detect Stop feature is a feature where it is possible to energize a relay or call a detection only when (and if) vehicle has completely stopped over the loop. This means that passing vehicles over the loop would not be detected, only those that come to a complete stop would.

Positive Frequency Drift Compensation feature (or Drift Compensation During Detection) is a feature where device will re-adjust itself to new baseline even during vehicle detection. This can be a tricky thing that could potentially cause a stuck-detection if configured poorly. This comes in handy for vehicles that park over the loop for longer periods of time. This method will start tracking the baseline (drift) when vehicle has been detected as completely stopped over the loop. Once the "no-movement" threshold is crossed it will pause the compensation and resume if the vehicle remains detected and stops moving again. Causing the stuck detection can be done when a metalic object (usually not a vehicle because it is bulky and is not able to make that small change) is first detected, stopped, and then very slowly moved away from the detection zone. This would make the detector believe that metalic object has actually not moved away, but instead that it was just a frequency drift. Luckily vehicles can not perform this small change even when moving very slowly so this should not be a problem in real-life usage.

Smart PPC recalibration feature is actually a re-implementation of how permanent presence canceller operates once vehicle has left the loop. It will detect when there is absolutely no movement once the vehicle has left the loop in order to recalibrate itself.

Fail Safe feature is an option to energize relays upon device startup until first detection occurs. This should prevent barriers from closing down on vehicles in case there was a power outage while the barrier was "up".

Reset To Factory Defaults feature is a feature where after poking around the PC software and re-configuring the device to some faulty values it is possible to restart it to default factory operating conditions. This can be done by holding both sensitivity-change buttons and restarting the device.

DIP switches
DIP switches have different meaning for each operating mode, and these are explained in the user manual which is available for download bellow (the red download button under the article).

PC Configurator Software
In this software it is possible to customize the device by configuring every operating parameter it contains. It is also possible to view detection and speeding events and view magnetic signatures of passing vehicles and store them as files for further analysis.

PC Configurator Software

PC Configurator Software is explained in detail in dedicated "pc configurator user manual" file which can also be downloaded by pressing the red download button under the article.
In that same file there is a detailed  description of UART protocol that device uses which will come in handy when device is to be connected to another microcontroller system especially for digital version (PCB v1.3).

Important notice
Major difference in sharing this version of project and the previos one is that firmware is currently not available for download, but I can send you preprogrammed microcontroller for the cost of only microcontroller + shipping (or you can even send me your microcontroller(s) and I will send them back programmed). Sorry about this, but I had a few situations with sharing firmware of the previous version - some people did not respect the agreement that I put with the firmware and I strongly believe that they are manufacturing it and selling copies of the device which was not permitted. Other files can be downloaded by clicking the red download button under the article, and hopefully the firmware will be soon available for download.

Assembly
Part placement diagram, bill of materials and stencil Gerber files are in ZIP archive available for download by clicking on the red download button under the article.


Assembly of PCB v1.3 - digital version

Author (sent by): Trax

Download counter: 1,130

Rating: (3.22, votes 1381)

Vote:

Date: 01-09-2017

Lokalna verzija ove stranice: Dvokanalna induktivna petlja za detekciju vozila

868_dual_loop_detector.zip

Bookmark and Share Comments (24)

comment [24]

Hi Albino, transformer wire and number of turns depend on the transformer core. The transformer is not critical as you can see from the video above. I cannot give you any details on how to make it except the video I posted above.
IP: 89.146.169.112

comment [23]

Do you have the transformer parameters? how many turns and what wire size?
IP: 201.95.127.88

comment [22]

Please, email me as soon as possible.
IP: 181.166.133.142

comment [21]

Yes, you can get one assembled and tested at: https://www.tindie.com/products/elektronika_ba/dual-channel-inductive-loop-vehicle-detector/ Wire loop is not included, but to make one all you need is a piece of wire. Please consult Youtube for inductive loop wire installation.
IP: n/a

comment [20]

Can we gate complete assembeled and tested board ,along with coil details?
IP: 203.192.238.194

comment [19]

Oh I see you already sent me an e-mail :-)
IP: n/a

comment [18]

@Nour: Sure, me an e-mail to (trax at elektronika.ba) so we can get in touch.
IP: n/a

comment [17]

Hi, Is there any way I could get a fully assembled & tested board v1.3? I need 2 of it. many thanks
IP: 138.201.205.167

comment [16]

I have a couple of these assembled... send me an email: trax at elektronika.ba and we can talk.
IP: n/a

comment [15]

Can I buy one of these pre-assembled?
IP: 138.201.205.167


Comment page: 123>


add comment

name

e-mail (will not be published)

website

How much is = also add letter "a" at the end of your result! Eg.: 7a

Please log-in!

You can log-in on forum link: Login page. After logging-in, return to this page and click refresh in your browser.

site friends

sponsored links

ads