AutomationDirect
Search
Login | Register
Accounts & Orders
Cart
0
$0.00

Recent Orders

View and Manage | Request Cancellation

Your Account

Account Home

Checkout   $0.00


  • My Orders
  • Product Returns (RMAs)
  • Pay Proforma Invoices
  • Pay Freights
  • Invoices / Invoice Reprint
  • Quotes / Favs / BOMs
  • Packing List Reprint
  • My Product Docs
  • Credit Application
  • Tax Exemption
| Direct Sales in US and Canada | 1-800-633-0405 | About Us | Contact Us | Line Card
Products | Support
| Compare
  
Ordering Tools  
warning Cookies are not enabled on your browser.
Cookies are required for our site. Please enable cookies in your browser preferences to continue.
+
Navigation
+
Shopping Categories
  • Barcode / RFID / Vision
  • Bulk Wire & Cable
  • Cables (Terminated)
  • Circuit Protection / Fuses / Disconnects
  • Communications
  • Drives & Soft Starters
  • Enclosure Thermal Management & Lights
  • Enclosures & Racks
  • Field I/O
  • HMI (Human Machine Interface)
  • Hydraulic Components
  • Motion Control
  • Motor Controls
  • Motors
  • Pneumatic Components
  • Power Products (Electrical)
  • Power Transmission (Mechanical)
  • Process Control & Measurement
  • Programmable Controllers
  • Pushbuttons / Switches / Indicators
  • Relays / Timers
  • Safety
  • Sensors / Encoders
  • Stacklights
  • Structural Frames / Rails
  • Tools & Test Equipment
  • Valves
  • Water (Potable) Components
  • Wiring Solutions
  • Retired Products
+
Learn More
  • Brand Line Card
  • What's New
  • E-newsletter
  • Online PDF Catalog
  • Video Tutorials
  • Company Reviews
  • Learning Library
  • Affordable Training
  • Free Online PLC training
  • Cybersecurity
+
In Depth Product Sites
  • Programmable Logic Controllers
  • Productivity1000 PLCs
  • Productivity2000 PLCs
  • Productivity3000 PLCs
  • ProductivityCODESYS
  • LS Electric XGB Series PLCs
  • ProductivityOpen
  • CLICK PLCs
  • Do-more H2 PLCs or
    Do-more T1H Series
  • Do-more BRX PLCs
  • C-more Touch Panels
  • AC & DC Drives
  • Motion Control Components
  • Servos
  • StrideLinx
  • Pneumatics
+
Product Selectors &
Configuration Utilities
  • PLC Family Selector
  • P1000 PLC Systems
  • P2000 PLC Systems
  • P3000 PLC Systems
  • ProductivityCODESYS
  • CLICK PLC Systems
  • Do-more® BRX PLC Systems
  • LS-Electric® XGB PLC Systems
  • Productivity®Open Systems
  • AC Motors
  • Datalogic® Safety Light Curtains
  • LS-Electric® Servo Systems
  • Nitra® Pneumatic Grippers
  • Object Detection (Sensors)
  • PAL Controller Configurator
  • Precision Gearbox Selector
  • Protos X® Field I/O
  • Quadritalia® Modular Enclosures
  • Stellar® Soft Starters
  • Stepper System Selector
  • SureFrame T-slot Extrusion
  • SureMotion® XYZ Gantry
  • SureServo2® System Selector
  • SureStep® Linear Actuators
  • Timing Belts & Pulleys
  • Werma® Stacklights
  • ZIPLinks
Filter Results Clear All
You've selected:
> Programmable Controllers > BRX PLCs (Stackable Micro Brick)
  •   Shop  
  •   Overview  
  •   In Depth  
BRX Home BRX - Your Automation Foundation Configure a BRX
 
