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 > CLICK PLCs (Stackable Micro Brick)
  •   Shop  
  •   Overview  
  •   In Depth  
CLICK Home Configure a CLICK Compare to the Competition Try CLICK PLUS for high-level simple control
Features
Hardware
CLICK CPU modules DC I/O modules AC I/O and Relay modules Analog modules Specialty modules Power Supplies Programming Cables ZIPLink Wiring Solutions Go to ZIPLink Selector Tool
Free Software
What's New with CLICK Software Programming Environment Instruction List Toolbars Address Picker Subroutines Interrupt Routines System Configurator Software Help
Getting Started
What is a PLC Programming a CLICK Power Considerations What you Need Installation & Wiring Choosing I/O Configure a CLICK
 
Software Download

Programming the CLICK/CLICK PLUS

  • Download and install the CLICK Software
  • Connect your programming cable between the CLICK PLC and your PC
  • Please refer to the Manual, the online help, and these online training videos for more information.

A Simple PLC Application:

Example Application

A Simple PLC Program:

Here is a sample CLICK PLC program, that might be used to control a stack light. Suppose we connected a switch to the first input on the CLICK CPU module, and a stack light to the first output. This simple PLC program could be used to associate the switch with the light, and to provide on/off control of the light via the switch. And yes, you might ask why not simply wire the switch to the light - and you might be able to do that in some situations, but let's assume the the switch must use low voltage DC, and the stack light requires 110VAC. Now we have an application where a relay might be used, and since a PLC is basically a collection of relays - we can use a PLC!

A Simple PLC Program:

Example Program

Ladder Logic:

Example Program

Ladder Logic:

PLCs use a programming scheme known as ladder logic. Ladder logic is a visual representation modeled after the relay wiring schematics that the PLCs often replace. The vertical line on the left of the schematic is known as a "power rail" and the horizontal lines are called rungs. When a contact is placed on a rung and that contact is "closed", then you can imagine that power will flow across the rung to the right and power any other instructions (or coils) that may be present on that rung. In this example we have one rung of ladder logic, with a single normally-open contact controlling an output coil. When this program is compiled and transferred to a CLICK PLC and the PLC is placed in the "Run" mode - the PLC will scan this ladder logic several hundred times per second. It will evaluate the state of the first input (X001) on every scan, and if that input is active (ie. if our switch is turned "on") then the PLC will energize the first output (Y001) thereby turning on the light. If the input is inactive, the output will be de-energized

Inserting Instructions:

It's easy to insert and configure instructions with CLICK. Simply drag the desired instruction from the right-hand pane in the software, and drop it onto one of the rungs in the ladder window. The configuration dialog box will appear and you can fill-in-the-blanks with your desired memory addresses and any other parameters that may be optional or required. There is a help button on every instruction dialog box that will take you directly to the help file entry for that instruction.

Memory Addresses:

PLCs use Memory Addresses to refer to the various bits, words, and strings of data that are used for programming. The naming convention for CLICK PLC memory addresses uses X to indicate "real-world" inputs, and Y for real-world outputs. In our example we wired the switch to the X1 input, and we then refer to that input in the program using the memory address X001. Likewise we wired the light to Y1 and we use Y001 to refer to this output. There are also naming conventions for other types of PLC memory addresses including internal addresses that are used for programming and internal functions but which may not have a "real-world" counterpart. See the help files for an in depth explanation of PLC memory addresses. With the CLICK PLC you can also assign "nicknames" to your memory addresses to help maintain your sanity.

This is the END:

The END instruction is required, and signals the PLC that the end of the ladder logic has been reached. Any instructions placed below the rung with the END instruction will not be executed.

The Scan:

One important thing to understand is that on each scan the PLC evaluates all the rungs of logic, and THEN updates the physical I/O - before scanning the ladder logic again. The "real-world" I/O is not updated on a rung-by-rung basis.

More Examples:

We've got more example programs here.

Online Training:

InterConnecting Automation Inc. is an independent company dedicated to PLC based training with an emphasis on real world experience. They also offer online training as well as on-site training for PLCs. They offer both generic PLC training (applying to any brand) and they also have training for specific PLCs including the CLICK PLC. AutomationDirect has found the CLICK training to be so useful that we use it to train our own employees. The online training is absolutely free of charge for anyone.

Click here to access the CLICK PLC specific training site at InterConnecting Automation Inc.

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
„