Difference Between Robotics Technician And PLC Technician

If you’re studying towards or considering a career in industrial automation, you may be wondering about the difference between “robotics” and “automation”. Some other industrial automation words that sound suspiciously similar are “mechatronics”, “controls”, and “motion control”. Many of these terms are synonymous, or at least describe greatly overlapping domains. With that said, there is a distinction to be made between a Robotics Technician and a PLC Technician or PLC Programmer.

Recently, a reader left the following comment on our So, You Want To Be An Industrial Automation Engineer article:

Your article on Industrial Automation was very insightful. I am a manufacturing engineering technician student from London, ON. I am interested in becoming a Robotics Technician. So, I would like to know the similarities and differences of a PLC technician and a Robotics technician and what do I need to do to reach my career interest.

Eric’s Comment

Thanks for the question, Eric! It’s always awesome to hear from someone who’s getting involved in industrial automation. It’s hard work, but a lot of fun, and the opportunities to learn are endless. Let me do my best below to answer your questions.


Contents


What Do Robotics Technicians Do?

Robotics technicians generally do robot setup and programming. As far as I see it, there are three worlds to robotics:

  1. Robot setup
  2. Writing and debugging robot programs
  3. Teaching robot positions

Robot Setup

Robot setup involves getting a new robot out of the box ready to be programmed. This consists of any custom loads for your shop, IP and comm setup, etc. Sort of like getting a new device to talk on your Wi-Fi at home, but more complicated. 🙂

Someone who’s spending their time setting up robots will have to connect power and communications to the robot. You’ll need the right cables for the application. When someone says “application” in this context, they mean: the particular thing that the robot is intended to do.

For instance, if the robot is a “material handler”, its purpose is to move parts around. You would say the robot is, or has, a “material handling application”.

Material handling robots will often have end effectors with sensors and clamps. (You can read a bit about end effectors near the bottom of this article on sensors.) The robot will need power and communication cables to pass through its arm to the end effector. It will need these to provide power to the clamps and to receive feedback from the sensors. This may result in different cabling to the bottom of the robot. The person doing the setup will need to make sure they select and hook up the right cables.

Anyone working robot setup will also need to be very familiar with the robot’s setup menus. There may be a lot of little settings to change to get everything configured correctly. Additionally, you will likely need to understand the process for flashing images or firmware into the robot’s memory.

Writing And Debugging Robot Programs

Once initial setup is complete, the robot’s programming tells the robot when to go. The robot program also dictates what inputs and outputs to set along the way. Robot programming is reminiscent of high-level computer programming. Once you get involved in reading and understanding robot programs, I think it’s fairly easy to start building some skills as a programmer.

Robot programs often employ somewhat straightforward and easy-to-read logic. Usually, you’ll be evaluating some input from the PLC or the End Of Arm Tool (the “IF” condition). The robot then takes some action or sets some output as a result (the “THEN” result).

For example, a robot may enter a program and first check to see if it’s already holding a part. If it doesn’t have the part, it enters a branch of the program that sends it to the pickup location. From there, it may close its clamps (to secure the part in its grasp), and then check to see that its sensors indicate that it has a grip on the part.

If, instead, the robot already has the part, it will jump to a different branch of the program. In this branch, a different set of motion commands will move the robot to the drop-off location. Once there, it will release its clamps, then check its sensors to make sure that it no longer has the part.

If you’ve ever done any programming in BASIC, that’s what robot programming reminds me of. I’ve only ever worked with Fanuc robots, though, so other platforms may be different.

Teaching Robot Positions

Once robot programs are loaded, you have to tell the robot where to go to do its job. Different robot applications (robots that weld, robots that move parts around) require different tactics in terms of the motion necessary to accomplish the task.

For the most part, teaching robot positions is a lot of “jogging” the robot. To “jog” a robot is to drive it manually using the buttons on the teach pendant. Depending on the reference frame, these buttons either move an axis independently or move the End Of Arm Tool in one particular direction.

A Fanuc Teach Pendant. The teach pendant is used to view and control the robot's setup and programming. This image is part of an article describing the difference between robotics technician and plc technician jobs.
A Fanuc Teach Pendant. The jog buttons are the blue buttons on the right.

With that said, simply wiggling the robot around is only scratching the surface of position programming. Each position taught can be setup in a variety of different ways. Good programmers understand how the robot will move depending on the settings that they select when they teach a position. Skillful position programming can improve the performance of the robot (by reducing cycle time) and extend the life of the robot’s mechanical components.

Position programmers will also need to understand how motion is programmed for different applications. Material handler motion may be programmed differently from weld gun motion. Large, heavy robots with payloads of several hundred pounds may be taught differently than small robots that carry only a few pounds.

Are you ready to take the next step in your industrial automation career?

The Industrial Automation Connection’s goal is to help you connect with opportunities to advance yourself.


Let us put you in touch with organizations that are looking for people like you.

This service is always free, and it takes only a few moments to register. Click one of the buttons below to get started!

Being A Well-Rounded Robotics Technician

Each of these elements is a bit of a world unto itself. If you get into robotics, then depending on where you work, you may specialize in one or two of these domains. Or, maybe your shop’s policy is that you own each robot for the complete process, from setup through customer acceptance.

Robot gods – guys or gals who are really, really knowledgeable – are likely to be proficient in both setup and programming.

What About PLC Programming?

A little snippet of ladder logic. Click for full-size image

The Programmable Logic Controller, or PLC, is the brains of the operation in many modern factories and processes. PLC’s tell the robots, valves, actuators, conveyors, and other systems when it is their turn to move. For instance, the PLC will tell the robot which program it should execute:

Run your program to…

  • …pick up a part and set it down somewhere else
  • …move to a maintenance position so a cable can be repaired
  • …drop off your end effector and return home
  • …etc.

The PLC will send several bits to the robot telling it that it is safe to move and that it wants it to run a program. It will also typically send a combination of bits that represent “program select”. In other words, the PLC will send the robot a code telling it which program to run, and other bits telling it it is safe to run that program.

This is just one example of what the PLC does. The PLC is the mastermind of the operation, evaluating all of its inputs, processing those inputs according to its programming, and setting all of its outputs on every “scan”. A scan is one complete execution of all of the PLC’s programmed logic.

What Does A PLC Do?

Think about some decent-to-high-end electronics purchase you’ve made recently. For instance, consider a smart home hub.