Features
10 ways it's better with BRX PLCs! Communication Options IIoT Edge Device - Your low cost link to Industry 4.0Integrated Motion on Multiple Levels Not Your Everyday Analog Security Simple Data Logging/Advanced Data Control Fortified with American Pride Easy Migration Motion Control/Positioning made easy! BRX IIoT in Motion
Free Software
What's New with Do-more Designer Dashboard - Easy Navigation Simulator IIoT WebServer Connectivity Motion on Multiple Levels Simple Data Logging Data Delivered Easy PID Video Help Auto-Discover I/O Powerful Math Trouble free Troubleshooting DirectLOGIC Migration Free Online Training Download the Free Software
Hardware
Hardware Overview M Series CPUs (no I/O) 10-point Series CPUs 18-point Series CPUs 36-point Series CPUs Ethernet Remote I/O Expansion Modules Pluggable Option Modules Connection Options Spare Parts Go to ZIPLink Selector Tool
Instruction Set
Videos


BRX Series PLCs (Stackable Micro Brick) Videos

View Do-more Designer Video


Detailed Product
Overview



To learn more: https://www.automationdirect.com/do-more?utm_source=6jZKdCkhcCo&utm_medium=VideoTeamDescription - (VID-DM-0014)

This video gives examples of using a Device Centric approach to your programming makes programming a Do-more or BRX PLC quick and easy.
**Software Version used in this video: Do-more Designer 1.4.3

Online Support Page: https://community.automationdirect.com/s/?utm_source=6jZKdCkhcCo&utm_medium=VideoTeamDescription

**Please check our website for our most up-to-date product pricing and availability.


Hide Transcript
View Transcript
In part 1 we learned that the key to success

with the Do-more is understanding that configuration works best when you do it in a top down order

and that the Do-more is device centric. In part 2, we practiced configuring several

different types of devices and saw several examples of how the top down configured worked. In this video we’ll see how using Do-more

devices can make you much more productive. Let’s start with the bar code scanner on

the serial port. Because the Serial Port Device takes care

of all the details, all you have to do to use the serial port Stream In instruction. Select the Internal Serial port device we

configured, specify how each string is terminated and pick a place to put the result. This instruction needs to be triggered so

I’ll add a contact to do that. Let’s open a data view and add the contact,

the serial input and the serial port In Queue counter that tells us how many characters

the Serial Port Device has ready for us. Download to the Do-more, run the program and

sure enough, if I scan a 10 character bar code I see 10 characters appear in the queue

and if I trigger the stream in instruction by toggling this control bit, we retrieve

those 10 characters. If I scan several 10 character barcodes we

see the in queue increment accordingly, and each time we toggle the C1 bit, we pull another

10 characters out of the buffer. The point here is the Internal Serial Port

Device is doing all the work for us isn’t it? It collects the serial data, puts it in a

buffer, increments the character count in the buffer, handles any necessary handshaking,

etc. We just access that device through its structure

which the Do-more also created for us using this dot notation. All we did was in system configuration pick

which flavor serial port we wanted to use and then issued a stream in command. And did you notice that no other devices showed

up in the Stream In command – only devices that support the stream in command show up

in the list – so you couldn’t choose an inappropriate device if you wanted to! And the best part about using this device

centric model is if you switch devices you ladder code doesn’t change. For example, suppose we wanted to switch this

instruction to an external serial port. Once the device was setup for that new external

serial port it would appear in this list. We would just select that and we’re done. We don’t have to worry about memory conflicts,

buffer overflows, etc. The Serial Port Device takes care of everything

for us and the structure for our ladder code doesn’t change because all serial ports

– internal or external – have the exact same structures. For example, over here in the dataview we

would just change this to New Serial Port dot InQueue. There’s a step by step example of switching

serial ports in this Bar Code Scanning video so check that out if you want to learn more

about using internal and external serial ports on the Do-more. How about the variable frequency drive. Does it work the same way? Sure. In the GS register write command for example,

you would just pick which GS Drive device you want to talk to. The Do-more takes care of all the memory mapping,

