{"id":58865,"date":"2023-06-29T08:00:00","date_gmt":"2023-06-29T02:30:00","guid":{"rendered":"https:\/\/ye1o34zhk8.onrocket.site\/?p=58865"},"modified":"2023-06-16T13:32:45","modified_gmt":"2023-06-16T08:02:45","slug":"difference-between-timer-and-counter","status":"publish","type":"post","link":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/","title":{"rendered":"Difference between Timer and Counter &#8211; PLC Basics"},"content":{"rendered":"\n<p>When you <strong>develop a PLC logic<\/strong>, you always need timers and counters. Any cycle in an <a href=\"https:\/\/instrumentationtools.com\/process-automation\/\" target=\"_blank\" rel=\"noreferrer noopener\">automation process<\/a> is generally incomplete without the use of timers and counters. You need them to execute a task after a certain time or keep the task on \/ off for a certain time. Its use depends on the application to be developed.<\/p>\n\n\n\n<p>And, before going deeply into advanced <a href=\"https:\/\/automationcommunity.com\/plc-instructions\/\" target=\"_blank\" rel=\"noreferrer noopener\">instructions of PLC<\/a>, a programmer must first understand these basic blocks to implement them properly and to get assistance in learning the advanced blocks more easily.<\/p>\n\n\n\n<p>In this article, we will learn the difference between timers and counters in PLC programming.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-a-timer\">What is a Timer?<\/h2>\n\n\n\n<p>A <strong>timer is an instruction<\/strong> that is used to turn on or off an output after a certain delay. For example, if you want to turn on a lamp after 5 seconds, then use a timer to execute this task.<\/p>\n\n\n\n<p>A <a href=\"https:\/\/instrumentationtools.com\/timers-in-plc\/\" target=\"_blank\" rel=\"noreferrer noopener\">timer<\/a> will take an input and when the input turns on, then its timing will start. After the time of 5 seconds elapses, then the timer output will turn on which turns on the lamp indirectly. This we are talking about is the normal timer on the type.<\/p>\n\n\n\n<p>A timer has more two types \u2013 timer off and pulse timer. In short, the basic function is the same \u2013 execute a task after a certain delay.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"1257\" height=\"796\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2023\/06\/Difference-between-Timer-and-Counter-PLC-Basics.png\" alt=\"Difference between Timer and Counter - PLC Basics\" class=\"wp-image-58868\"\/><\/figure>\n\n\n\n<p>Refer to the above image for understanding more correctly. A timer has four inputs and outputs \u2013 input, set value, current value, and output. An input takes the condition for starting a timer, a set value is used to take the set timer value, the current value shows the current timer value running and the output is used to turn on or off the variable connected to it.<\/p>\n\n\n\n<p>When the <a href=\"https:\/\/instrumentationtools.com\/plc-program-for-iec-timers-ton-tof-tp-tonr-used-in-s7-1200\/\" target=\"_blank\" rel=\"noreferrer noopener\">PLC timer<\/a> gets the input and if the set value is 5 seconds, the timer starts as 1, 2, and 3, and so on till 5. When 5 seconds have been completed, the output turns on. When the input goes off, the timer&#8217;s current value immediately goes to zero.<\/p>\n\n\n\n<p>Whether the timer was running or not; if the input is off, then the timer will not start and its output and current value will be zero. This is the functioning of a TON (timer on delay) timer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a Counter?<\/h2>\n\n\n\n<p>A <strong>counter is an instruction<\/strong> that is used to turn on an output after a set count has been reached. The count can either increment or decrement.<\/p>\n\n\n\n<p>For example, if you want to turn on a lamp after a <a href=\"https:\/\/instrumentationtools.com\/sequential-operation-of-output-bits\/\" target=\"_blank\" rel=\"noreferrer noopener\">push button<\/a> has been pressed five times, then use a counter to execute this task. A counter will take an input and when the input turns on, then its count will increment to 1.<\/p>\n\n\n\n<p>When the input goes off, nothing will happen. When it again receives the input, the count will increment to 2. After the count of 5 elapses, then the counter output will turn on which turns on the lamp indirectly. This we are talking about is the counter-up type.<\/p>\n\n\n\n<p>A counter has one more type \u2013 counter down. In short, the basic function is the same \u2013 execute a task after a certain count.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"1798\" height=\"986\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2023\/06\/PLC-Tutorials-Timers-and-Counters.png\" alt=\"PLC Tutorials - Timers and Counters\" class=\"wp-image-58869\"\/><\/figure>\n\n\n\n<p>Refer to the above image for understanding more correctly. A counter has five inputs and outputs \u2013 count input, reset input, set value, current value, and output. A count input takes the condition for counting, reset input takes the condition for resetting the <a href=\"https:\/\/instrumentationtools.com\/delta-plc-counter-with-comparison\/\" target=\"_blank\" rel=\"noreferrer noopener\">counter<\/a>, the set value is used to take the set counter value, the current value shows the current counter value running and the output is used to turn on or off the variable connected to it.<\/p>\n\n\n\n<p>When the counter gets the count input and if the set value is 5, the counter increments to 1 and so on till 5; at the receipt of each pulse in the count input (means the count input will have to be turned on and off 5 times). When 5 counts have been completed, the output turns on.<\/p>\n\n\n\n<p>Now, even if the count input pulse is given, the counter will go on increasing after 5 and the output too will remain on. To again bring back the counter state to zero, you have to give reset input. When this input is given, the counter current value becomes zero and the output too turns off. So, it is similar to <a href=\"https:\/\/instrumentationtools.com\/concept-of-latching-in-plc\/\" target=\"_blank\" rel=\"noreferrer noopener\">latching-type functioning<\/a>. To unlatch the counter, you will have to reset it. This is the functioning of a CTU (count up) counter.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Difference between Timer and Counter<\/h2>\n\n\n\n<p>The main differences between timers and counters in a PLC are as follows.<\/p>\n\n\n\n<ol class=\"wp-block-list\" type=\"1\">\n<li>A timer needs to have its input continuously for turning on a variable, but a counter need not to have its input continuously. So, a timer works on continuous conditions, whereas a counter works on pulse conditions.<\/li>\n\n\n\n<li>If the timer input is removed, then its output will go back to zero states; but if the counter input is removed, then to the counter will hold its last value.<\/li>\n\n\n\n<li>A timer does not have reset input, whereas a counter requires reset input to get back the counter to its original state.<\/li>\n\n\n\n<li>The types of timers are \u2013 <a href=\"https:\/\/instrumentationtools.com\/on-delay-timer-using-plc\/\" target=\"_blank\" rel=\"noreferrer noopener\">timer on<\/a>, <a href=\"https:\/\/instrumentationtools.com\/off-delay-timer-using-plc\/\" target=\"_blank\" rel=\"noreferrer noopener\">timer off<\/a>, and <a href=\"https:\/\/instrumentationtools.com\/pulse-timer-instruction-in-plc-programming\/\" target=\"_blank\" rel=\"noreferrer noopener\">timer pulse<\/a>. The types of counters are \u2013 counter up and counter down.<\/li>\n\n\n\n<li>A timer set value can be in seconds, minutes, or milliseconds; but a counter set value is a fixed integer.<\/li>\n<\/ol>\n\n\n\n<p id=\"block-fa093b2f-a684-4d2d-a4ff-e1c9bb96f3f7\">If you liked this article, then please subscribe to our <a href=\"http:\/\/youtube.com\/instrumentationtools?sub_confirmation=1\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube Channel<\/a> for Instrumentation, Electrical, PLC, and SCADA video tutorials.<\/p>\n\n\n\n<p id=\"block-b1505b62-f6bb-4e07-9c0d-370b65374fc9\">You can also follow us on <a href=\"https:\/\/www.facebook.com\/instrumentationtoolss\" target=\"_blank\" rel=\"noreferrer noopener\">Facebook<\/a> and <a href=\"https:\/\/twitter.com\/InstTools\" target=\"_blank\" rel=\"noreferrer noopener\">Twitter<\/a> to receive daily updates.<\/p>\n\n\n\n<p id=\"block-1e7a21d7-997d-4a1d-ac19-78cbdde0f0b6\"><strong>Read Next:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/instrumentationtools.com\/plc-programmer-salary-and-future-career-scope\/\" target=\"_blank\" rel=\"noreferrer noopener\">PLC Programmer Salary<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/firmware-version-in-siemens-plc\/\" target=\"_blank\" rel=\"noreferrer noopener\">Firmware Version of a PLC<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/how-to-read-the-plc-datasheet\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Read the PLC Datasheet?<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/using-clock-memory-bits-in-tia-portal-siemens-plc\/\" target=\"_blank\" rel=\"noreferrer noopener\">Memory Bits in Siemens PLC<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/fifo-and-lifo-sequences-in-plc\/\" target=\"_blank\" rel=\"noreferrer noopener\">FIFO and LIFO Sequences in PLC<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.<\/p>\n","protected":false},"author":101029,"featured_media":58869,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_mo_disable_npp":"","footnotes":""},"categories":[6],"tags":[51601,41947,53083,41937,53085,43204,53084,41936,8331,51655,42554,8225,10532,10571,10636,10634,52064,51707,87847,87864,43447,43229,87863,41939,88215,41943,43230,41940,87848,51710,42604,87865,87858,87859,87861,51709,43234],"class_list":{"0":"post-58865","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-plc","8":"tag-counters-in-plc-ladder-logic","9":"tag-on-delay-timer","10":"tag-plc-counter","11":"tag-plc-counter-functional-block","12":"tag-plc-counter-instruction","13":"tag-plc-counter-instructions","14":"tag-plc-counter-logic","15":"tag-plc-counter-logic-example","16":"tag-plc-counter-problems","17":"tag-plc-counter-programming-examples","18":"tag-plc-counter-questions","19":"tag-plc-counter-tutorial","20":"tag-plc-ladder-logic-counter","21":"tag-plc-ladder-logic-counter-example","22":"tag-plc-ladder-logic-timer","23":"tag-plc-ladder-logic-timer-examples","24":"tag-plc-on-delay-timer","25":"tag-plc-programming-timer-examples","26":"tag-plc-timer","27":"tag-plc-timer-and-counter","28":"tag-plc-timer-and-counter-instructions","29":"tag-plc-timer-counter-instructions","30":"tag-plc-timer-definition","31":"tag-plc-timer-example","32":"tag-plc-timer-function","33":"tag-plc-timer-instruction","34":"tag-plc-timer-instructions","35":"tag-plc-timer-program","36":"tag-plc-timer-programming","37":"tag-plc-timer-programming-examples-pdf","38":"tag-plc-timer-questions","39":"tag-plc-timer-types","40":"tag-plc-timers-and-counters","41":"tag-plc-timers-and-counters-pdf","42":"tag-plc-timers-and-counters-ppt","43":"tag-siemens-plc-programming-timer-examples","44":"tag-siemens-plc-timer-instructions"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Difference between Timer and Counter - PLC Basics<\/title>\n<meta name=\"description\" content=\"In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Difference between Timer and Counter - PLC Basics\" \/>\n<meta property=\"og:description\" content=\"In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/\" \/>\n<meta property=\"og:site_name\" content=\"Inst Tools\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/instrumentationtoolss\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-29T02:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2023\/06\/PLC-Tutorials-Timers-and-Counters.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1798\" \/>\n\t<meta property=\"og:image:height\" content=\"986\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Viral Nagda\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Difference between Timer and Counter - PLC Basics\" \/>\n<meta name=\"twitter:description\" content=\"In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.\" \/>\n<meta name=\"twitter:creator\" content=\"@insttools\" \/>\n<meta name=\"twitter:site\" content=\"@insttools\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Viral Nagda\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/\"},\"author\":{\"name\":\"Viral Nagda\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/person\\\/37a7ca9af8b0c120c1cda12ecdcfe6f7\"},\"headline\":\"Difference between Timer and Counter &#8211; PLC Basics\",\"datePublished\":\"2023-06-29T02:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/\"},\"wordCount\":949,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/PLC-Tutorials-Timers-and-Counters.png\",\"keywords\":[\"counters in plc ladder logic\",\"On Delay Timer\",\"PLC Counter\",\"PLC Counter Functional Block\",\"PLC Counter Instruction\",\"plc counter instructions\",\"PLC Counter Logic\",\"PLC Counter Logic Example\",\"plc counter problems\",\"plc counter programming examples\",\"plc counter questions\",\"plc counter tutorial\",\"plc ladder logic counter\",\"plc ladder logic counter example\",\"plc ladder logic timer\",\"plc ladder logic timer examples\",\"PLC ON Delay Timer\",\"plc programming timer examples\",\"PLC Timer\",\"plc timer and counter\",\"plc timer and counter instructions\",\"plc timer counter instructions\",\"plc timer definition\",\"PLC Timer Example\",\"plc timer\u00a0function\",\"PLC timer instruction\",\"plc timer instructions\",\"PLC Timer Program\",\"PLC Timer Programming\",\"plc timer programming examples pdf\",\"plc timer questions\",\"plc timer types\",\"plc timers and counters\",\"plc timers and counters pdf\",\"plc timers and counters ppt\",\"siemens plc programming timer examples\",\"siemens plc timer instructions\"],\"articleSection\":[\"PLC Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/\",\"name\":\"Difference between Timer and Counter - PLC Basics\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/PLC-Tutorials-Timers-and-Counters.png\",\"datePublished\":\"2023-06-29T02:30:00+00:00\",\"description\":\"In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/#primaryimage\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/PLC-Tutorials-Timers-and-Counters.png\",\"contentUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/PLC-Tutorials-Timers-and-Counters.png\",\"width\":1798,\"height\":986,\"caption\":\"PLC Tutorials - Timers and Counters\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/difference-between-timer-and-counter\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/instrumentationtools.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Difference between Timer and Counter &#8211; PLC Basics\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#website\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/\",\"name\":\"Instrumentation Tools\",\"description\":\"Instrumentation, Electrical, PLC, Tutorials\",\"publisher\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\"},\"alternateName\":\"Inst Tools\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/instrumentationtools.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\",\"name\":\"Instrumentation Tools\",\"alternateName\":\"Inst Tools\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Instrumentation-Tools-Logo.png\",\"contentUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Instrumentation-Tools-Logo.png\",\"width\":1024,\"height\":1024,\"caption\":\"Instrumentation Tools\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/instrumentationtoolss\\\/\",\"https:\\\/\\\/x.com\\\/insttools\",\"https:\\\/\\\/mastodon.social\\\/@InstrumentationTools\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/instrumentationtools\\\/\",\"https:\\\/\\\/whatsapp.com\\\/channel\\\/0029VaAbUecLNSa4rDPOV31o\",\"https:\\\/\\\/t.me\\\/+u3qORX5FKec1NjA1\",\"https:\\\/\\\/www.instagram.com\\\/instrumentationtools\\\/\",\"https:\\\/\\\/youtube.com\\\/instrumentationtools\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/person\\\/37a7ca9af8b0c120c1cda12ecdcfe6f7\",\"name\":\"Viral Nagda\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g\",\"caption\":\"Viral Nagda\"},\"description\":\"Electronics Engineer with 12+ years of experience in industrial automation. Blogging is my hobby and I write articles and blogs on industrial automation.\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/author\\\/viral-nagda\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Difference between Timer and Counter - PLC Basics","description":"In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/","og_locale":"en_US","og_type":"article","og_title":"Difference between Timer and Counter - PLC Basics","og_description":"In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.","og_url":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/","og_site_name":"Inst Tools","article_publisher":"https:\/\/www.facebook.com\/instrumentationtoolss\/","article_published_time":"2023-06-29T02:30:00+00:00","og_image":[{"width":1798,"height":986,"url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2023\/06\/PLC-Tutorials-Timers-and-Counters.png","type":"image\/png"}],"author":"Viral Nagda","twitter_card":"summary_large_image","twitter_title":"Difference between Timer and Counter - PLC Basics","twitter_description":"In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.","twitter_creator":"@insttools","twitter_site":"@insttools","twitter_misc":{"Written by":"Viral Nagda","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/#article","isPartOf":{"@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/"},"author":{"name":"Viral Nagda","@id":"https:\/\/instrumentationtools.com\/#\/schema\/person\/37a7ca9af8b0c120c1cda12ecdcfe6f7"},"headline":"Difference between Timer and Counter &#8211; PLC Basics","datePublished":"2023-06-29T02:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/"},"wordCount":949,"commentCount":0,"publisher":{"@id":"https:\/\/instrumentationtools.com\/#organization"},"image":{"@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/#primaryimage"},"thumbnailUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2023\/06\/PLC-Tutorials-Timers-and-Counters.png","keywords":["counters in plc ladder logic","On Delay Timer","PLC Counter","PLC Counter Functional Block","PLC Counter Instruction","plc counter instructions","PLC Counter Logic","PLC Counter Logic Example","plc counter problems","plc counter programming examples","plc counter questions","plc counter tutorial","plc ladder logic counter","plc ladder logic counter example","plc ladder logic timer","plc ladder logic timer examples","PLC ON Delay Timer","plc programming timer examples","PLC Timer","plc timer and counter","plc timer and counter instructions","plc timer counter instructions","plc timer definition","PLC Timer Example","plc timer\u00a0function","PLC timer instruction","plc timer instructions","PLC Timer Program","PLC Timer Programming","plc timer programming examples pdf","plc timer questions","plc timer types","plc timers and counters","plc timers and counters pdf","plc timers and counters ppt","siemens plc programming timer examples","siemens plc timer instructions"],"articleSection":["PLC Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/","url":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/","name":"Difference between Timer and Counter - PLC Basics","isPartOf":{"@id":"https:\/\/instrumentationtools.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/#primaryimage"},"image":{"@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/#primaryimage"},"thumbnailUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2023\/06\/PLC-Tutorials-Timers-and-Counters.png","datePublished":"2023-06-29T02:30:00+00:00","description":"In this article, we will learn the difference between timer and counter in PLC programming and understand the basic concepts.","breadcrumb":{"@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/#primaryimage","url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2023\/06\/PLC-Tutorials-Timers-and-Counters.png","contentUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2023\/06\/PLC-Tutorials-Timers-and-Counters.png","width":1798,"height":986,"caption":"PLC Tutorials - Timers and Counters"},{"@type":"BreadcrumbList","@id":"https:\/\/instrumentationtools.com\/difference-between-timer-and-counter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/instrumentationtools.com\/"},{"@type":"ListItem","position":2,"name":"Difference between Timer and Counter &#8211; PLC Basics"}]},{"@type":"WebSite","@id":"https:\/\/instrumentationtools.com\/#website","url":"https:\/\/instrumentationtools.com\/","name":"Instrumentation Tools","description":"Instrumentation, Electrical, PLC, Tutorials","publisher":{"@id":"https:\/\/instrumentationtools.com\/#organization"},"alternateName":"Inst Tools","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/instrumentationtools.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/instrumentationtools.com\/#organization","name":"Instrumentation Tools","alternateName":"Inst Tools","url":"https:\/\/instrumentationtools.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/instrumentationtools.com\/#\/schema\/logo\/image\/","url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2018\/10\/Instrumentation-Tools-Logo.png","contentUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2018\/10\/Instrumentation-Tools-Logo.png","width":1024,"height":1024,"caption":"Instrumentation Tools"},"image":{"@id":"https:\/\/instrumentationtools.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/instrumentationtoolss\/","https:\/\/x.com\/insttools","https:\/\/mastodon.social\/@InstrumentationTools","https:\/\/www.linkedin.com\/company\/instrumentationtools\/","https:\/\/whatsapp.com\/channel\/0029VaAbUecLNSa4rDPOV31o","https:\/\/t.me\/+u3qORX5FKec1NjA1","https:\/\/www.instagram.com\/instrumentationtools\/","https:\/\/youtube.com\/instrumentationtools"]},{"@type":"Person","@id":"https:\/\/instrumentationtools.com\/#\/schema\/person\/37a7ca9af8b0c120c1cda12ecdcfe6f7","name":"Viral Nagda","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g","caption":"Viral Nagda"},"description":"Electronics Engineer with 12+ years of experience in industrial automation. Blogging is my hobby and I write articles and blogs on industrial automation.","url":"https:\/\/instrumentationtools.com\/author\/viral-nagda\/"}]}},"_links":{"self":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts\/58865","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/users\/101029"}],"replies":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/comments?post=58865"}],"version-history":[{"count":0,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts\/58865\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/media\/58869"}],"wp:attachment":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/media?parent=58865"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/categories?post=58865"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/tags?post=58865"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}