That smart home hub comes out of the box, ready to do its job of controlling your smart home devices. In order to do so, it uses its microprocessor, which is equipped with a set of programming instructions that were loaded at the factory. If you and your friend have the same smart home hub, both hubs will have the same programming.

Now, consider an automation line in a factory. An automation line in a factory is analogous, in some ways, to a smart home hub. It accepts inputs from many sensors. It processes those inputs, and depending on the inputs it receives, turns on outputs.

In the case of the home automation hub, it might be accepting voice commands, time of day, and RF signals as inputs, and it might be setting outputs such as locking the front door, turning on a light, or closing a set of motorized blinds.

What Does This Have To Do With PLC’s?

In the case of a PLC, it might be accepting proximity sensors, motor temperatures, and operator pushbuttons as inputs, and it might be setting outputs such as telling motors to turn, flashing lights on panels, or moving an actuator to position a part.

The PLC even shares the trait of using a microprocessor to perform its functions. Where the PLC differs from the smart home hub is that whereas manufactured devices like smart home hubs all have the same programming, each PLC running an automation line or process typically has custom programming.

In other words, two automation lines that connect with each other may have the same foundational “template” of logic loaded. Even if they start out similarly, however, they will both have many small differences in their programming to reflect different processes or equipment that are used on each line.

What Do PLC Programmers Do?

It is the PLC Programmer’s job to create and maintain the logic that drives automation lines or processes. PLC programmers are generally either developing and implementing new logic, or supporting and debugging existing systems.

Developing New Logic

A ladder logic sample with FAL instructions. FAL's are very efficient, and allow you to perform operations on every index in an array with one instruction. They are, however, very hard to read when you go back through to debug your logic.
FAL’s are a powerful – but cryptic – instruction. Click for full-size image

One of the most fun aspects of PLC programming is developing new logic. You might work with ladder logic, function block diagrams, structured text, or other programming methods. Whatever you’re using to program the PLC, developing new logic allows you, as the programmer, to bring an automated process to life.

This is where your creativity and programming skills will come in. A good PLC programmer has read and debugged a lot of logic and is able to bring solutions to bear in new applications. Knowing how you or other people have solved certain problems in the past gives you a “library” of solutions to reference to overcome new problems.

A good programmer is also resourceful. If you come across a problem you haven’t solved before, it’s important to know where to look and to have other smart people you can call upon to get the information you need.

Another key skill when writing new logic for the PLC is “being able to see the logic running in your head”, as one of my PLC mentors once said to me. It’s important to learn how the various PLC programming instructions work and how they respond on their first and future scans after input conditions become true or false. Understanding how your logic will behave while you’re working offline will help your implementation to go more smoothly and minimize debug time and issues.

Maintaining And Debugging Existing Systems

The other side of the coin is maintaining and debugging existing systems. Many organizations keep PLC programmers, or “Controls Guys” (or Gals), on for the sole purpose of getting the equipment back up and running when it breaks down. If you’re in a production support role of this type, you’ll need to learn the equipment in the area and the PLC logic that drives the process.

The best-case scenario is when you get to own a process from birth and throughout its lifecycle. If you’re trying to troubleshoot something, it sure is nice to have the person that wrote the logic available on site.

If you’re going to support existing equipment, it helps to be able to work well under pressure. Managers will be standing around tapping their feet and looking at you to get the equipment running. You’ll need to keep a cool head and work through the issue to get the line moving.

Other Functions Of A PLC Programmer Or Automation Engineer

There can be a lot more to it than the ladder logic (or other programming method). For instance, the PLC is the ultimate controller for the process, and thus many devices will need to be setup within the PLC software so that the PLC can talk to them. This may require you to obtain specific configuration values from the device’s manufacturer, or to load an EDS for the device. An EDS is a file that helps the PLC understand how to talk to a certain type of device.

Further, PLC Programmers (or Controls Engineers, etc.) often setup and maintain software and backups for any drives that are part of the system. Modern factories commonly employ Variable Frequency Drives, or VFD’s, to control motors. VFD’s allow you to set motor speed dynamically through the logic. This programmatic control enables the programmer to set up high and low speed settings, sync up speeds between neighboring motors, and more.

Another area of responsibility for PLC programmers is HMI development. The Human-Machine Interface, or HMI, is typically an LCD or touchscreen interface through which operators can control the system. As a PLC programmer, you may find yourself designing and debugging custom HMI screens to support your process. A well-designed HMI will provide users with:

  • Information they need to understand what’s going on in the process
  • Buttons and other input methods that allow them to control the process
An example of a  Human-Machine Interface screen. This is an example of something a PLC programmer might have to design. This image was used to illustrate some of the differences between PLC technicians and robot technicians.
An HMI interface for a pump. Image credit. Click for full-size image

Similarities Between Robotics Technician And PLC Technician Positions

Now that we’ve covered many of the differences between robotics and PLC technician roles, let’s discuss some of the similarities.

Programming Skills

To start with the obvious, both roles require you to be a decent programmer. You’ll need to have the patience and curiosity to learn the basic syntax and instructions with which the equipment is programmed. As you are exposed to new situations, it helps to remember programming solutions you’ve used or seen in the past. You never know when you might want to reuse something in the future to overcome a similar challenge.

Programmers working in the industrial automation field must take care in what they do. A single bit in the wrong state or a single number in the wrong register can bring your process to a halt, or worse – cause a robot or other equipment crash. You’ll need to be careful and pay attention to detail as you program and debug your logic.

Troubleshooting Skills

Another aspect of working as either a Robotics Technician or PLC Technician is troubleshooting. Troubleshooting is the process of identifying and correcting a problem to get equipment working.

To be a good troubleshooter, you need to learn your automation and the equipment and software that you’ll use to get the job done. If my factory uses Rockwell Automation PLC’s, for instance, I’ll need to be familiar with RSLogix 5000 and how to use it to quickly debug any issues. In a facility that employs Kawasaki robots, I’ll need to know my way around the Kawasaki pendant and understand generally how the robot functions. If I’m supporting a line with automated weld processes, I’ll need to become familiar with the weld equipment and controller.

Depending on the process, this most likely means you’ll need a good mechanical or electrical background. When you have knowledge of how equipment and components are supposed to work, it can help you to understand why they’re not working. Many PLC and robot programmers first work as industrial electricians or automation technicians. A strong electrical background can be very helpful in figuring out what’s going wrong in your process.