hand shaking, all that stuff. you don’t have to do anything because the

device handles all of that for you. That’s the beauty of this device centric

model – all devices work the same way. Let’s do the same thing with the Counter

IO module. To use the encoder, we just bring up the device

structure dot which ever member we want to use. In this case we want this ireg1 register where

the counter result is stored. Again, the Device keeps track of all of this

stuff for us – we just use it by accessing the structure members using this dot notation. Let’s create a second Encoder device on

our counter IO module. System Configuration, nothing to do on the

CPU, We still see our Counter IO module in the I/O configuration, Module configuration. Select the Counter I/O module, edit, configure. We want to setup channel 2 as a quad counter. Let’s name this device Encoder2. Done. We just fully configured a second encoder

on our Counter I/O module. Under Device configuration we see our new

Encoder Device and that there is nothing to do here. I/O mappings – we are not using any of the

Counter I/O modules I/O bits so there is nothing to do here. And Memory Configuration. Scroll to the bottom and we see our new Encoder2

Structure. Hit OK. So to switch our ladder code to use the second

encoder instead of the first one, we just change the structure name – which is always

the same as the device name except it has a dollar sign in front of it - and we’re

Done. That’s all it takes because the encoder

devices all have the same structure, the same interface, the same usage, etc. And if you wanted to do that globally, just

use search and replace. This Device Centric model just makes things

so easy. And keep in mind that while we switched encoders

on the same Counter IO module in this example, we could have switched to any encoder in any

base in the entire system – it wouldn’t make any difference. We would still just change the name of the

device in the ladder instruction – the Encoder device takes care of everything else. Very cool. And there is one more side effect of using

this Device Centric model. What would happen on most PLCs if you actually

REMOVED a module from the local base and put it in a remote base? Yeah, it would break all of your code and

you would have an enormous amount of work to do to get it back up and running – right? Let’s see what happens when you do that

on the Do-more. Let’s power down this Domore, and move this

Counter IO module from this local base to a remote base on the same network. Power up the system. The Do-more immediately seesthat counter IO

module is missing and gives us an error. So we will go to the System Configuration

and just like always, start at the top and work our way down. There’s no change to the CPU. We did change the I/O configuration – we

removed and entire local module from the local base. To add the remote slave we go to our Ethernet

I/O Master because he manages all of our slaves. And before we do anything, we need to hit

this button to male sure all the IP addresses are ok. Looks like our slave’s IP address is good,

but if it wasn’t we would change it here. Now that we know all the slaves we want to

talk to are on our network, we hit this button to add them to the configuration list. This is all the slaves the Do-more can find

on the network. We want to add this one to our configuration,

so we select it and hit add selected. And when we do that, we now see the Counter

IO module in the remote slave here at the top level and here under the Ethernet I/O

Master. We are using a 6 slot base on the slave, so

let’s modify that. Perfect. Go down to the next step – module configuration. You see the new Counter IO module and the

old disconnected one. We COULD delete the old Counter IO module

and then re-setup the new one with the exact same configuration and hope we specify all

the encoders correctly and name everything correctly, etc. OR we could do it the easy way. Here’s the trick – this Assign Config

button lets us take this guys module configuration and simply transfer it over to this guy. We just highlight the one with the configuration,

hit the button and select the module you want to transfer it to. We only have this one module listed here,

but in more complicated systems there could be dozens to choose from. Down here we can choose to keep this modules

configuration –or just overwrite it. We don’t need to keep the configuration

so we’ll overwrite it. If we did keep the configuration, it would

appear back here as a disconnected module like this one. Do-more Designer asks us - are sure we want

to do this – we are. And just like that the entire configuration

is transferred to the new module. We don’t have to do anything. All the same devices are exactly where they

were before. All the same mappings and all the same memory

structures which means my ladder code is oblivious. That’s incredible – that means we have

no changes to our ladder code anywhere in the entire project! Why? Because the ladder code still references the

