BRX Do-More PLC High-Speed Input Pulse Catch

The High-Speed Input Pulse Catch will set an output that can be seen by the PLC ladder logic scan in response to an input pulse. Inputs that are too fast to reliably be seen by the ladder logic scan time will be seen.
BRX Do-More PLC High-Speed Input Pulse CatchThe BRX Do-More series of programmable logic controllers have built-in high-speed inputs. These inputs can function in Counter, Timer, or Pulse Catch modes. Every CPU will have either 6 or 10 high-speed inputs (HSI) available depending on the model. These inputs can be used for input frequencies from 0 to 250Khz. 250Khz represents 250000 input counts per second that can be coming from devices connected to your PLC like an encoder. Due to the speed of the inputs, they function on the BRX Do-More PLC asynchronous with the PLC scan time.
We will continue looking at the high-speed inputs on our BRX Do-More PLC, by looking at the pulse catch mode. The pulse catch mode will be set up using the Z phase of our incremental encoder. Pulses will be counted using the input directly in the ladder logic and using the pulse catch bit. Comparisons will be made between the two counts and an output will be turned on when different. Let’s get started.

Previously in this BRX series PLC, we have discussed:
System HardwareVideo
Unboxing – Video
Installing the SoftwareVideo
Establishing CommunicationVideo
Firmware Update – Video
Numbering Systems and AddressingVideo
First ProgramVideo
Monitoring and Testing the ProgramVideo
Online Editing and Debug ModeVideo
TimersVideo
CountersVideo
High-Speed IOVideo
Compare InstructionsVideo
Math InstructionsVideo
Program ControlVideo
Shifting InstructionsVideo
Drum InstructionVideo
Serial Communication – Modbus RTU to Solo Process Temperature ControllerVideo
Data LoggingVideo
Email – Text SMS Messaging GmailVideo
Secure Email Communication Video
AdvancedHMI Communication – Modbus TCPVideo
Analog IO – System ConfigurationVideo
HTTP JSON InstructionsVideo
Analog Dusk to Dawn ProgramVideo
INC DEC 512 Registers for DMX512Video
PID with PWM OutputVideo
PID Ramp Soak ProfileVideo
Do-More Simulator MQTT Publish / SubscribeVideo
BRX Do-More PLC MQTT CommunicationsVideo
Stride Field Remote IO Modules Modbus TCP Ethernet
Unboxing SIO MB12CDR and SIO MB04ADS Video
Powering and Configuring Video
BRX Do-More PLC to Stride Field IO Modbus TCPVideo
BRX Do-More PLC Ethernet Remote IO Controller BX-DMIO
Unboxing BX-DMIO Video
Configuration and Programming Video
Modbus RTU TCP Remote IO Controller BX-MBIO
Hardware Video
Powering and Configuring Video
BRX Do-More PLC to Modbus Remote IO Controller BX-MBIOVideo
Modbus ASCII ProtocolVideo
Peerlink Ethernet CommunicationVideo
HTTP Web ServerVideo
Dynamic Web PagesVideo
BRX Do-More PLC FTP Client Get PutVideo
Do-More Designer Element BrowserVideo
BRX Do-More PLC High-Speed Input CounterVideo
BRX Do-More PLC High-Speed Input TimerVideo

Our entire BRX Do-More series can be found here.
The programming software and manuals can be downloaded from the Automation Direct website free of charge.

Watch the video below to see the comparisons of input pulse counts in our BRX Do-More PLC. This will show the difference between scan time input reading and high-speed input readings.

Wiring of the Incremental Encoder to the BRX Do-More PLC

We are using the TRDA-2E series of encoders. The one that we have connected is an open collector NPN sinking output. It has 1024 pulses per revolution.
BRX Do-More High Speed Input CounterPreviously we looked at the wiring of the A, B, and Z phases of the encoder. The sinking output of the encoder means a sourcing input to the BRX Do-More PLC.
BRX Do-More High Speed Input CounterIncremental encoders Z phase will have a single pulse that is the same on time as the A and B phases. This outputs once per one full revolution of the encoder.

BRX Do-More PLC High-Speed Input Pulse Catch Programming