People Skills

Believe it or not, you still need to have decent people skills as a programmer. You’ll need to keep people informed of the work you have going on and often solicit their help in getting the job done. Managers and supervisors will need you to get a task accomplished or to get equipment back up and running, and you’ll need to be able to set expectations appropriately.

Salary Comparison Between PLC Technicians And Robot Technicians

The good news is that both pay pretty decently and both are very comparable. As you’ll see below, there appears to be a wide range of potential salaries within these fields, and I’m sure it depends greatly on the location, years of experience, and contract status. Here are some aggregated salary numbers from some reputable sites:

Robotics TechnicianPLC Technician
ZipRecruiter.com$56,875$58,090
PayScale.com$66,000$51,959
glassdoor.com$83,241$79,157

How To Get A Job As A Robot Programmer Or PLC Programmer

Within the field of industrial automation, I think there’s a bit of a chicken-and-the-egg thing with breaking into a programming job. This is something that I think is similar between robotics technicians and PLC technicians. When it comes to hiring into these fields, my personal perception is that employers would prefer experience to education.

What I mean to say is that for a technician position, an employer may be likely to choose a robot programmer with 4 years of pendant time over an Electrical Engineer with 4 years of education. The same may or may not be true for an engineering position.

I’m not trying to downplay education, which I think is important regardless of the position held. Experience, however, is a critical element when working with highly specialized platforms like robots and PLC’s.

The Importance Of Hands-On Experience

If you’re looking to get into the industry as a Robotics Technician or PLC Technician, hands-on time is very important to employers. I believe an employer would very strongly consider a candidate for either a technician or engineering position if the candidate had several years of relevant experience doing PLC or robotics work – even if that candidate didn’t have a degree.

I think that employers may even prefer experience over education for certain engineering positions. Because PLC and robotics work requires very specialized skills and knowledge, you just can’t trade time at the terminal or on the pendant. Becoming a proficient PLC programmer using Rockwell Automation’s RSLogix 5000, for instance, can be a life-long pursuit.

Please note that this is just my personal take on it; I’m sure every employer has different policies and expectations.

What If I Don’t Have Any Experience, Yet?

This is where the chicken-and-the-egg thing comes into play. If you’re trying to get your foot in the door somewhere to try to build that foundational experience with PLC’s or robotics, I’d say there are two common paths:

  • Earn a two-year (or even four-year) degree in a field like Mechatronics, Industrial Automation, Electrical Engineering, etc. This will help you to get an interview and hire on as a technician
  • With experience in a related field, get a position where you can start dabbling in PLC programming or robotics so that you can qualify for a more focused position later

A Couple Of Examples

I’ll give you two examples:

  • I know a very talented PLC programmer who works as a Controls Engineer
    • He got a two-year degree in Mechatronics and then worked for an automotive manufacturer as an Industrial Electrician. He transitioned into another Industrial Electrician position with another automotive manufacturer
    • His two-year degree plus the experience he’d built doing PLC debug along the way allowed him to interview for (and be offered) a position as a Controls Engineer
  • I know another very talented PLC programmer who works as an Industrial Electrician. Although Industrial Electricians perform a wide range of tasks within my facility, he is primarily doing PLC programming and troubleshooting
    • He worked as an Industrial Electrician at a government facility. During that time, he made sure to learn as much as he could about PLC’s, drives, and electrical troubleshooting. After several years, he hired on at my facility
    • He has the same job title as others at my facility who are doing less technical work. Because of his knowledge and experience, however, he has been able to specialize in PLC programming. His supervisor has identified him as a Subject Matter Expert for PLC’s and drives, and he primarily works as a PLC programmer and troubleshooter

Additional Information On The Differences Between PLC Technicians and Robotics Technicians

I hope that this article has given you a bit of perspective on the difference between PLC technician and robotics technician jobs in the field of industrial automation. If this was helpful for you, make sure to sign up for our email list below:

Once you’re on the list, we’ll keep you posted whenever we have something new for you related to industrial automation.

Further Reading

For further reading on the differences between robotics technician and plc programmer roles, here are some other resources from around the web:

What Is An Automated Systems Integrator?

If you’ve become involved in the world of industrial automation, you may have heard the terms “integrator,” “automation integrator,” or “automated systems integrator.” The term “systems integrator” exists in both the fields of industrial automation and information systems. There are some blurred lines between those fields, as both involve networking, computers, and programming. In this article, we’ll go over the concept of automated systems integration within the fields of industrial automation and manufacturing.

Working to begin or advance your career?

Our goal is to get you in touch with organizations that are interested in your success.


Let us help you find opportunities for employment and education in your area.

We’ll never charge for this service. Click one of the buttons below to get started; registration only takes a few moments!

What Is An Automation Integrator?

Let’s say you’ve just opened a new business. You want to manufacture pencils.

Several colored pencils.

Your company has a solid business plan, funding, a building, your management team, and employees. You know the colors that you want to manufacture and even how you want to market your products. There’s just one little problem… You don’t know anything about how to actually manufacture pencils. That is where a systems integrator comes in.

An integrator is a company that specializes in bringing systems, equipment, and machinery together to create a manufacturing solution. Thus, an integrator “integrates” whatever types of equipment and controls are required to turn separate machines into an assembly line (or other automated solution). The machines that are integrated may or may not be designed to work together easily. To do the job, the integrator must overcome any technical challenges to build a complete solution.

In this sense, an integrator transforms unrelated machinery and electronics into a factory. You can think of a factory as a sort of monstrous Rube Goldberg machine that converts raw materials into marketable products.

A view of the Frame line in the Tesla Model S factory. Many robots can be seen working on or prepared to work on the frame of the vehicle as it travels down a conveyor system in the center of the automation line. It's likely that Tesla designed this assembly line and then commissioned an automated systems integrator to purchase, setup, and program the manufacturing equipment.
The Tesla Model S Framer

What Kinds of Equipment Does An Automated Systems Integrator Have to Bring Together?

Consider everything going on in the image above (view full size here).

Conveyor Systems

Conveyor Beds

The red and grey assemblies in the center of the image are “conveyor beds.” Conveyors are custom-built fixtures that transport units to each “station” on the assembly line. Integrators fabricate the frames of the conveyor beds from stock steel. Industrial motors and roller systems built into the conveyor do the job of getting the units to physically move down the line.