same device and the same structure. If we write this out to the PLC, the error

goes away. Put the PLC in RUN mode. And look, even the dataview gives us the exact

same result as before. It has no idea we moved that entire module

to a completely different rack. And the reason we could do that is because

the Do-more is Device centric. The ladder code talks to Devices via the Device

Structure. All we did was tell the Do-more that Device

resides in some remote rack now using our System Configuration top down ritual and our

ladder code never knew the difference. It still thinks it is talking to the same

device it was before. The device took care of all the dirty work

for us. We would have ZERO ladder code mods to make,

even though we moved an entire module. If you have ever tried to do move a module

on other PLCs then you know what a monster effort that can be. With the Do-more we just re-assigned the module

configuration to a new module and we were done. That’s the Device Centric model making your

job easier. That’s the Do-more Way. If you have any questions, please contact

AutomationDirect’s free award winning tech support during regular business hours. They will be happy to help you. And don’t forget the forums! There are lots of folks there that love to

share their years of experience. Just don’t post and questions directed at

AutomationDirect’s support team there, they don’t monitor the forums on a regular basis.


Playlist Not Found Could not find playlist PLPdypWXY_ROqT5KTqjfyhR7t0fD16Nya8

Playlist Not Found Could not find playlist PLPdypWXY_ROqvbaYVBWc3kH-pP01fI4-E

Playlist Not Found Could not find playlist PLPdypWXY_ROqJO86ikigKmjnSkbguBKBw

Playlist Not Found Could not find playlist PLPdypWXY_ROoqTZihvX8c8UUj5GzVCuKH

Playlist Not Found Could not find playlist PLPdypWXY_ROr0ZfCV-fAgau5yDemA19CV

Playlist Not Found Could not find playlist PLPdypWXY_ROqWWy8OnWGt3YD4Dald6uf-

BRX Do-more PLCs - Hardware
  • Video
    How To Sense Temperature with a Do-more PLC from AutomationDirect
  • Video
    How To Detect Objects with an AutomationDirect Do-more PLC
  • Video
    AC Motor On/Off with Do-more PLC Part 1 from AutomationDirect
  • Video
    AC Motor On/Off with Do-more PLC Part 2 from AutomationDirect
  • Video
    How to Sense Distance with an AutomationDirect Do-more PLC

Playlist Not Found Could not find playlist PLPdypWXY_ROrRJ5YuFYxs3mSXr9250AN7

Playlist Not Found Could not find playlist PLPdypWXY_ROrtSkGYNq8Xc52QWTCWf2Ci

Contact, Connect & More
Sign Up
to receive:
FREE e-Newsletter
sign up today!
Connect With Us
Social Media Channels:
linkedin    facebook    x    instagram    youtube
Company Information
About Us
Brand Line Card
System Integrator Program
International Sales
Panel Builder Program
Site Help
Company Reviews
Download Price List
Contact Us
Contact Options
1-800-633-0405
Monday - Friday
9 a.m. - 6 p.m. ET
excluding holidays
Career Opportunities
Voted #1 mid-sized employer in Atlanta
We're a great place to work!
Check out our job openings

Need Training?
Affordable Training by Interconnecting Automation
Free Online PLC Training
FREE Video Tutorials
Information & News
What's New / In The News
FREE e-Newsletter
Automation Notebook
Product Literature
White Papers
News, Product and Training Bulletins
E-Books
Shop with confidence
Checked   Safe & Secure
payment methods


We accept VISA, MasterCard, Discover, American Express, PayPal or company purchase orders.
AutomationDirect

BBB Accredited

Voted #1 mid-sized employer in Atlanta
Check out our job openings

Copyright © 1999-2025 AutomationDirect.  ALL RIGHTS RESERVED.
Site Map     Send Us your Feedback     Unsubscribe     Email Preferences     Legal & Business Policies     YouTube Terms of Service
Clear login credentials



Back to Top


spinner Updating...
Info
„