{"id":14254,"date":"2022-11-06T12:41:17","date_gmt":"2022-11-06T12:41:17","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=14254"},"modified":"2022-11-06T12:41:21","modified_gmt":"2022-11-06T12:41:21","slug":"cosmac-1802-basic-branching","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/","title":{"rendered":"COSMAC 1802 Basic Branching"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to COSMAC 1802 Basic Branching<\/h2>\n\n\n\n<p>COSMAC 1802 Basic Branching instructions allow you to execute different parts of code based on certain conditions.  These conditions might include inputs that are high, or results of an operation that return a zero value, negative value, etc.  In this section, we&#8217;ll cover the branching instructions, and how to use each one.<\/p><div id=\"bryce-2339919018\" 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<h2 class=\"wp-block-heading\">BR, LBR, LBZ, BZ, BNZ Instructions<\/h2>\n\n\n\n<p>We don&#8217;t need to go through every one of these, but I&#8217;ll explain how they work.  The BR is a short branch instruction.  That is to say, it will branch to a program location that is on the same memory page.  In other words, we only need to specify the last byte of an address to branch to.<\/p>\n\n\n\n<p>The LBR is a long branch instruction.  This instruction will branch anywhere in memory.  When we perform a long branch, we specify both the low and high bytes of the address we need to branch to.<\/p>\n\n\n\n<p>BZ will execute a short branch when the accumulator is zero.  Use LBZ if you need a long branch when the accumulator is zero.  In the example below, we&#8217;ll run up the accumulator to the value of 09, using the low byte of RA as a storage location.  We will use the XRI (Exclusive Or Immediate) instruction to know when we reach 09H.  When we XOR a value with the accumulator, the result is zero if the numbers are the same.  In this case, when the accumulator reaches 09H, and we XOR the accumulator with 09H, the result is zero.  At this point we can branch to the stop label.<\/p>\n\n\n\n<p>Our BNZ instruction will branch when the accumulator is not equal to zero.  Basically, this is the opposite of BNZ.  <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Everyday Branch Logic<\/h3>\n\n\n\n<p>Let&#8217;s take a look at some logic.  These are branch instructions that you will probably use in every program.   This logic will loop a total of 10 times (0 to 9).  After the accumulator reaches 9, the result of our &#8220;XRI  09H&#8221; will result in a value of zero in the accumulator (D Regsiter).  That this point, we branch to the STOP label.  In my unit, I have some ROM that will execute a break routine to load the registers into memory before the processor stops.  The break routine is on a different memory page.  In other words, we need a long branch (LBR) to execute this routine.  <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>BREAK:      EQU     2756H\n\n            ORG     8000H\n\nRA\tEQU\t10\n\n            LDI     00H\n            PLO     RA\n            PHI     RA\nSTART:      GLO     RA\n            ADI     01H\n            PLO     RA\n            XRI     09H\n            BNZ     START\n            BR      STOP\nSTOP:       LBR     BREAK\n            END<\/code><\/pre>\n\n\n\n<p>Test  your work!  Register RA (Register 10) should contain the value of 09H once  your program finishes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">EF and Q Branches<\/h2>\n\n\n\n<p>At this point, we&#8217;ll take a look at branches that operate of the value of your EF and Q bits.  You have four EF bits that directly connect to the processor (5v = 0, 0v = 1).  You also have a Q output on the processor.  In this case, my Q output connects to an LED.  I have two buttons on my unit that connect to EF1 and EF2.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"315\" height=\"201\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4.png\" alt=\"\" class=\"wp-image-14260 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4.png 315w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4-300x191.png 300w\" data-sizes=\"(max-width: 315px) 100vw, 315px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 315px; --smush-placeholder-aspect-ratio: 315\/201;\" \/><\/figure>\n\n\n\n<p>In this example, we&#8217;ll turn on the LED with the SEQ (Set Q) instruction when we press EF1.  Likewise, when we press EF1 again, Q shuts off.  The cycle repeats infinitely.<\/p>\n\n\n\n<p>B1 &#8211; B4 will branch when we press the button.  BN1 &#8211; BN4 branch when we are not pressing the button.  Likewise, BQ branches when Q is on, and BNQ branches when Q is off.<\/p>\n\n\n\n<p>Let&#8217;s take a look at the logic:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>BREAK:      EQU     2756H\n\n            ORG     8000H\n\nRA\tEQU\t    10\n\n            LDI     00H\n            PLO     RA\n            PHI     RA\nSTART:      BN1     CLEARFLAG\n            GLO     RA\n            BNZ     NOACTION\n            B1      EVENTFLAG\nNOACTION:   BR      START\n\n\n\nEVENTFLAG:  BQ      REQ\nSETQ:       LDI     01H\n            PLO     RA\n            SEQ\n            BR      START\n            \nREQ:        LDI     01H\n            PLO     RA\n            REQ\n            BR      START\n\nCLEARFLAG:  LDI     00H\n            PLO     RA\n            BR      START\n            END<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Summary of COSMAC 1802 Basic Branching<\/h2>\n\n\n\n<p>In short, branches allow  you to jump to different areas of memory based on certain conditions.  You can consult the <a href=\"http:\/\/bitsavers.trailing-edge.com\/components\/rca\/cosmac\/MPM-201A_User_Manual_for_the_CDP1802_COSMAC_Microprocessor_1976.pdf\">COSMAC 1802 user manual <\/a>for more types of branches.  Here, I&#8217;ve just listed a few as an example.  Once you learn how the above branches work, the others will mostly be self-explanatory.<\/p>\n\n\n\n<p>For more information, visit the <a href=\"https:\/\/bryceautomation.com\/index.php\/category\/vintage-computers\/cosmac\/\">COSMAC Category Page!<\/a><\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-3697240386\" 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 COSMAC 1802 Basic Branching COSMAC 1802 Basic Branching instructions allow you to execute different parts of code based on certain conditions. These conditions might include inputs that are high, or results of an operation that return a zero value, negative value, etc. In this section, we&#8217;ll cover the branching instructions, and how to <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":14260,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[821,727],"tags":[865,864,860,861,857,858,859,863,862],"class_list":{"0":"post-14254","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-cosmac","8":"category-vintage-computers","9":"tag-b1","10":"tag-bn1","11":"tag-bnz","12":"tag-bq","13":"tag-br","14":"tag-lbr","15":"tag-lbz","16":"tag-req","17":"tag-setq","18":"czr-hentry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>COSMAC 1802 Basic Branching - Bryce Automation<\/title>\n<meta name=\"description\" content=\"How to perform COSMAC 1802 Basic Branching, and a couple program examples to show you how these branch instructions operate.\" \/>\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\/11\/06\/cosmac-1802-basic-branching\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"COSMAC 1802 Basic Branching - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"How to perform COSMAC 1802 Basic Branching, and a couple program examples to show you how these branch instructions operate.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/\" \/>\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-11-06T12:41:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-06T12:41:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4.png\" \/>\n\t<meta property=\"og:image:width\" content=\"315\" \/>\n\t<meta property=\"og:image:height\" content=\"201\" \/>\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\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"COSMAC 1802 Basic Branching\",\"datePublished\":\"2022-11-06T12:41:17+00:00\",\"dateModified\":\"2022-11-06T12:41:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/\"},\"wordCount\":629,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-4.png\",\"keywords\":[\"B1\",\"BN1\",\"BNZ\",\"BQ\",\"BR\",\"LBR\",\"LBZ\",\"REQ\",\"SETQ\"],\"articleSection\":[\"COSMAC\",\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/\",\"name\":\"COSMAC 1802 Basic Branching - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-4.png\",\"datePublished\":\"2022-11-06T12:41:17+00:00\",\"dateModified\":\"2022-11-06T12:41:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"How to perform COSMAC 1802 Basic Branching, and a couple program examples to show you how these branch instructions operate.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-4.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/image-4.png\",\"width\":315,\"height\":201,\"caption\":\"COSMAC 1802 Basic Breanching\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/11\\\/06\\\/cosmac-1802-basic-branching\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"COSMAC 1802 Basic Branching\"}]},{\"@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":"COSMAC 1802 Basic Branching - Bryce Automation","description":"How to perform COSMAC 1802 Basic Branching, and a couple program examples to show you how these branch instructions operate.","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\/11\/06\/cosmac-1802-basic-branching\/","og_locale":"en_US","og_type":"article","og_title":"COSMAC 1802 Basic Branching - Bryce Automation","og_description":"How to perform COSMAC 1802 Basic Branching, and a couple program examples to show you how these branch instructions operate.","og_url":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2022-11-06T12:41:17+00:00","article_modified_time":"2022-11-06T12:41:21+00:00","og_image":[{"width":315,"height":201,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4.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\/11\/06\/cosmac-1802-basic-branching\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"COSMAC 1802 Basic Branching","datePublished":"2022-11-06T12:41:17+00:00","dateModified":"2022-11-06T12:41:21+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/"},"wordCount":629,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4.png","keywords":["B1","BN1","BNZ","BQ","BR","LBR","LBZ","REQ","SETQ"],"articleSection":["COSMAC","Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/","url":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/","name":"COSMAC 1802 Basic Branching - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4.png","datePublished":"2022-11-06T12:41:17+00:00","dateModified":"2022-11-06T12:41:21+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"How to perform COSMAC 1802 Basic Branching, and a couple program examples to show you how these branch instructions operate.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/11\/image-4.png","width":315,"height":201,"caption":"COSMAC 1802 Basic Breanching"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/11\/06\/cosmac-1802-basic-branching\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"COSMAC 1802 Basic Branching"}]},{"@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\/14254","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=14254"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/14254\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/14260"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=14254"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=14254"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=14254"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}