This is just one example of a conveyance system. Conveyance comes in all shapes and sizes, depending on what is being manufactured. The conveyor beds shown above likely weigh around a ton. At the other end of the spectrum, you have smaller components like circuit boards. Conveyor systems of this size weigh only a few pounds.

Pallets

The production units themselves ride through the conveyor system on “pallets.” Like a conveyor bed, a pallet is custom-built to hold and carry each unit down the line. Pallets ride through the automation, passing from conveyor bed to conveyor bed.

Additionally, pallets are built to precise tolerances. When a unit arrives in a station, the robots will need to do their work in as close to the exact same physical location on the unit each time. For this reason, pallets must all be almost exactly the same, so that each unit will sit in a very specific position at each station.

Pallets hold each unit in place with carefully sized pins, or by other mechanical means. This helps to ensure proper positioning. In industrial automation, “repeatability” is the name of the game. Repeatability is the idea that, in automation, the same exact thing should happen in the same exact place every time.

Systems Integrator Roles

What is an automated systems integrator responsible for in regards to conveyance? Integrators will likely build, position, level, and program the conveyor systems. Systems integrators must take great care in many details to ensure that the conveyors will run smoothly. As examples, beds must be precisely assembled and leveled, and many parameters must be programmed into each motor and drive system.

Robotics

You can see many robots in the image above. Each robot is ready to go in and work on the next vehicle.

How does each robot know where to go to do its job? Integrators must carefully plan, teach, and test motion for each robot. Also, each robot must be programmed to control and receive feedback from its End Of Arm Tool, or “EOAT”.

The robot is just a means of moving the EOAT to where it needs to be. What is an EOAT? The EOAT is what actually gets the work done in a robotic factory. There are many different types of End Of Arm Tools. Some examples include:

  • Material Handlers: move parts from one place to another
  • Machine Vision: records data, locates parts, or provides error-prevention
  • Joining: welders, riveters, or other equipment that fastens parts together

The robots above look like they’re carrying weld guns. Weld guns are used to “spot weld” the frame of the vehicle together. Welders work by touching the top and bottom of a part of the vehicle. Then, they pass a high current from one side of the gun to the other. The heat generated by this current flow welds the metal of the vehicle together.

For this reason, each weld gun needs a weld controller. Each weld controller has to be setup to output a certain amount of power. Further, this power setting has to be carefully tested to ensure that the gun generates the right amount of heat to form a good weld.

Safety, Sensors, Feedback, And Motion

  • Gates, fencing, light curtains, E-Stop buttons, and other safety devices exist throughout the automation equipment to protect the people that work in the area
  • Also, sensors, switches, operator buttons, and other input devices inform the PLC on the status and position of various equipment
  • Lights, buzzers, displays, valves, motors, actuators, and other output devices move parts and help humans understand what the equipment is doing

Imagine the variety of these components present on a large automation line. There may be several sensors on one machine. Further, each sensor may work differently and come from a different manufacturer. An automated systems integrator must be able to install and configure all of these many, many different industrial automation devices.

Programmable Logic Controllers (PLC’s)

A “PLC” (Programmable Logic Controller) is the brains of the operation. PLC’s accept inputs from the equipment and sensors. The PLC then performs processing, and sets outputs based on its programming. These outputs then control the actions that take place in the automation.

For example, an air supply line has an analog pressure sensor. Our pressure sensor sends a signal to the PLC that represents the pressure read at the sensor. The PLC has been programmed to interpret the signal sent from the sensor. In the PLC’s logic, the signal’s value is converted back to a pressure reading.

Then, integrators have programmed the PLC to check this pressure reading against a minimum pressure. If the pressure reading is lower than the minimum pressure, the PLC turns on a pump. In this case, the PLC sets outputs to the pump that command it to turn on. This is an example of how integrators might program a PLC to manage air pressure in a supply line.

PLC’s must be carefully programmed for each application. This programming must take into consideration concerns for safety, quality, efficiency, ease of use, and repair.

Human-Machine Interfaces (HMI’s)

To allow operators to interact with the machinery without having to know how to program a PLC, there needs to be one or more “HMI” (Human-Machine Interface) panels. An HMI is a programmable display; it’s basically a fancy computer monitor. Using an HMI, someone can interact with the PLC through buttons and other input devices on the screen. Many modern HMI’s are rugged touchscreen interfaces, built to withstand the industrial environment.

An example of a custom Human-Machine Interface screen. This screen shows several feedback and control points for a well control system. HMI's are an example of what an automated systems integrator might be responsible for.
An example of a custom HMI screen used to control a well

What Jobs Are Available In Automated Systems Integration?

Often, a manufacturer will approach a systems integration company with a system it wants built. The integrator then designs and builds a complete automation solution that will assemble the manufacturer’s product. Building an automation line from scratch requires a variety of skills and talents.

  • Managers oversee the business side of the operation
  • Mechanical Engineers, Electrical Engineers, Automation Engineers, and engineers from other specialties will design the systems. Engineers will ensure that the equipment and programming meets the customer’s specifications and any appropriate codes and regulations. In this regard, engineers must dig into the little details to understand, for instance, what type of sensor will fit a particular application. Engineers may perform PLC programming, HMI design, and development of “templates” of logic for use in the PLC and robotics
  • Millwrights cut and weld large assemblies, operate lifting equipment, and fasten components to the building’s structure. Also, millwrights are often responsible for servicing and repairing large motors, gearboxes, and other heavy-duty mechanical devices
  • Toolmakers fabricate detailed components to tight tolerances
  • Robot Technicians set up and program robotic systems
  • Similarly, PLC Technicians set up and program the controllers
  • Industrial Electricians wire and install a wide range of electrical components, and may also program PLC’s, robots, and other electronic controllers

These are the core positions that automation integration shops employ. That is, at least in terms of building the automated systems. There may also be any number of other administrative positions in marketing, sales, finance, and other fields. On the technical side of the house, integrators may also employ Software Engineers, IT Technicians, and Facilities Engineers.

What Is It Like Working For An Automated Systems Integrator?

A typical work flow for an integration project might be as follows:

  • Firstly, project planning and materials acquisition
  • Machine assembly and programming at the integration facility
  • Transportation to the customer
  • Once on-site, machine installation, debug, and trials at the customer facility
  • On-site support as the customer takes on ownership of the equipment
  • Lastly, project wrap-up