We will now configure the high-speed input pulse catch.
BRX Do-More PLC High-Speed Input Pulse CatchCall up the system configuration window by selecting it under tools in the project browser or the icon on the main menu. You can also use the main menu | PLC | System Configuration…
On the left-hand side of the system configuration window, select BRX Local I/O. We can now select the HSIO from the picture when you move your mouse over it or the High-Speed I/O button.
BRX Do-More PLC High-Speed Input Pulse CatchThis will display the Setup BRX High-Speed I/O window. You can see that we have functions 1 and 2 already programmed from last time. Select the Function 3… button.
BRX Do-More PLC High-Speed Input Pulse CatchThe default is to have the function disabled. You will see that the default device name is HsCtrTmr3. This sets up the structure for the high-speed input function 3. A description of the three different modes is shown. Select the Pulse Catch tab along the top of the window.
BRX Do-More PLC High-Speed Input Pulse CatchDevice Name – Name was given to this High-Speed Pulse Catch function. This name will also be used as the name of the structure you will use to interact with this edge timer function in the ladder logic project. The device name can be 1 to 16 characters in length and consist of any combination of alphanumeric characters and underscores (‘_’, ‘a-z’, ‘A-Z’, 0-9), no spaces or punctuation marks are allowed, and must begin with a letter or an underscore.
Pulse Catch Input – This selects which of the High-Speed inputs to use.
Note: although you can select any of the onboard discrete inputs, only the first 10 inputs of properly-equipped BRX CPUs are high-speed. All of the inputs on the HSIO modules are High-Speed
Pulse Direction – This button specifies whether to monitor the input for positive pulses or negative pulses. Clicking the button cycles through the possible selections.
Minimum Width In – This specifies the minimum pulse width input (in microseconds) that will generate a Pulse Catch event.
Pulse Out Width – This specifies how long the generated output (Device Name .PulseCatchOut) will be ON each time a Pulse Catch event is generated. A value of 0 means the output will be ON for one complete PLC scan. Any other positive value means the output will be ON for that number of milliseconds. The structure member.OutputTime contains the amount of time(in milliseconds) remaining for the output to be ON.
BRX Do-More PLC High-Speed Input Pulse CatchWe will leave the device name as the default value. The Z phase of our encoder will be on X2 input. Using the positive pulse on the pulse direction we will leave the minimum width as 0 microseconds. Our output will be on for one PLC scan because the pulse output is left as 0 milliseconds. Select OK.
BRX Do-More PLC High-Speed Input Pulse CatchOur BRX Do-More PLC high-speed input pulse catch is now programmed. It will operate completely automatic asynchronously. This means it is not dependent to operate based on the scan of the PLC. Select OK.
BRX Do-More PLC High-Speed Input Pulse CatchSelect the filters button.
BRX Do-More PLC High-Speed Input Pulse CatchThe setup discrete input response times window will allow us to ensure the first three inputs (A, B, Z phases of our incremental encoder) to 250 000 pulses per second are set. (250 kHz) Select OK.
BRX Do-More PLC High-Speed Input Pulse CatchThis warning indicates that we have changed the PLC system configuration. In order for this to function correctly in our BRX Do-More PLC, we must write this new configuration. Select Yes.
BRX Do-More PLC High-Speed Input Pulse CatchIn the project browser window under I/O, you will be able to see the structure for the high-speed input pulse catch that we just programmed. ($HsCtrTmr3)

BRX Do-More PLC High-Speed Input Pulse Catch Ladder Logic

Using the ladder logic developed last time for the high-speed input counter and timer, we will add new rungs.
PLC Ladder Logic Sample ProgramUsing the leading edge of X2 (Z phase) we increment memory register D0. D1 memory register is incremented using the catch pulse of the high-speed input that we just programmed above. The two memory locations are compared for not being equal. If this is true then output Y3 is turned on.
PLC Ladder Logic Sample ProgramBit C0 will reset the two memory locations back to zero.
PLC Ladder Logic Sample ProgramUse the data monitor to view and reset the memory locations. You will see that our high-speed input pulse catch will have a greater value because it will not miss counts due to the PLC scan time.
Watch the video below to see this high-speed input pulse catch in action on our BRX Do-More PLC.

BRX Do-More PLC Scan Time Monitor

The scan time of the BRX Do-More PLC can be viewed from the system information window. Scan time is the time that it takes to read inputs, solve logic, set outputs, and perform communication and self-diagnostics in the PLC.
PLC Ladder Logic Sample ProgramSelect System Information under tools in the project browser or by the main menu | PLC | System Information…
PLC Ladder Logic Sample ProgramYou can also see the system information by selecting the Info icon on the main menu.
PLC Ladder Logic Sample ProgramUnder the heading of scan times the minimum, average, and maximum times are displayed. These can be reset by selecting the appropriate button.
The input on X2 will have to be on for at least the duration of the scan time if it is to be seen with the ladder logic alone.
BRX Do-More PLC High-Speed Input Pulse CatchWatch the video below to see this high-speed input pulse catch and scan time in action on our BRX Do-More PLC. The encoder is turned by a drill to generate the pulse input on X2.

Download the BRX Do-More program here.

BRX Series PLC from Automation Direct – Power to deliver
Overview Link (Configure and purchase a system)
Manuals and Product Inserts (Installation and Setup Instruction)
Do-More Designer Software (Free Download Link) – The software will contain all of the instruction sets and help files for the BRX Series PLC.

Watch on YouTube: BRX Do-More PLC High-Speed Input Pulse Catch

If you have any questions or need further information please contact me.
Thank you,
Garry

If you’re like most of my readers, you’re committed to learning about technology. Numbering systems used in PLCs are not difficult to learn and understand. We will walk through the numbering systems used in PLCs. This includes Bits, Decimal, Hexadecimal, ASCII, and Floating Point. To get this free article, subscribe to my free email newsletter.

Use the information to inform other people how numbering systems work. Sign up now. The ‘Robust Data Logging for Free’ eBook is also available as a free download. The link is included when you subscribe to ACC Automation.

Leave a Comment