{"id":12076,"date":"2022-07-06T16:54:44","date_gmt":"2022-07-06T16:54:44","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=12076"},"modified":"2022-07-17T14:02:46","modified_gmt":"2022-07-17T14:02:46","slug":"basic-input-command","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/","title":{"rendered":"BASIC Input Command"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to the BASIC Input Command<\/h2>\n\n\n\n<p>In this post, we&#8217;ll cover the BASIC Input Command.   In our last post, we discussed the <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/\">FOR NEXT<\/a> loop.  This allowed us to calculate our salary for the next 10 years.  Our variables were coded into the program.  Obviously, though, we would want to ask the user some questions.  For example, we need to know the starting year.  Additionally, we need to know the starting salary, and what the cost of living increase he expects each year.<\/p><div id=\"bryce-173787400\" 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>The BASIC Input Commands allows for user input.  In this case, we&#8217;ll modify our program to allow the user to answer some questions we need to know.  That way, they will not have to modify the code to calculate their pay raises.<\/p>\n\n\n\n<p>For this example, I&#8217;m using Altair Hard Disk BASIC, but it&#8217;s very similar in most any version.  If  you are using the Altair-Duino, you can easily boot to Hard disk basic.  With switches 13 and 12 up, raise switch 0.  Press AUX 2 Down to mount the disk.  Then turn on switches 3, 2, and 1 (only).  Press AUX 1 down to boot to Altair Hard Disk BASIC.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Our <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/06\/30\/basic-for-next-loop\/\">Previous Project<\/a><\/h2>\n\n\n\n<p>Before we begin, let&#8217;s take a look at our last program.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>10 LET RAISE = 3\n20 LET NUMYEARS = 10\n30 LET YEAR = 1975\n40 LET SALARY = 13720\n50 LET X = 0\n60 FOR X = YEAR TO YEAR + NUMYEARS STEP 1\n70 PRINT \"IN \"; : PRINT X; : PRINT \" YOU WILL MAKE \"; : PRINT SALARY\n80 SALARY = SALARY * (1 + (RAISE \/ 100))\n90 NEXT X<\/code><\/pre>\n\n\n\n<p>Basically, we hard coded the raise, number of years, starting year, and starting salary.  We created a FOR NEXT loop to go through each year, and print the result to the display.  The variable &#8220;SALARY&#8221; updates each time the loop is run.  At this time, we will modify the code.  We want the user to enter this data instead.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Adding the INPUT command<\/h2>\n\n\n\n<p>First, let&#8217;s modify line #10.  Instead of the raise always being 3%, we&#8217;ll ask the user to enter the yearly raise.  We&#8217;ll print to the screen telling the user to enter the raise amount.  After the text to display, we user a semicolon.  This tells the BASIC interpreter not to perform a line feed.   In other words, whatever follows will be on the same line.  After that, we use a colon to separate commands which are on line #10.  The input prompt will be a question mark.  For this reason, we want the text to be in a question form.  The variable &#8220;RAISE&#8221; is set to whatever value the user enters.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>10 PRINT \"WHAT IS YOUR YEARLY RAISE AMOUNT IN PERCENT\"; : INPUT RAISE<\/code><\/pre>\n\n\n\n<p>At this point, we&#8217;ll follow through on the same format with the other questions.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>20 PRINT \"HOW MANY YEARS SHOULD I CALCULATE\";: INPUT NUMYEARS\n30 PRINT \"WHAT YEAR SHOULD I START ON\";: INPUT YEAR\n40 PRINT \"WHAT IS YOUR STARTING SALARY THIS YEAR:\";: INPUT SALARY<\/code><\/pre>\n\n\n\n<p>Your final program should look similar to this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"885\" height=\"304\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-10.png\" alt=\"\" class=\"wp-image-12077 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-10.png 885w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-10-300x103.png 300w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-10-768x264.png 768w\" data-sizes=\"(max-width: 885px) 100vw, 885px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 885px; --smush-placeholder-aspect-ratio: 885\/304;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Test your work!<\/h2>\n\n\n\n<p>At this point, you are ready to test your work.  Type RUN to run your program.<\/p>\n\n\n\n<p>As you can see, our program is up and running!<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"583\" height=\"440\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11.png\" alt=\"\" class=\"wp-image-12080 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11.png 583w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11-300x226.png 300w\" data-sizes=\"(max-width: 583px) 100vw, 583px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 583px; --smush-placeholder-aspect-ratio: 583\/440;\" \/><\/figure>\n\n\n\n<p>Don&#8217;t forget to save your work.  Make sure your disk is mounted.   In Altair Hard Disk Basic, I simply type SAVE &#8220;SALARY&#8221;.  You can load the program any time by typing LOAD &#8220;SALARY&#8221; .  Try to experiment with various salaries and starting years.  Additionally, you can modify the program for practice.  Try adding a 5% raise every 5 years in addition to the cost of living adjustment!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Summary for the BASIC Input Command<\/h2>\n\n\n\n<p>In Short, the INPUT commands allows your program to accept user input.  In this case, our variables were numbers.  You can also use this with strings, which we will get into later.<\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-266871371\" 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 the BASIC Input Command In this post, we&#8217;ll cover the BASIC Input Command. In our last post, we discussed the FOR NEXT loop. This allowed us to calculate our salary for the next 10 years. Our variables were coded into the program. Obviously, though, we would want to ask the user some questions. <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":12080,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[763,727],"tags":[421,723,712],"class_list":{"0":"post-12076","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-programming","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 Input Command - Bryce Automation<\/title>\n<meta name=\"description\" content=\"How to user the BASIC Input Command in the BASIC programming language to accept input from a user of your own 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-input-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BASIC Input Command - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"How to user the BASIC Input Command in the BASIC programming language to accept input from a user of your own program.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/\" \/>\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-06T16:54:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-17T14:02:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11.png\" \/>\n\t<meta property=\"og:image:width\" content=\"583\" \/>\n\t<meta property=\"og:image:height\" content=\"440\" \/>\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-input-command\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"BASIC Input Command\",\"datePublished\":\"2022-07-06T16:54:44+00:00\",\"dateModified\":\"2022-07-17T14:02:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/\"},\"wordCount\":538,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-11.png\",\"keywords\":[\"altair\",\"BASIC\",\"programming\"],\"articleSection\":[\"Altair 8800\",\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/\",\"name\":\"BASIC Input Command - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-11.png\",\"datePublished\":\"2022-07-06T16:54:44+00:00\",\"dateModified\":\"2022-07-17T14:02:46+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"How to user the BASIC Input Command in the BASIC programming language to accept input from a user of your own program.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-11.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-11.png\",\"width\":583,\"height\":440,\"caption\":\"BASIC INPUT Command\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/07\\\/06\\\/basic-input-command\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"BASIC Input Command\"}]},{\"@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 Input Command - Bryce Automation","description":"How to user the BASIC Input Command in the BASIC programming language to accept input from a user of your own 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-input-command\/","og_locale":"en_US","og_type":"article","og_title":"BASIC Input Command - Bryce Automation","og_description":"How to user the BASIC Input Command in the BASIC programming language to accept input from a user of your own program.","og_url":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2022-07-06T16:54:44+00:00","article_modified_time":"2022-07-17T14:02:46+00:00","og_image":[{"width":583,"height":440,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11.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-input-command\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"BASIC Input Command","datePublished":"2022-07-06T16:54:44+00:00","dateModified":"2022-07-17T14:02:46+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/"},"wordCount":538,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11.png","keywords":["altair","BASIC","programming"],"articleSection":["Altair 8800","Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/","url":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/","name":"BASIC Input Command - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11.png","datePublished":"2022-07-06T16:54:44+00:00","dateModified":"2022-07-17T14:02:46+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"How to user the BASIC Input Command in the BASIC programming language to accept input from a user of your own program.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/07\/image-11.png","width":583,"height":440,"caption":"BASIC INPUT Command"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/07\/06\/basic-input-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"BASIC Input Command"}]},{"@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\/12076","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=12076"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/12076\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/12080"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=12076"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=12076"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=12076"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}