Work Life As An Automation Integrator

Given that many integration projects consist of building an automated assembly line from scratch, integration work often occurs at the customer location. Depending on the size of the integration shop and the size of the project to which you’re assigned, very high travel percentages may be required. In other words, automated systems integrators may spend as much as 90-100% of their time away from home.

Customers who have purchased large or complicated automation solutions may require support well in to the launch of the project. Because of this, on-site support requirements can range from days to years. If you are a competent member of the team or have done a lot of the programming on a certain line, the company may ask you to stay on the road for months. In this case, many companies allow for you to travel home every couple of weeks.

Providing support for the customer can be stressful. The automation equipment that your company has built is what the customer uses to make money. For this reason, they may not be very happy when it breaks down.

On the other hand, you may be able to land a design or commissioning position that does not require any travel. Those performing “machine assembly” at the shop may be able to enjoy a similar lifestyle to other 9-to-5 positions. Even so, many shops will have “surges” in the pace of work. There may be slow periods followed by stretches where your boss wants you working overtime every day of the week.

Pay And Benefits For Automation Integrators

The good news is that many integration shops offer very competitive wages and benefits. While on the road, many shops pay both overtime and “Per Diem.” Per Diem is extra money the integration shop will pay you for each day away from home. This additional pay covers food and other costs.

There can be other perks of travelling. For example, opportunities to visit new places, work in cool facilities, and network with other professionals. When I have had to travel for automation work, I have generally been put up at nice or at least decent hotels and had dinner out on the company dime.

Whether or not you’re travelling, you may have the ability to participate in training and continuing education so that you can continue to grow technically. Not to mention, you’re building industrial automation equipment! If you’re a person who enjoys working with automation, it’s hard to find a more interesting or challenging job.

What Should I Study If I Want to Work For an Integrator?

Of course, the answer to this question depends on what type of position you’re pursuing.

  • For a position as a skilled tradesperson (millwright, toolmaker, electrician), see if you can land an internship
    • In certain areas, certificate or Associate’s programs may be available to help you get a job as a skilled tradesperson
  • For engineering, complete a Bachelor’s degree in the field of your choice (Electrical Engineering, Mechanical Engineering, etc.)
    • Automated systems integrators may also hire persons with degrees in Industrial Automation or Mechatronics
  • If you want to work as a PLC or robotics technician, you may be able to complete a local or online training program to help get your foot in the door
    • Industrial electricians with PLC or robot experience should be qualified for this type of position

In Summary

Integrators make magic happen – they turn disparate systems into one large, cohesive “machine.”  From custom assembly of heavy, metal fixtures, to robot and controller programming, an integration shop has to be able to do it all.

Are you aspiring to work for an integrator, or would you like to relate your own work experience in integration? If so, share your story in the comments below!

If you enjoyed this article, make sure you don’t miss out on future content! Take a moment to sign up below. You can expect about 1-4 emails per month with the type of content you’ve read in this article.

Thanks for reading! Feel free to reach out in the comments below with any questions or comments.

So, You Want to Be an Industrial Automation Engineer

Are you considering or aspiring to a career as an Industrial Automation Engineer or Controls Engineer? Awesome choice. Below, I’ll talk about what employers are looking for in an Industrial Controls Engineer. Additionally, I’ll cover what a typical workday is like and some pros and cons of automation industry jobs. Lastly, we’ll look at what a career in the automation industry might pay, and where and how to look for jobs! Keep reading for a glimpse inside the life of an Industrial Automation Engineer!

 A sample of ladder logic, a PLC programming language that uses electrical symbols on "ladder rungs." Industrial automation engineers frequently perform PLC programming using ladder logic.
“Ladder logic,” a common PLC programming language.  PLC’s are microprocessors (computers) that are used to control manufacturing equipment.  Image credit.

Are you ready to take the next step in your industrial automation career?

The Industrial Automation Connection’s goal is to help you connect with opportunities to advance yourself.


Let us put you in touch with organizations that are looking for people like you.

This service is always free, and it takes only a few moments to register. Click one of the buttons below to get started!

Controls Engineer Position Entry Requirements

For a bit of background, I work for Ford Motor Company as an Automation Engineer. Officially, my job title is Engineering Specialist, Controls. My Bachelor’s is actually in Information Technology, with a concentration in Software Development. Luckily, I had industry experience as an Automation Technician that helped me to get in to my current job.  

Much of my job focus is on developing and debugging Programmable Logic Controller (PLC) logic and robot programs. Because PLC’s and robots are just fancy computers, I’m often able to use the programming techniques, algorithmic thinking, and knowledge of networks that I learned in my degree program. Virtually all equipment at the plant where I work is on an Ethernet/IP network. For this reason, having an understanding of TCP/IP networks is very helpful when troubleshooting communication issues.

Despite my degree choice, if you’re interested in becoming an Industrial Automation Engineer, typical Bachelor’s degrees to pursue might include Electrical Engineering, Industrial Automation, or Mechatronics. Employers often cite a Bachelor’s in a field of study related to industrial automation engineering as a minimum hiring requirement.

Of course, hiring requirements are what the employer would like in the ideal case. There’s likely some wiggle room if you have the skills to do the job. Many technicians or electricians with PLC programming experience are able to become Controls Engineers.

Experience Requirements For Industrial Automation Engineering Jobs

Many employers list experience requirements when posting a job offering for Automation, Controls, or PLC Engineers. Are you worried about or having trouble moving directly into a Controls position out of school? If so, it may be helpful to first build some industry experience as an Industrial Electrician or Automation Technician.

There are also PLC training courses which can be very valuable in terms of gaining a foundation in PLC programming. Relevant training could possibly help you to get a foot in the door if you do not have experience.  In my perception, however, employers would prefer to see one or more years of industry experience programming and debugging PLC’s.

As a side note, I’m using the terms Controls, Controls Engineer, Automation Engineer, and Industrial Automation Engineer interchangeably. Someone in this career field may even be referred to as a “PLC Engineer”.
When looking for jobs, the only thing to be careful of is that the title “Automation Engineer” is now also used in the Software Testing field. Generally, if you see the terms “PLC,” “robot,” or “CNC” mentioned in the job listing, it is an Industrial Automation position and not a Software Test Automation position.

What Does An Automation Engineer Do Every Day?

