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 > Do-more H2 & T1H PLCs (Micro Modular & Stackable)
  •   Shop  
  •   Overview  
  •   In Depth  
Do-more Home Download Free Software
 
Features
Top 11 Ways You Can Do More with this PLC Serial Communications Ethernet Communications High Speed Modules Hign Speed Inputs Motion Control Remote I/O Free Online Training
Free Software
Simulator Auto-Discover I/O Communications Powerful Math Monitoring & Troubleshooting Memory Management Program Management Project Management Security Download the FREE software
Hardware
H2 CPUs T1H CPUs Bases AC I/O Modules DC I/O Modules AC & DC I/O Modules Analog I/O Modules Specialty Modules Go to ZIPLink Selector Tool
Videos


Do-more H2 (Micro Modular PLC) Videos

View Do-more Designer Videos


Detailed Product
Overview



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

Understanding how the Do-more engine is configured and how it works is a key to success. This brief overview will help make your project go a lot smoother!
** Software Version used in this video: Do-more Designer 2.0

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

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


Hide Transcript
View Transcript
We saw in the quick start video that writing

a simple program for a Do-more PLC is quick and easy and that’s because Do-more does

so much for you. Writing a program that uses more resources

like com ports or servers is just as quick and easy if you understand 3 key things about

the Do-more architecture. Number one: Devices. It’s important to understand that your program

doesn’t talk directly to the hardware. Instead, your program tells a software interface

how it wants the hardware to behave, and that interface – which we call a device - controls

the hardware. The beauty of the device is it knows how to

handle the hardware for whatever you set it up to do. It takes all the low level buffer management,

handshaking, error processing, etc. off your back. For example, the serial port is a hardware

thing, but maybe I want it to behave as a simple ASCII streaming device. I select that interface - or device – tweak

the settings and I’m done. Now when I send data the device takes acre

of all the low level details. If I want that port to behave as a Modbus

RTU Client, I select that device, tweak a similar list of things - the device only asks

you for the things it needs - and now it’s ready. If I want an instruction to send data to the

Modbus RTU client we just setup, I just select that and I’m done. Now all data from this instruction will use

the RTU client. If I want to switch to use the built-in Ethernet

port, I just select that. Done. No other changes to the program or the configuration. What if I wanted to send data out an add-on

serial port module and I haven’t setup the device yet? Well look at this. You can setup the new serial port device - which

Do-more created for you automatically - right from within the instruction! Now just use that device and away you go. We just setup three different ways to get

data out of the Do-more and all we did was swap out devices! That’s the power of this device centric

model. Most instructions don’t need devices – like

reading or writing directly to I/O. But even in that case the program still doesn’t

talk to the hardware – it writes to memory which is mapped directly to hardware through

a device. So the key take away here is only devices

talk directly to hardware. Which is why we say the Do-more PLC is device

centric. Devices isolate you from all the low level

stuff so you can just focus on what needs to get done and not worry about the how. The Device does it for you. Key Thing number two: Memory

Like most of today’s modern programming languages, Do-more’s memory is strongly

typed. Which means, Do-more knows exactly what each

memory location is intended to represent. It doesn’t have to guess if a particular

memory location is an unsigned or signed integer, for example. And because if fundamentally knows what each

memory type represents, you can do things like compare a real number with an integer

or even do math on mixed memory types. And here’s a great example: Suppose you

have 10 inputs and you need to know if any 7 are active. That would be a HUGE task to do in ladder

code. But Do-more knows inputs are a binary type,

so you can just sum all 10 inputs and if, that sum, is greater than or equal to 7, turn

the output on, otherwise turn it off. How about that? That’s the power of Do-more’s typing. It just works. Which makes your programming life a whole

lot easier. Number three: System Configuration. Do-more is setup by default to handle basic

projects mostly because its smart enough to figure a lot of things out on it’s own like

when you add extra I/O modules – that’s all automatic. You don’t have to do anything except use

them and if necessary maybe setup a few things right from the dashboard. So many times that’s all you’ll ever need. As your projects start using more and more

resources and devices, then you’ll want to use the system configuration dialog because

you can customize the hardware, devices, servers, and even modify the memory usage. The key thing to remember is, you’ll want

to start at the top and work your way down. Why? Because each item in this configuration can

affect the items below it. So first you configure the CPU which can affect

all of these items, then you configure the I/O which can affect all of these items, then

you configure the modules, then the devices, etc. The cool thing about starting at the top and

working your way down, is when you reach the bottom you know you haven’t missed anything

and all the bases are covered. Can you jump in the middle and change something

if you want to? Sure. Just remember it can affect the items below

it. Of course, anytime you change the system configuration,

it needs to be written to the PLC to take affect. Well that’s it. The Do-more is Device Centric – you configure

and talk to the devices, they take all the low level hardware control off of your back,

Memory is strongly typed which makes your programming job easier and more reliable,

and the system configuration is best approached in a top down fashion – it helps you make

sure all the bases are covered and just makes things work out smoother. If you need any help, please contact AtomationDirect’s

free award winning support team during regular business hours. They will be happy to help. Spend Less, Do-More. With AutomationDirect.


Playlist Not Found Could not find playlist PLPdypWXY_ROoEcDCcD10Qdb3S9tOmfEn5

Playlist Not Found Could not find playlist PLPdypWXY_ROoJx-HnK9gj2Z5a-i7th-UK

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

Playlist Not Found Could not find playlist PLPdypWXY_ROr5OPw3e0o8rLC0JQijmCNY

Playlist Not Found Could not find playlist PLPdypWXY_ROrtSkGYNq8Xc52QWTCWf2Ci

Playlist Not Found Could not find playlist PLPdypWXY_ROrRJ5YuFYxs3mSXr9250AN7

Playlist Not Found Could not find playlist PLPdypWXY_ROqJO86ikigKmjnSkbguBKBw

Playlist Not Found Could not find playlist PLPdypWXY_ROqWWy8OnWGt3YD4Dald6uf-

Playlist Not Found Could not find playlist PLPdypWXY_ROrmjIdXLaeovoTLZP65hdac

Playlist Not Found Could not find playlist PLPdypWXY_ROoqTZihvX8c8UUj5GzVCuKH

Playlist Not Found Could not find playlist PLPdypWXY_ROr0ZfCV-fAgau5yDemA19CV

BRX Do-more PLCs - Motion Control & High Speed Inputs
  • Video
    BRX Do-more CTRIO2 Motion Demo Hardware from AutomationDirect
  • Video
    BRX Do-more CTRIO2 Motion Config & JOG from AutomationDirect
  • Video
    BRX Do-more CTRIO2 Motion Dynamic Motion from AutomationDirect
  • Video
    BRX Do-more CTRIO2 Motion Using Limits from AutomationDirect
  • Video
    BRX Do-more CTRIO2 Motion Trapezoid Moves from AutomationDirect
  • Video
    BRX Do-more CTRIO2 Motion Using Encoders from AutomationDirect
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
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
„