Inst ToolsInst ToolsInst Tools
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
  • Request
Search
  • Books
  • Software
  • Projects
  • Process
  • Tools
  • Basics
  • Formula
  • Power Plant
  • Root Cause Analysis
  • Electrical Basics
  • Animation
  • Standards
  • 4-20 mA Course
  • Siemens PLC Course
Reading: Product Sticker Machine with Weighing PLC Program
Share
Font ResizerAa
Inst ToolsInst Tools
Font ResizerAa
  • Courses
  • Design
  • PLC
  • Interview
  • Control System
Search
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
  • Request
Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Inst Tools > Blog > PLC Tutorials > Product Sticker Machine with Weighing PLC Program

Product Sticker Machine with Weighing PLC Program

Learn how to program a Product Sticker Machine with weighing function using PLC. Perfect for students and novice PLC programmers.

Last updated: September 24, 2024 5:12 am
Editorial Staff
PLC Tutorials
No Comments
Share
5 Min Read
SHARE

This article discusses Product Weighing and Sticker machine Programs in industrial packing machines.

Contents
Product Sticker MachineIO DetailsPLC Program

Product Sticker Machine

The PLC system has 2 buttons, the START_SYSTEM (0.00) button is used to Turn On the system, and the STOP_SYSTEM (0.01) button is used to Turn Off the system. This system also uses the SENS_PRODUCT (0.02) sensor to detect products and the Limit Switch LS_PISTON_STAMP (0.03) for the Piston Stamp Interlock.

When the START_SYSTEM (0.00) button is pressed, the CONVEYOR (100.00) Output will be ON.

When the sensor SENS_PRODUCT (0.02) detects a product, the CONVEYOR (100.00) Output will be OFF for 5 seconds to weigh the product. Product weighing data will be stored in memory word WEIGHING_INDICATOR (D0).