Of course, the answer to this question depends on the company for which you work and your place in the hierarchy. I can only relate my own experience and that of the other Industrial Automation Engineers that I work with. I’d love to hear any comments from other Automation Controls Engineers. How do your responsibilities differ from my own? I would be happy to add your commentary to this post.

Control and automation engineering is a job of many hats. Most days, you will take on a variety of roles, from project management, to personnel administration, to emergency troubleshooting. In my position, my two primary job functions are breakdown response and Continuous Improvement.

Responding To Breakdowns

A plume of white smoke. If you've "let the smoke" out of your electronics, that's probably not good.
With electronics, you’re supposed to try to keep the smoke inside the equipment. If you see smoke coming out of a circuit board, that’s usually a bad sign.

The name of the game in industrial automation is production – a lot of production. Companies make money by building as many parts as possible during their production employees’ regularly-scheduled work day. For this reason, overtime hurts profits. Downtime hurts profits.

Manufacturing companies make money when the line is running and when it’s running fast. Jobs Per Hour, or “JPH”, is a key indicator of the health of a factory. There is, of course, some upper limit to how quickly any given process can occur. As a general rule: the more units you can build in a given time (hence, “Jobs Per Hour”), the better.

In such a fast-paced environment, and with equipment moving back and forth dozens, hundreds, or thousands of times per hour, things break! Cables fail, bearings wear out, sensors wiggle out of alignment; Murphy’s Law is active, big time. When things break, factories have a Maintenance Department that is responsible for figuring out what’s wrong and fixing it – as quickly as possible.

Automation And Control Engineer Roles On Breakdowns

Where I work, the Controls Engineer’s role on breakdowns is somewhere between supervision and high-tier tech support.  As a salaried employee, the Controls Engineer is responsible to the company for ensuring that the equipment gets back up and running as quickly as possible.  Sometimes, this means fixing the problem at hand. Sometimes, however, it means finding a creative way to work around the problem.  For this responsibility, you may need to lead and direct maintenance personnel. You will succeed as a Controls Engineer if you:

  • Keep a cool head under pressure
  • Become knowledgeable about your facility’s equipment
  • Direct others so that they are able to think and perform their best

I wouldn’t describe myself as an introvert, but I’m not the most extroverted person in the world, either. To succeed in breakdown response, I strive to become knowledgeable about as many systems as I can. If I know what to do to fix a problem, I can help to guide the team to success.

An animation of Johnny Five, a fictional robot, reading a book extremely quickly.
INPUT. MORE INPUT.  Image credit.

Follow-Up After Breakdowns

It’s also the Control and Automation Engineer’s job to follow up after breakdowns. I think of this role as “harvesting information”. It will be your job to figure out the nitty-gritty details of what went wrong. Once you understand the problem, you can communicate it to others. This helps your organization to become faster and more knowledgeable. Many breakdowns consist of the same problems, occurring over and over again.

Once your organization knows the cause of a problem, and how to correct it, you can improve your “MTTR”. MTTR, or “Mean Time To Repair”, is a term that describes how long it takes to recover from an issue on average. Reducing MTTR raises your “availability”. Availability is what percentage of your factory’s productive time is spent actually building units. When you raise availability, you often raise JPH – and that means success for your organization.

Filling Your Organization’s Knowledge Gaps

At times, you may be working with equipment that isn’t commonly used or that does not commonly break. A production line might be down, and there may not be anyone around who is deeply knowledgeable.  In these cases, the Automation Engineer is often asked to follow up on the problem. You may have to contact the equipment’s manufacturer, if necessary. Once you understand the issue, you may be asked to provide technical write-ups and how-to’s for the factory’s maintenance personnel.  Some skill in technical writing can come in handy here.

Another possibility is that you will have to perform a temporary repair to get the line going. In cases like this, you’ll need to come back during scheduled maintenance time to finish the job and restore the equipment to its original state. You will need solid organizational skills to ensure that you are resolving important issues when follow-up is needed.

While breakdowns have the potential to be stressful, they are also sometimes the best teachers. Nothing makes being knowledgeable about a piece of equipment more relevant than when it brings the factory to a halt and no one seems to know how to fix it.

No one begins a career in Controls knowing everything. When you work in automation controls engineering, every day should be an opportunity to learn more about the equipment, network, protocols, and infrastructure with which you’re working. You will greatly sharpen your skills and knowledge as a Controls Engineer by following up on the breakdowns.

Continuous Improvement

Breakdowns are emergent events (they just happen all of a sudden). When the factory stops making parts, it’s “all hands on deck” to get things moving again.  While breakdowns are the “event-driven” part of the job, my “default state” is working on Continuous Improvement projects.

Continuous Improvement is exactly what it sounds like; it is a practice and mindset of continually boosting production capabilities. This is done by working to improve safety, quality, cost, JPH, MTBF, MTTR*, or sometimes just making things easier for the people who supply and repair the automation lines.

*JPH, MTBF, and MTTR are metrics that summarize the productivity of equipment in an automated factory.  JPH, or “Jobs Per Hour,” is simply how many units you are building per hour.  As a general rule, the more, the better!  Mean Time Between Failure is how often, on average, you are able to use a piece of equipment before it breaks down. Mean Time To Repair, explained above, is how long, on average, it takes you to get the equipment back up and running when it does break.

Factories come in all shapes and sizes, but for me at Ford’s Super Duty Body shop, the factory is enormous. There are dozens of lines of automation just on my side of the shop, with each unit travelling more than a mile in its journey to become a truck! Continuous Improvement is all of the little changes and improvements made throughout the entire shop. These changes contribute to a gradual betterment of production, repair, and ease of use.

As an industrial automation engineer, Continuous Improvement is a focal point of my job. Luckily for me, this is a part of my job that I very much enjoy. As I’ll describe below, Continuous Improvement is a chance to develop solutions to my organization’s problems – and then make those solutions come to life.

A picture of a Ford Super Duty body; just the metal cab, unpainted with no trim installed. As an industrial automation engineer, you may have the opportunity to be part of some really cool processes.
This is what I build; the world’s first aluminum heavy-duty pickup.

How Do You Perform Continuous Improvement?

Continuous Improvement is what I find most rewarding, as the task is essentially this:

  • Identify a problem that, if fixed, would improve production or repair in some way
  • Come up with a way that you think you can fix it
  • Research and purchase the equipment, components, sensors, etc. that you would need to make it happen
  • Wait for the parts to come in and then work with other people in the factory to implement your solution
  • Stand back and marvel at the results!

