{"id":13518,"date":"2022-09-23T14:12:31","date_gmt":"2022-09-23T14:12:31","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=13518"},"modified":"2022-09-23T14:12:35","modified_gmt":"2022-09-23T14:12:35","slug":"controllogix-branching-in-ladder-logic","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/","title":{"rendered":"ControlLogix Branching in Ladder Logic"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to ControlLogix Branching in Ladder Logic<\/h2>\n\n\n\n<p>ControlLogix Branching in Ladder Logic allows us to create &#8220;OR&#8221; Statements.  Sometimes getting a branch on the right place in a rung is tricky for beginners.  In this post, we&#8217;ll take a closer look at branching,  We&#8217;ll discuss different ways to set up branches, and how to set them up correctly.<\/p><div id=\"bryce-444323831\" class=\"bryce-afterfirst bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"7728240895\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>\n\n\n\n<p>Different techniques to add branches include: drag and drop, text entry, and menu entry with your right mouse button.  Additionally, you can add or delete branches or branch levels whether you are online or offline.  It&#8217;s important to realize though, that to perform an online edit, you will need to follow the <a href=\"https:\/\/bryceautomation.com\/index.php\/2017\/06\/04\/controllogix-online-editing\/\">online editing procedure.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Basic Logic Concepts<\/h2>\n\n\n\n<p>There are several types of logic gates, but for this post, most importantly, we&#8217;ll discuss AND, OR, and NOT.  For the most part, conditions that are AND&#8217;d together are in series.  On the other hand, conditions that are ORd together are in parallel.  A NOT Condition looks for a value of zero on it&#8217;s operand (tag) to be true.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">AND Logic<\/h3>\n\n\n\n<p>Here, we have a very basic rung.  We would say this in English as &#8220;If A AND B then C&#8221;  If A is true, then the processor moves on to look at B.  If it&#8217;s also true, then it writes a value of 1 to C.  Both instructions must be true.  If A is false, there is no need to scan B.  The processor could just write the value of 0 to C.  For this reason, a good programmer will place whatever is most likely to be false first on the rung when it&#8217;s in series with other conditions.  In the long run, this could save some execution time.  Here we are using the XIC instructions.  The XIC instructions look for a value of 1 to be true.  They are not intensified right now, so we know the value of A is zero, and B is zero as well. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"329\" height=\"51\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-96.png\" alt=\"\" class=\"wp-image-13519 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-96.png 329w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-96-300x47.png 300w\" data-sizes=\"(max-width: 329px) 100vw, 329px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 329px; --smush-placeholder-aspect-ratio: 329\/51;\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">OR Logic<\/h3>\n\n\n\n<p>Whenever we have conditions on branches, this will be an OR statement.  In this case, if the processor sees that the top branch is TRUE, then it does not need to scan the other branches.  As soon as it sees a true branch, it can move on past the branch to other instructions on the rung.  For this reason, a good programmer will place whatever is most likely to be TRUE on the top branch leg.  In English, we would say this as, &#8220;If A OR B then C&#8221;.  One or the other has to be true.  (Or both, it&#8217;s not exclusive.)<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"226\" height=\"91\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-97.png\" alt=\"\" class=\"wp-image-13520 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 226px; --smush-placeholder-aspect-ratio: 226\/91;\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">NOT Logic<\/h3>\n\n\n\n<p>We use the XIO instruction for bit level NOT logic.  Basically, this instruction just looks for a 0 in the operand (tag) to be true.  We would say this in English as &#8220;If NOT A then B&#8221;.  In this example, we see that the value of A is indeed zero.  The instruction is intensified (green).<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"229\" height=\"47\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-98.png\" alt=\"\" class=\"wp-image-13521 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 229px; --smush-placeholder-aspect-ratio: 229\/47;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Working with ControlLogix Branching in Ladder Logic<\/h2>\n\n\n\n<p>At first, branches are a little tricky to work with.  By default, the branch is the second icon in the instruction toolbar.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"253\" height=\"30\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-99.png\" alt=\"\" class=\"wp-image-13522 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 253px; --smush-placeholder-aspect-ratio: 253\/30;\" \/><\/figure>\n\n\n\n<p>We&#8217;ll drag this down into logic.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"235\" height=\"94\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-101.png\" alt=\"\" class=\"wp-image-13524 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 235px; --smush-placeholder-aspect-ratio: 235\/94;\" \/><\/figure>\n\n\n\n<p>Our goal is to branch around A.  We have two options for this.  We can only move the right side of the branch leg.  So we can either move the leg around A, or we can grab the middle of the XIC (for A), and drop it into the middle of the branch.  When you drag on drop an instruction, be sure it&#8217;s the instruction itself that you drag.  In other words, if you drag the tag (A), you are not getting the whole instruction.  You just drag the tag.  You will see the outline as you drag the whole instruction.  At this point, you can add the XIC, and set B as the tag.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"238\" height=\"95\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-102.png\" alt=\"\" class=\"wp-image-13525 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 238px; --smush-placeholder-aspect-ratio: 238\/95;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Nesting vs Adding Branch Levels<\/h2>\n\n\n\n<p>Let&#8217;s say that we want to add and XIC with the tag &#8220;C&#8221; on another branch leg below B.   Simply right click the bottom left corner of the branch, and add branch level.   Another option is to drag a branch level from the instruction toolbar.  This is the third icon.<\/p>\n\n\n\n<p>When you are finished, your logic should look like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"224\" height=\"134\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-103.png\" alt=\"\" class=\"wp-image-13526 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 224px; --smush-placeholder-aspect-ratio: 224\/134;\" \/><\/figure>\n\n\n\n<p>If it looks like this, then you did it wrong.  The image below shoes a nested branch.  This increases the processor scan time, and you can only go so many levels deep.  Additionally, it just looks bad.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"262\" height=\"133\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-104.png\" alt=\"\" class=\"wp-image-13527 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 262px; --smush-placeholder-aspect-ratio: 262\/133;\" \/><\/figure>\n\n\n\n<p>Sometimes, you have no choice but to nest branches.  Such as in this example.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"266\" height=\"149\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-105.png\" alt=\"\" class=\"wp-image-13528 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 266px; --smush-placeholder-aspect-ratio: 266\/149;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">ASCII text entry for ControlLogix Branching in Ladder Logic<\/h2>\n\n\n\n<p>Some programmers like to enter everything in ASCII.  It&#8217;s usually quicker if you are familiar with the mnemonics.  Let&#8217;s go back to a simpler example for this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"274\" height=\"140\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-106.png\" alt=\"\" class=\"wp-image-13529 lazyload\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 274px; --smush-placeholder-aspect-ratio: 274\/140;\" \/><\/figure>\n\n\n\n<p>Now let&#8217;s look at the ASCII text for this branch.  You can display the ASCII text for any branch by double clicking the rung number.  If you are online, you may need to double click twice, but be sure to cancel any edits afterward, so you don&#8217;t accidentally make any changes.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"496\" height=\"99\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-107.png\" alt=\"\" class=\"wp-image-13530 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-107.png 496w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-107-300x60.png 300w\" data-sizes=\"(max-width: 496px) 100vw, 496px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 496px; --smush-placeholder-aspect-ratio: 496\/99;\" \/><\/figure>\n\n\n\n<p>As you can see, sometimes it&#8217;s easier just to drag and drop branches.  BST starts the branch, then we have the XIC A.  After that, we have NXB (For next branch level).  This is where we have the XIC B.  Likewise, we have another branch level with the NXB where we have XIC C.  After that, we type BND to end the branch.<\/p>\n\n\n\n<p>If you already have an existing branch, you can simply edit the ASCII text on that branch level.  Simply double click the left side of the branch you wish to add instructions to.  After that, you can type your mnemonics without erasing the whole line.<\/p>\n\n\n\n<p>As  you can see, I&#8217;ve double-clicked the bottom left side of a branch leg, and added text to the branch leg only.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"506\" height=\"369\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-108.png\" alt=\"\" class=\"wp-image-13531 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-108.png 506w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-108-300x219.png 300w\" data-sizes=\"(max-width: 506px) 100vw, 506px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 506px; --smush-placeholder-aspect-ratio: 506\/369;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Deleting Branches<\/h2>\n\n\n\n<p>To delete branches, simply be sure you are in edit mode.  After that, right click the left corner of the branch you wish to delete.  From there you can delete the branch level.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"507\" height=\"339\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109.png\" alt=\"\" class=\"wp-image-13532 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109.png 507w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109-300x201.png 300w\" data-sizes=\"(max-width: 507px) 100vw, 507px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 507px; --smush-placeholder-aspect-ratio: 507\/339;\" \/><\/figure>\n\n\n\n<p>For more information, check out the <a href=\"https:\/\/bryceautomation.com\/index.php\/category\/controllogix\/\">ControlLogix Category Page!<\/a><\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-1084513469\" class=\"bryce-after-content bryce-entity-placement\"><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-8316758073402323\" crossorigin=\"anonymous\"><\/script><ins class=\"adsbygoogle\" style=\"display:block;\" data-ad-client=\"ca-pub-8316758073402323\" \ndata-ad-slot=\"4667596182\" \ndata-ad-format=\"auto\"><\/ins>\n<script> \n(adsbygoogle = window.adsbygoogle || []).push({}); \n<\/script>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Introduction to ControlLogix Branching in Ladder Logic ControlLogix Branching in Ladder Logic allows us to create &#8220;OR&#8221; Statements. Sometimes getting a branch on the right place in a rung is tricky for beginners. In this post, we&#8217;ll take a closer look at branching, We&#8217;ll discuss different ways to set up branches, and how to set <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":13532,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[812,810],"class_list":{"0":"post-13518","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-controllogix","8":"tag-branch-level","9":"tag-branching","10":"czr-hentry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ControlLogix Branching in Ladder Logic - Bryce Automation<\/title>\n<meta name=\"description\" content=\"How to add ControlLogix Branching in Ladder Logic. Additionally, we&#039;ll discuss ASCII entry for the branch, and how to add branch levels.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ControlLogix Branching in Ladder Logic - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"How to add ControlLogix Branching in Ladder Logic. Additionally, we&#039;ll discuss ASCII entry for the branch, and how to add branch levels.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/\" \/>\n<meta property=\"og:site_name\" content=\"Bryce Automation\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ricky.bryce.7\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-23T14:12:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-23T14:12:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109.png\" \/>\n\t<meta property=\"og:image:width\" content=\"507\" \/>\n\t<meta property=\"og:image:height\" content=\"339\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ricky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"ControlLogix Branching in Ladder Logic\",\"datePublished\":\"2022-09-23T14:12:31+00:00\",\"dateModified\":\"2022-09-23T14:12:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/\"},\"wordCount\":1036,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/image-109.png\",\"keywords\":[\"Branch Level\",\"Branching\"],\"articleSection\":[\"ControlLogix\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/\",\"name\":\"ControlLogix Branching in Ladder Logic - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/image-109.png\",\"datePublished\":\"2022-09-23T14:12:31+00:00\",\"dateModified\":\"2022-09-23T14:12:35+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"How to add ControlLogix Branching in Ladder Logic. Additionally, we'll discuss ASCII entry for the branch, and how to add branch levels.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/image-109.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/image-109.png\",\"width\":507,\"height\":339,\"caption\":\"ControlLogix Branching in Ladder Logic\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/09\\\/23\\\/controllogix-branching-in-ladder-logic\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ControlLogix Branching in Ladder Logic\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/\",\"name\":\"Bryce Automation\",\"description\":\"Automating Home and Industry...\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bryceautomation.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\",\"name\":\"Ricky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/wphb-cache\\\/gravatar\\\/a8f\\\/a8fe6bf79d292b388ffee281ccb12488x96.jpg\",\"caption\":\"Ricky\"},\"sameAs\":[\"http:\\\/\\\/bryceautomation.com\",\"https:\\\/\\\/www.facebook.com\\\/ricky.bryce.7\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ricky-bryce-4367a416\\\/\"],\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/author\\\/ricky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ControlLogix Branching in Ladder Logic - Bryce Automation","description":"How to add ControlLogix Branching in Ladder Logic. Additionally, we'll discuss ASCII entry for the branch, and how to add branch levels.","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:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/","og_locale":"en_US","og_type":"article","og_title":"ControlLogix Branching in Ladder Logic - Bryce Automation","og_description":"How to add ControlLogix Branching in Ladder Logic. Additionally, we'll discuss ASCII entry for the branch, and how to add branch levels.","og_url":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2022-09-23T14:12:31+00:00","article_modified_time":"2022-09-23T14:12:35+00:00","og_image":[{"width":507,"height":339,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109.png","type":"image\/png"}],"author":"Ricky","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"ControlLogix Branching in Ladder Logic","datePublished":"2022-09-23T14:12:31+00:00","dateModified":"2022-09-23T14:12:35+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/"},"wordCount":1036,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109.png","keywords":["Branch Level","Branching"],"articleSection":["ControlLogix"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/","url":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/","name":"ControlLogix Branching in Ladder Logic - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109.png","datePublished":"2022-09-23T14:12:31+00:00","dateModified":"2022-09-23T14:12:35+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"How to add ControlLogix Branching in Ladder Logic. Additionally, we'll discuss ASCII entry for the branch, and how to add branch levels.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/09\/image-109.png","width":507,"height":339,"caption":"ControlLogix Branching in Ladder Logic"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/09\/23\/controllogix-branching-in-ladder-logic\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"ControlLogix Branching in Ladder Logic"}]},{"@type":"WebSite","@id":"https:\/\/bryceautomation.com\/#website","url":"https:\/\/bryceautomation.com\/","name":"Bryce Automation","description":"Automating Home and Industry...","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bryceautomation.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7","name":"Ricky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","url":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/wphb-cache\/gravatar\/a8f\/a8fe6bf79d292b388ffee281ccb12488x96.jpg","caption":"Ricky"},"sameAs":["http:\/\/bryceautomation.com","https:\/\/www.facebook.com\/ricky.bryce.7","https:\/\/www.linkedin.com\/in\/ricky-bryce-4367a416\/"],"url":"https:\/\/bryceautomation.com\/index.php\/author\/ricky\/"}]}},"_links":{"self":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/13518","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/comments?post=13518"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/13518\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/13532"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=13518"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=13518"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=13518"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}