{"id":15010,"date":"2022-12-30T01:53:50","date_gmt":"2022-12-30T01:53:50","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=15010"},"modified":"2022-12-30T15:35:53","modified_gmt":"2022-12-30T15:35:53","slug":"1802-membership-card-timer","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/","title":{"rendered":"1802 Membership Card Timer"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to the 1802 Membership Card Timer<\/h2>\n\n\n\n<p>In this section, we&#8217;ll crate a scan based 1802 Membership Card Timer using BASIC3.  The 1802 Membership card uses the COSMAC 1802 Processor.  Since we are basing the timer on the scan rate, you may have to vary the delay loops to calibrate your timer.  In this case, I&#8217;m using the version which has a 4MHz resonator.  Other versions have a potentiometer to adjust the clock frequency.  In that case, I would recommend setting the pot as high as possible.  Still, you may need to remove some delays if the clock is running too slow.<\/p><div id=\"bryce-3627694956\" 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 case, we&#8217;ll just count the number of seconds, and display this value to the LED&#8217;s.  We&#8217;ll do this in BCD (Binary Coded Decimal).   That way, it&#8217;s easier to decode the binary value.  Additionally, if you have the 7 segment displays, they will display the correct number of seconds (0 to 99).   Turn on switch 0 on the Membership Card to hold the value at 0.  Shut off Switch 0 to start the timer.  <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Boot to BASIC3<\/h2>\n\n\n\n<p>Instead of Assembly, I&#8217;ll be doing this in BASIC3 this time.  I have the MS20ANSJ ROM inserted, and running at 8000H.  To boot to the ROM, simply enter &#8220;C0 80 00&#8221; at memory cells 0000, 0001, and 0002.  Reset and run your membership card.  When the menu appears, choose &#8220;B&#8221; (capitol) to enter the BASIC3 ROM.   I&#8217;m starting with a cold boot (Capitol C).  When you are finished loading the program, remember to type &#8220;RUN&#8221; in all capitol letters.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img decoding=\"async\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79.png\" alt=\"\" class=\"wp-image-15017 lazyload\" width=\"439\" height=\"228\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79.png 834w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79-300x156.png 300w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79-768x400.png 768w\" data-sizes=\"(max-width: 439px) 100vw, 439px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 439px; --smush-placeholder-aspect-ratio: 439\/228;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Enter the Code for the 1802 Membership Card Timer<\/h2>\n\n\n\n<p>At this point, we are ready to paste the code.  Don&#8217;t forget to set the delays in your terminal for pasting code.  I&#8217;m running the character and linefeeds both at 250ms.  This will be slow, but reliable.  In the future, you can experiment with lower delays.  If you start getting errors, then you can increase the delay to the minimum that is reliable.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>10 REM TIMER FOR COSMAC ELF MC (RICKY BRYCE)\n20 LET A=0 : REM INITIALIZE A TO ZERO\n30 FOR X=1 TO 29 : REM CREATE A DELAY LOOP\n40 I=INP(0,4) : REM CHECK SWITCHES\n50 IF I=1 THEN A=-1 : REM RESET COUNTER\n60 NEXT X\n70 C=C:C=C : REM DELAYS (FINE TUNE)\n80 C=C:C=C:C=C:C=C\n90 C=C:C=C:C=C:C=C\n100 LET A=A+1 : REM INC A\n110 GOSUB 150 : REM CHECK FOR HEX\n120 OUT (0,4,A) : REM SEND OUTPUTS\n130 IF A = 100 THEN A = -1 : REM RESET COUNTER\n140 GOTO 30 : REM RESTART\n150 REM HEX TO DECIMAL\n160 B=A : REM BACKUP COUNTER        \n170 A=A AND 15 : REM REMOVE UPPER BITS\n180 IF A=10 THEN  GOTO 210 : REM INCREMENT 10'S\n190 A=B : REM RESTORE A FROM BACKUP\n200 GOTO 240 : REM EXIT SUBROUTINE\n210 A=B : REM RESTORE A\n220 A=A+16 : REM INCREMENT 10'S (HEX TO DECIMAL)\n230 A=A AND 240 : REM KEEP ONLY UPPER BITS\n240 RETURN : REM EXIT SUBROUTINE<\/code><\/pre>\n\n\n\n<p>Basically, in line 30-60, we are setting up a delay loop.  This is one way to calibrate the timer.  If your code runs too slow, then you can decrease the maximum value of X in line 30.  Likewise, if the timer runs too fast, you can increase this time.  Linex 70 &#8211; 90 are basically NO OPs.  This is to finely calibrate the timer by causing more delay outside of the loop.<\/p>\n\n\n\n<p>Line 100 is where we are incrementing A, which is our number of seconds.  Since we don&#8217;t want the timer to display hex characters, I&#8217;ve set up a subroutine to handle this at line 150.<\/p>\n\n\n\n<p>In line 120, we send the value of &#8220;A&#8221; to port 4.  This is the LED&#8217;s and 7 segment display.  After that we check to see if A is too high to display.  If so, we reset it back to zero.<\/p>\n\n\n\n<p>In lines 150 to 240, I&#8217;m not really converting a hex number to decimal.  Instead, I&#8217;m just skipping over the extra hex characters.  Basically, we&#8217;re just looking at the lower 4 bits, and once these hit the value of 10, we know to take more action.<\/p>\n\n\n\n<p>If the lower 4 bits have the bit pattern for a 10, we simply add 16 to the timer.  In Hex, this increments the &#8220;ten&#8217;s&#8221; place.  After that, we just set the last 4 bits to zero.<\/p>\n\n\n\n<p>If you would like to know how to do this in Assembly, you can check out <a href=\"https:\/\/bryceautomation.com\/index.php\/2022\/11\/02\/cosmac-led-display-timer\/\">this post<\/a> as a guideline to get you started.<\/p>\n\n\n\n<p>For other information, check out 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-1423772121\" 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 1802 Membership Card Timer In this section, we&#8217;ll crate a scan based 1802 Membership Card Timer using BASIC3. The 1802 Membership card uses the COSMAC 1802 Processor. Since we are basing the timer on the scan rate, you may have to vary the delay loops to calibrate your timer. In this case, <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":15017,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[821,727],"tags":[723,291],"class_list":{"0":"post-15010","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-cosmac","8":"category-vintage-computers","9":"tag-basic","10":"tag-timer","11":"czr-hentry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>1802 Membership Card Timer - Bryce Automation<\/title>\n<meta name=\"description\" content=\"Creating 1802 Membership Card Timer in BASIC3. This is a stopwatch program written in BASIC3. Simply paste the code into BASIC, and type RUN.\" \/>\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\/12\/30\/1802-membership-card-timer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"1802 Membership Card Timer - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"Creating 1802 Membership Card Timer in BASIC3. This is a stopwatch program written in BASIC3. Simply paste the code into BASIC, and type RUN.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/\" \/>\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-12-30T01:53:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-30T15:35:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79.png\" \/>\n\t<meta property=\"og:image:width\" content=\"834\" \/>\n\t<meta property=\"og:image:height\" content=\"434\" \/>\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\\\/12\\\/30\\\/1802-membership-card-timer\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"1802 Membership Card Timer\",\"datePublished\":\"2022-12-30T01:53:50+00:00\",\"dateModified\":\"2022-12-30T15:35:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/\"},\"wordCount\":588,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/image-79.png\",\"keywords\":[\"BASIC\",\"timer\"],\"articleSection\":[\"COSMAC\",\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/\",\"name\":\"1802 Membership Card Timer - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/image-79.png\",\"datePublished\":\"2022-12-30T01:53:50+00:00\",\"dateModified\":\"2022-12-30T15:35:53+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"Creating 1802 Membership Card Timer in BASIC3. This is a stopwatch program written in BASIC3. Simply paste the code into BASIC, and type RUN.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/image-79.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/image-79.png\",\"width\":834,\"height\":434,\"caption\":\"1802 Membership Card Timer\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2022\\\/12\\\/30\\\/1802-membership-card-timer\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"1802 Membership Card Timer\"}]},{\"@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":"1802 Membership Card Timer - Bryce Automation","description":"Creating 1802 Membership Card Timer in BASIC3. This is a stopwatch program written in BASIC3. Simply paste the code into BASIC, and type RUN.","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\/12\/30\/1802-membership-card-timer\/","og_locale":"en_US","og_type":"article","og_title":"1802 Membership Card Timer - Bryce Automation","og_description":"Creating 1802 Membership Card Timer in BASIC3. This is a stopwatch program written in BASIC3. Simply paste the code into BASIC, and type RUN.","og_url":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2022-12-30T01:53:50+00:00","article_modified_time":"2022-12-30T15:35:53+00:00","og_image":[{"width":834,"height":434,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79.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\/12\/30\/1802-membership-card-timer\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"1802 Membership Card Timer","datePublished":"2022-12-30T01:53:50+00:00","dateModified":"2022-12-30T15:35:53+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/"},"wordCount":588,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79.png","keywords":["BASIC","timer"],"articleSection":["COSMAC","Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/","url":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/","name":"1802 Membership Card Timer - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79.png","datePublished":"2022-12-30T01:53:50+00:00","dateModified":"2022-12-30T15:35:53+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"Creating 1802 Membership Card Timer in BASIC3. This is a stopwatch program written in BASIC3. Simply paste the code into BASIC, and type RUN.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2022\/12\/image-79.png","width":834,"height":434,"caption":"1802 Membership Card Timer"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2022\/12\/30\/1802-membership-card-timer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"1802 Membership Card Timer"}]},{"@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\/15010","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=15010"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/15010\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/15017"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=15010"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=15010"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=15010"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}