It’s pretty cool to know that you’ve personally organized improvements that subtly alter the manufacturing process for every unit your organization builds. Projects come in all shapes and sizes.. I’ve worked on projects that took only a few hours, such as adding lights to show operators when to load parts, and I’ve worked improvements that took coordinated efforts during scheduled downtime over weeks, including a modernization project (upgrading the capabilities of older equipment by adding modern processors and interfaces).  

If you want to become an Industrial Automation Engineer, it will sure be helpful if you enjoy this kind of work. Your organization will have issues that it needs to solve through automation engineering – and you’ll be the one doing the engineering. As I mention above, Continuous Improvement is a part of my job that I love. I get to design and implement solutions, and then see those solutions come to life in front of me.

Continuous Improvement In Industrial Automation Engineering

At the time of this writing, I have a project active to automate the shutdown of my side of the shop at the end of each shift – a task that is currently handled manually on each automation line by Production Supervisors.  If everything goes my way, I’ll be taking a process that currently involves about two dozen people throughout the shop placing holds on their lines at certain times, and consolidating the same functionality into a single interface on which the Production Manager can stop the lines however they like for the next shift.

For this project, I will develop new PLC logic, create new PanelView screens, and work with smart, engaged people. Together, we’ll implement and debug the solution until it’s working flawlessly. Personally, I love to solve puzzles and figure out how things work. If you are that type of person as well, you were made for this part of the job.

An example Human-Machine Interface, of the type that might be found in an industrial factory. This particular screen shows the status of two pumps overlaid on top of a schematic of the overall system. Industrial automation engineers often design HMI screens and program corresponding PLC logic to drive the screens.
“PanelView” is a brand name for an “HMI,” or Human-Machine Interface. HMI’s, in this context, are rugged, programmable touch-screen displays found throughout a factory. You don’t want people to have to go to the controller logic every time there’s an issue. HMI’s provide a GUI with which operators and maintenance personnel can control the equipment.

Succeeding At Continuous Improvement

Success in executing Continuous Improvement will require many of the same skills that you will need when responding to breakdowns. You’ll need to track your projects and purchases. Further, you’ll need to share your vision with others and organize their efforts in completing the work.

Additionally, you may need to justify your purchases to your manager! You’ll need good judgment for what will help the shop and can be done affordably. You will need to know when to defend your ideas, and when to accept rejection gracefully, if appropriate.

You need to be able to approach things somewhat scientifically. It’s important to strive to understand the behavior of the systems that you’re working with to the greatest extent possible, given your available time, so that you can develop a solution that will function as you expect.

As a final note, Continuous Improvement is another excellent opportunity to acquire new and hone existing skills, as you won’t typically be under the pressure of the breakdown environment. When you’re doing development (writing new logic or developing new screens), it will often be in an offline, scheduled downtime type situation. This means you’ll have some room to breathe and figure out how to make things work the way you need them to work. You can play around with new equipment or software and gain experience and skills. You can then bring your new knowledge to future projects – and can call upon it at future breakdowns.

Pros And Cons Of Being An Automation Engineer

While I love my job, every position has some good and some bad. I want to give you an honest sense of what I see as the pros and cons of a career in Industrial Automation.

Industrial Automation Engineering Pros:

  • Technically Challenging I love learning and striving for mastery of new systems. If you’re like me, it’s awesome to be surrounded every day by a fortress of high-tech equipment. It’s your job to become the expert!
  • Pride My grandfather turned 100 the year that I was hired into my current job. I was incredibly proud to tell him that I would be working for Ford Motor Company as an Automation Engineer
  • Pay Many Controls positions should easily reach six figures. This is particularly true if a lot of travel and overtime are involved
  • Benefits If you’re hiring into a position as an Automation Engineer, chances are that it’s with an established company. You can likely expect a decent insurance and vacation package
  • Being a Part of Something – My work in automation has taken me to three countries (my short time in Germany was awesome). I’ve been to awesome major facilities including Ford and Tesla plants. Become a skilled Controls Engineer, and you could work for some of the biggest, most high-tech manufacturers on Earth

Cons Of Being An Industrial Automation Engineer:

  • Long Hours – I have worked 8’s, 10’s, and 12’s for Ford. I work 12-hour shifts on my current schedule, and have worked 12’s throughout most of my other experience in the industry
  • Rotating Shifts – Depending on the company and its seniority policies, you could be stuck periodically working a shift that you don’t like (night shift, weekends, etc.). In some organizations, you might be stuck on a shift you don’t like until someone leaves their position or the company
  • Travel – Depending on the position, extensive travel may be required. This can be very stressful for families. The flip side to this is that you will often be paid more while travelling. So, travel might be a pro, depending on your personal situation
  • Labor Relations – Speaking as a salaried employee in a union shop, your success may hinge on your ability to elicit the best out of others. If your shop operates under a union contract, you might also need to tread carefully in regards to what work you can and cannot perform on operational equipment
  • Stress – When the line is down, the company is losing money. People will be looking to you to get everything back up and running

Weird Schedules Could Be Good Or Bad

Let me offer another point of view in regards to my schedule: while the 12’s are long days, consider that the average person working a nine-to-five job works 10 days out of every 14. Nine-to-five employees work M-F, then off two days, then M-F, then off two, and so on.

Because I work 12’s, I only work 7 days out of every 14. I’d try to explain my schedule, but it’s much easier to just show you. I work the green days on this calendar:

A calendar showing the days that I work.
I told you it’s a weird schedule

Now, this looks a bit strange and horrible at first, but now consider:

  • I have 4 days off in a row every other week
  • Every other week, I only have a 2-day work week
  • If I take 2 days of vacation on my 2-day work week, I am off of work for 9 days

I’ve only ever seen this schedule implemented at Ford, but my point in mentioning this is that in manufacturing, there may be multiple options for you as far as what shift you work. You may be able to find something that really works well for your family and lifestyle.

Automation Engineer Salary – Let’s Talk Turkey

So, what can you expect in terms of salary as an Industrial Automation Engineer? Controls Engineering (again, I’m using the terms “controls” and “industrial automation” interchangeably) is a demanding field requiring solid technical, organizational, and people skills. Automation Engineers can expect to earn a decent income.