If the product weight is equal to 15 kg (#15), then the PISTON_STAMP (100.01) Output will be ON to give a sticker to the Product. The PISTON_STAMP (100.01) Output will be OFF when the Limit Switch LS_PISTON_STAMP (0.03) is in the HIGH state.

If in 2 seconds the weight of the product is not equal to 15kg (#15), then the ALARM Output (100.02) will be ON.

Each product given a sticker will be recorded in the memory word COUNTER_PRODUCT (D100). The value in the memory word COUNTER_PRODUCT (D100) will be reset to zero “0” when the STOP_SYSTEM (0.01) button is Pressed.

Product Sticker Machine with Weighing PLC Program

IO Details

CommentInput (I)Output(Q)Memory WordMemory BitsTimer
START_SYSTEM0.00    
STOP_SYSTEM0.01    
SENS_PRODUCT0.02    
LS_PISTON_STAMP0.03    
CONVEYOR 100.00   
PISTON_STAMP 100.01   
ALARM 100.02   
TIMER_1    T0000
TIMER_2    T0001
SYSTEM_ON   W0.00 
CUTOFF   W0.01 
WEIGHING_INDICATOR  D0  
COUNTER_PRODUCT  D100  

PLC Program

RUNG 0 (START_SYSTEM)

In this Rung, when the START_SYSTEM (0.00) button is Pressed, the memory bit SYSTEM_ON (W0.00) changes to the HIGH state. The memory bit SYSTEM_ON (W0.00) remains in the HIGH state even though the START_SYSTEM (0.00) button has been Released because it uses Latching.

The memory bit SYSTEM_ON (W0.00) will change to LOW state if the STOP_SYSTEM (0.01) button is Pressed.

Sticker machine with weighing PLC logic

RUNG 1 (CONVEYOR)

When the NO contact of memory bit SYSTEM_ON (W0.00) is in the HIGH state, the CONVEYOR (100.00) Output will be ON.

The CONVEYOR (100.00) Output will be OFF if the NO contact of memory bit SYSTEM_ON (W0.00) is in the LOW state or the NC contact of memory bit CUTOFF (W0.01) is in the HIGH state.

RUNG 2 (CUTOFF CONVEYOR)

In this Rung, when the NO contact of memory bit SYSTEM_ON (W0.00) and Sensor SENS_PRODUCT (0.02) in the HIGH state, then the memory bit CUTOFF (W0.01) will change to a HIGH state and the timer TIMER_1 (T0000) will Start counting up to 5 seconds.

The memory bit CUTOFF (W0.01) will change to a LOW state when the NC contact of Limit Switch LS_PISTON_STAMP (0.03) is in the HIGH state.

RUNG 3 (PISTON STAMP)

The Output PISTON_STAMP (100.01) will be ON when the NO contact of memory bit SYSTEM_ON (W0.00) and TIMER_1 (T0000) are in a HIGH state and the value in memory word WEIGHING_INDICATOR (D0) is equal to “15”.

The PISTON_STAMP (100.01) Output will be OFF if the NC contact of Limit Switch LS_PISTON_STAMP (0.03) is in the HIGH state.

PLC program for weighing system

RUNG 4 (ALARM)

When the NO contacts of memory bit SYSTEM_ON (W0.00) and TIMER_1 (T0000) are in a HIGH state and the value in memory word WEIGHING_INDICATOR (D0) is not equal to “15”, then the timer TIMER_2 (T0001) will Start counting up to 2 seconds.

When the timer TIMER_2 (T0001) has reached the “Set value”, the ALARM (100.02) Output will be ON.

RUNG 5 (COUNTER PRODUCT)

When the NO contact of memory bit SYSTEM_ON (W0.00) and the Limit Switch LS_PISTON_STAMP (0.03) are in the HIGH state, the value in memory word COUNTER_PRODUCT (D100) will increase (+1).

Weighing system for sticker machine PLC

RUNG 6 (RESET COUNTER)

When the STOP_SYSTEM (0.01) button is pressed, the value in the memory word COUNTER_PRODUCT (D100) will be reset to zero “0”.

Read Next:

  • Automatic Vacuum Cleaner PLC Programming
  • Automatic Exhaust Fan XG5000 PLC Program
  • Perfume Mixing and Filling System PLC Logic
  • Product Painting with Omron PLC Program
  • Attendance System Program in Omron PLC

Don't Miss Our Updates
Be the first to get exclusive content straight to your email.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
You've successfully subscribed !

Continue Reading

Parts of PLC
PLC Programming for Baking with Auto and Manual Modes
Modbus Communication between Delta PLC with VFD
PLC Ladder Logic Simulator Mobile Apps For Android
How to Work with Allen Bradley RsLogix Emulator?
Auto and Manual Liquid Tank System: PLC Program Example
Share This Article
Facebook Whatsapp Whatsapp LinkedIn Copy Link
Share
Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

128.3kFollowersLike
69.1kFollowersFollow
210kSubscribersSubscribe
38kFollowersFollow

Categories

Explore More

Toggle Switch & Sensor: Conveyor and Puncher PLC Program
Working Principle of Single Phase Preventer Relay
PLC Program for Daily Production Record
How a PLC do the Scaling for a Sensor ?
PLC Count values higher than 999
SCADA Hardware and Software
Open Source PLC and SCADA Software
Everything You Need to Know About PLC Battery

Keep Learning

Function of Racks in PLC System

Function of Racks in PLC – Types of SIEMENS S7-400 PLC Racks

Cybersecurity in PLC

Cybersecurity in PLC

PLC Ladder Logic Example

PLC Ladder Logic Example

S7-1200 Hardware Configuration

S7-1200 Hardware Configuration – Siemens PLC Tutorials

PLC Logic to identify empty bottles in Packing

Automatic Empty Bottle detection using PLC Logic

Difference Between Microcontroller and PLC

Difference Between Microcontroller and PLC

Automatic Lamp Control in Storage Facility

PLC Program for Automatic Lamp Control in Storage Facility

Star-Delta PLC programming with 1 button

How to Program a Star-Delta System using 1 Button in PLC?

Learn More

Control Systems Questions & Answers

Control Systems Objective Questions & Answers – Set 7

Questions and Answers in Electrical Machines

Questions and Answers in Electrical Machines

Flow Transmitter Output Current Calculation

Calculate Flow Transmitter Output Current

Wet Dust Suppression system

Wet Dust Suppression System

Manual Call Point Operating Principle

What is Manual Call Point (MCP) ?

Sensors Used in Automotive Vehicles

Different Types of Sensors used in Automotive Vehicles

Less than 40% available Plant Air Compressors made available 100%

Less than 40% available Plant Air Compressors made available 100% for Operations

Measuring Instruments

Flow Instruments – Selection, Principle & Application

Menu

  • About
  • Privacy Policy
  • Copyright

Quick Links

  • Learn PLC
  • Helping Hand
  • Part Time Job

YouTube Subscribe

Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?