{"id":12083,"date":"2022-07-06T23:52:11","date_gmt":"2022-07-06T23:52:11","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=12083"},"modified":"2022-07-17T14:02:03","modified_gmt":"2022-07-17T14:02:03","slug":"basic-read-data-restore","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/","title":{"rendered":"BASIC READ DATA RESTORE"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to BASIC READ DATA RESTORE<\/h2>\n\n\n\n<p>The BASIC READ DATA RESTORE command allows you to easily set up data that you use in a program.  BASIC was one of the early &#8220;High Level&#8221; programming languages.  In other words, you don&#8217;t need to know much about how the computer itself operates.  Anyone can program in the BASIC language.  By learning just a few commands, you can write usable programs.<\/p><div id=\"bryce-2915449720\" 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>In this post, we&#8217;ll concentrate on the READ DATA RESTORE command.   Basically, we&#8217;ll have a DATA set.  The READ command reads this data.  RESTORE resets the pointer back to the beginning of your data.<\/p>\n\n\n\n<p>In this example, I&#8217;ll be using Altair Hard Disk BASIC.  Most any version of BASIC supports this command, though.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Enter The Program<\/h2>\n\n\n\n<p>Be sure to type &#8220;NEW&#8221; to clear any programs you already have in memory.  Next, we&#8217;ll enter the following program.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>5 REM USER MUST ENTER CORRECT SPANISH WORD\n10 FOR X = 1 TO 2 STEP 1\n20 READ E$ : READ S$\n30 PRINT \"WHAT IS THE SPANISH WORD FOR A MALE \" E$;\n40 INPUT A$\n50 IF A$ &lt;&gt; S$ THEN PRINT \"TRY AGAIN\" : GOTO 30\n60 PRINT \"CORRECT!!\" : NEXT X\n70 RESTORE\n80 GOTO 10\n100 DATA CAT,GATO,DOG,PERRO\n<\/code><\/pre>\n\n\n\n<p>We have a very simple program to demonstrate how the BASIC READ DATA RESTORE command works.  Basically, this is a &#8220;flash card&#8221; program.  The program prints an English word to the screen.  At this point, the user must enter the correct word in Spanish.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Interpreting the Code<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Reading and Comparing the DATA<\/h3>\n\n\n\n<p>Line #5 is simply a REMark statement.  The purpose of this is to add documentation to your project.  <\/p>\n\n\n\n<p>Line #10 contains a <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/\">FOR NEXT<\/a> loop.  In this example,  the loop will execute twice.  The variable X is initially set to 1.  When the interpreter sees &#8220;Next X&#8221;, it will jump back to the FOR statement.  The X variable increments by the STEP value until X=2.   Since 2 is our terminal value, &#8220;Next X&#8221; will not return to the FOR statement when it executes.  The program continues to the next line.<\/p>\n\n\n\n<p>Line #20 reads two values from our DATA set.  The first time the loop executes, the E$ contains the value &#8220;CAT&#8221;.  We use the $ to indicate a text string vs. a numeric value.  Likewise, S$ contains the value &#8220;GATO&#8221;<\/p>\n\n\n\n<p>Line #30 simply prints the question to the display using the value contained in E$.  The first time the program runs, this value is &#8220;CAT&#8221;.  Notice the semicolon.   This means the next character will appear immediately after the print statement vs. going to the next line.<\/p>\n\n\n\n<p>Line #40 will print a ? to the display, and wait for user <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/\">input<\/a>.  Whatever text the user enters will store to A$. <\/p>\n\n\n\n<p>Line #50 checks the answer.  If the answer does not equal (&lt;&gt;) what we expect, then we print &#8220;Try Again&#8221; to the display.   At this point, the program goes back to Line #30.   If the answer is correct, then we print the result to the screen.  At this point, the program returns back to the FOR statement.  After that, Line #20 reads the next two values from the data set.   <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">RESTORE Command<\/h3>\n\n\n\n<p>After we read all of the data, we need to execute the RESTORE command.  We do this in Line #70.  If we try to read past the amount of data we have, the user will get an error.  After we restore the data, we simply start the program again in line #80<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"694\" height=\"492\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12.png\" alt=\"\" class=\"wp-image-12084 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12.png 694w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12-300x213.png 300w\" data-sizes=\"(max-width: 694px) 100vw, 694px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 694px; --smush-placeholder-aspect-ratio: 694\/492;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p>In short, the purpose of this post was to demonstrate the READ DATA RESTORE command in the BASIC programming language.  Although there are much better ways to write the code, I wanted to keep it simple, so we can concentrate on how this command works.  In reality, you would want a much larger data set.  Additionally, you will want a way for the user to exit the program.   Don&#8217;t forget to save your program by typing SAVE &#8220;FILENAME&#8221;!<\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-419678812\" 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 BASIC READ DATA RESTORE The BASIC READ DATA RESTORE command allows you to easily set up data that you use in a program. BASIC was one of the early &#8220;High Level&#8221; programming languages. In other words, you don&#8217;t need to know much about how the computer itself operates. Anyone can program in the <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":12084,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[763,727],"tags":[421,723,728],"class_list":{"0":"post-12083","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-altair-8800","8":"category-vintage-computers","9":"tag-altair","10":"tag-basic","11":"tag-read-data-restore","12":"czr-hentry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>BASIC READ DATA RESTORE - Bryce Automation<\/title>\n<meta name=\"description\" content=\"BASIC READ DATA RESTORE command. We&#039;ll enter a simple program to read from a data set, and utilize the data in your program.\" \/>\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\/07\/06\/basic-read-data-restore\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BASIC READ DATA RESTORE - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"BASIC READ DATA RESTORE command. We&#039;ll enter a simple program to read from a data set, and utilize the data in your program.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/\" \/>\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-07-06T23:52:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-17T14:02:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12.png\" \/>\n\t<meta property=\"og:image:width\" content=\"694\" \/>\n\t<meta property=\"og:image:height\" content=\"492\" \/>\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\\\/07\\\/06\\\/basic-read-data-restore\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"BASIC READ DATA RESTORE\",\"datePublished\":\"2022-07-06T23:52:11+00:00\",\"dateModified\":\"2022-07-17T14:02:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/\"},\"wordCount\":598,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-12.png\",\"keywords\":[\"altair\",\"BASIC\",\"READ DATA RESTORE\"],\"articleSection\":[\"Altair 8800\",\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/\",\"name\":\"BASIC READ DATA RESTORE - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-12.png\",\"datePublished\":\"2022-07-06T23:52:11+00:00\",\"dateModified\":\"2022-07-17T14:02:03+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"BASIC READ DATA RESTORE command. We'll enter a simple program to read from a data set, and utilize the data in your program.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-12.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-12.png\",\"width\":694,\"height\":492,\"caption\":\"BASIC READ DATA RESTORE\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-read-data-restore\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"BASIC READ DATA RESTORE\"}]},{\"@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":"BASIC READ DATA RESTORE - Bryce Automation","description":"BASIC READ DATA RESTORE command. We'll enter a simple program to read from a data set, and utilize the data in your program.","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\/07\/06\/basic-read-data-restore\/","og_locale":"en_US","og_type":"article","og_title":"BASIC READ DATA RESTORE - Bryce Automation","og_description":"BASIC READ DATA RESTORE command. We'll enter a simple program to read from a data set, and utilize the data in your program.","og_url":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2022-07-06T23:52:11+00:00","article_modified_time":"2022-07-17T14:02:03+00:00","og_image":[{"width":694,"height":492,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12.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\/07\/06\/basic-read-data-restore\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"BASIC READ DATA RESTORE","datePublished":"2022-07-06T23:52:11+00:00","dateModified":"2022-07-17T14:02:03+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/"},"wordCount":598,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12.png","keywords":["altair","BASIC","READ DATA RESTORE"],"articleSection":["Altair 8800","Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/","url":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/","name":"BASIC READ DATA RESTORE - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12.png","datePublished":"2022-07-06T23:52:11+00:00","dateModified":"2022-07-17T14:02:03+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"BASIC READ DATA RESTORE command. We'll enter a simple program to read from a data set, and utilize the data in your program.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-12.png","width":694,"height":492,"caption":"BASIC READ DATA RESTORE"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-read-data-restore\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"BASIC READ DATA RESTORE"}]},{"@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\/12083","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=12083"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/12083\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/12084"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=12083"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=12083"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=12083"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}