Unfortunately, the Bureau of Labor Statistics does not have a listing for “Industrial Automation Engineer,” “Controls Engineer,” or “Automation Engineer.” Here are the average salaries listed on various career and industry sites for “Controls Engineer” or “Electrical Controls Engineer” (this information last updated 30 Dec 2019):

SiteAverage Salary
Glassdoor$73,526
Indeed$81,834
Payscale.com$76,178
ZipRecruiter$82,078
ControlEng.com$100,339
Salary.com (Engineer I)$70,702
Salary.com (Engineer II)$88,665
Salary.com (Engineer III)$106,564

PLC Engineer Jobs – Where And How To Get One

If you have the right education and/or experience to pursue a position as a Controls Engineer (or Industrial Automation Engineer, or PLC Engineer, or however you want to say it 🙂 ), where should you start looking? Well, like many jobs, there are a lot of avenues by which you can apply for a position as an Automation Engineer. Overall, here are the angles of attack when trying to get hired on as a Controls Engineer:

We’re here for you.

The Industrial Automation Connection is built to connect you with opportunities to advance yourself.


Let us put you in touch with organizations that are looking for people like you.

This service is always free, and it takes only a few moments to register. Click one of the buttons below to get started!

Getting A Job As An Automation Engineer By Applying To Companies Directly

In my opinion, there are two steps you need to take before proceeding on any portion of your job search:

  1. First, get your resume in order!
  2. Then, get a set of professional, business-casual attire in order!

Got those taken care of? If so, let’s apply for jobs.

To make a long story short, there are a lot of ways to apply for a position as an Automation Engineer online. I don’t discount the notion of walking into a company wearing a tie (or other appropriate business clothing) and handing out your resume.

With that said, more and more companies are posting their openings online, which means they’re receiving more and more applications. It’s my personal opinion that you have to respond in kind. By this, I mean that if you are actively pursuing a career as a PLC engineer, you will need to apply for many, many openings in the hopes of receiving a few calls.

Applying for so many Controls Engineer positions online can be painful and time-consuming. With that said, the good news is that you’ll likely be exposed to a variety of positions. In your search, you might stumble upon a PLC Engineer job or two that really piques your interest. Here are some places you can look online for Automation Engineer careers:

Big Job Boards

Of course, there are the common, big-name job boards. Companies in many different industries are posting positions on these boards. There are a ton of these boards out there. Below, you’ll find just a few of the PLC engineer searches from the big boards:

Technical Recruiting Sites

There are also job postings through technical recruiters. Here are a few of the PLC engineer job searches on boards of this type:

Industry-Specific Job Boards

Have a passion for work in a particular industry? You can try job boards that are industry-specific, such as:

Additional Resources

Some other options might include applying for positions with contract companies, or applying to a company or for a position that you admire directly. There are a lot of places on the Internet to apply for a job. So, get your resume together, and get to it!

Reach Out To Your Network To Get Hired As A PLC Engineer

We all know the old adage, “it’s not what you know, it’s who you know”. While I don’t think this is always the case, it is certainly nice to have someone on the inside who can put in a good word for you. At the very least, it’s a lot easier to get an interview if someone mentions your name to the hiring manager.

  • Are you a student?
    • Your instructors likely know people and companies in the industry
    • See if they know of any job openings or if the school has any intern or co-op opportunities
  • Are you an intern?
    • Talk to people within the company or organization for which you work
    • Ask about what you need to do to align yourself for consideration for a full-time position
  • Go to job fairs and other industry gatherings!
    • Search in your area for job fairs, trade shows, etc. related to your industry
    • Dress professionally, bring some resumes in document protectors, and meet people!

Professional Networking In The Information Age

Not everyone is in a position where they know someone who can help them get an interview. While we aren’t all that lucky, we are all lucky enough to have access to an awesome networking platform – LinkedIn.

If you are searching for jobs, or searching for people to fill jobs, it’s absolutely my opinion that you should have an up-to-date, professional profile on LinkedIn. It’s free, it’s easy, and there are lots of people who are trying to fill the positions you’re applying for. Those people are on LinkedIn looking for people like you.

Talk To A Technical Recruiter About Controls Engineer Openings

As you can imagine, searching for a position as an Automation Engineer is hard work. Why take on all of that responsibility yourself, when you can engage someone else (or even several other people) to help you out?

You’re in luck. Technical recruiters will take on some of this workload for you. What’s more, you don’t pay a technical recruiter. The hiring company pays them. In fact, you’re doing them a bit of a favor by reaching out to them. You’ve saved them the time of finding you, the qualified candidate. So, for free, you basically get an agent who will try to link you and your resume with job openings in your area. That’s not a bad deal, if you ask me.

How To Connect With A Technical Recruiter

Linking up with a technical recruiter is easy:

  1. First, open your web browser
  2. Next, type “technical recruiting” in Google
  3. Then, click the Maps option
  4. Lastly, call a recruiter

If you do this, I bet you an ice cream cone that there will be several technical recruiting firms in the city closest to you. With those easy steps, you’ll be on the phone with a technical recruiter.

So, make sure your resume’s up-to-date and call a couple of these folks up. Let them know what education and experience you can bring to the table as a future Controls Engineer. In my experience, there will be several people who are sitting by their phone right now, hoping that someone like you will call. Well, assuming it’s during working hours on a business day, anyway.

Let Us Link You With Opportunities

Wouldn’t you know it, but our organization is literally built to help you advance your career in industrial automation?

Click the link above and spend just a few moments telling us about yourself and your goals. We’ll work to get your name out there with the kinds of organizations you’re hoping to become a part of. We want to help you move forward in your automation career.

Is A Controls Job Right For You?

To me, the biggest question you have to ask yourself is whether you like solving problems and learning about new equipment.  

  • Do your interests include electronics and programming?
  • Are you the type of person who has to read and tinker until you understand what you’re doing?

If so, then you might do well as an Automation Engineer. If you’re in it for the money, you could probably fake it till you make it even if your interests aren’t well-aligned. With that said, the engineers I know who are very successful are people who gobble up as much knowledge as they can at every turn, and are regarded as world-class experts in their specialties.

Are you currently applying for a position as an Automation Engineer? Are you still in college, considering possible career paths for your future? Wherever you are in your journey, tell us about it in the comments below. We love to hear from other technicians and engineers.


Was this information helpful? If so, take just a moment to subscribe to our newsletter. We’ll keep you posted whenever we have new content available for you!