{"id":17148,"date":"2023-08-13T16:35:43","date_gmt":"2023-08-13T16:35:43","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=17148"},"modified":"2023-08-13T16:35:45","modified_gmt":"2023-08-13T16:35:45","slug":"serial-write-on-the-southern-cross","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/","title":{"rendered":"Serial Write on the Southern Cross"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to Serial Write on the Southern Cross<\/h2>\n\n\n\n<p>This post is for absolute beginners who which to perform a Serial Write on the Southern Cross Z80 Computer.  <a href=\"https:\/\/github.com\/crsjones\/Southern-Cross-Computer-z80\">Craig Jones<\/a> develops and maintains the Southern Cross Z80 Computer.  In this section, I&#8217;ll be using the ACIA Serial Monitor, and the SCNEO ROM.<\/p><div id=\"bryce-4013081233\" 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>For this post, I&#8217;ll just be using a standard text editor.  I&#8217;m also using the <a href=\"https:\/\/www.retrotechnology.com\/restore\/az80.html\">AZ80 assembler.<\/a>  We&#8217;ll simply write &#8220;Hello World!&#8221; through the ACIA module back to your terminal.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Set Originating Location and Initialize Registers<\/h2>\n\n\n\n<p>In each program, we need to use the ORG statement.  The ORG statement will tell the assembler where your code begins.  This is important for jumps, and system calls.  Otherwise, the assembler would jump to addresses that we do not expect.  Additionally, I always like to initialize the registers that I use in code.   This sets the registers to a known value.  This is not always necessary since we will usually redefine these values in logic anyway.<\/p>\n\n\n\n<p>Be sure that instructions have a tab or a few spaces before them.  Otherwise, our assembler may interpret these as labels.  Hexadecimal values will have the letter &#8220;H&#8221; after them.  If a hexadecimal value starts with a letter, such as FF, then you will also need a 0 before the value.  ie. 0FFH will be the hex value FF.<\/p>\n\n\n\n<p>Later on, we will use the C register for function codes on system calls.  The Southern Cross SCNEO monitor has system calls that perform routine tasks for us.  We&#8217;ll be using those system calls in this code.  Some system calls require us to pass additional data via the HL register.  The &#8220;A&#8221; register is the accumulator.  That is our main working register that we use in code.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    ORG 2000H       ; PROGRAM STARTS AT 2000H\n; ** BEGIN INITIALIZE **    \nINIT: ; INITIALIZE REGISTERS AND MEMORY\n    LD A,0  ; ZERO ACCUMULATOR\n    LD C,0  ; ZERO C REGISTER FOR SYSTEM FUNCTIONS\n    LD HL,00H  ; ZERO HL FOR SYSTEM FUNCTIONS\n; ** END INITIALIZE ***<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Write the Main Routine  for our Serial Write on the Southern Cross<\/h2>\n\n\n\n<p>At this point, we are ready to write the main routine.  We need to set up some registers before performing our system call.  First, we have a label, BEGIN:  Later on, if we wish to loop the program, we can always jump back to the beginning of our code.<\/p>\n\n\n\n<p>Next, we LD HL,MYMSG.  In the next section of this post, we will define what the message is.  This will simply load the HL register with the address that our message begins at.<\/p>\n\n\n\n<p>Next, we load C with the decimal value of 34.  This is a function call in the system that will write the message to the serial port.  When the system sees a 00H, then it knows to terminate the message.    If you use the Southern Cross &#8220;INCLUDE&#8221; file, then you could simply use LD C,SNDMSG.  The INCLUDE file defines the value of SNDMSG as 34.  Here, I&#8217;ve just shown that code as a comment.  Anything after a simicolon &#8220;;&#8221; on a line is a comment for the programmer, or anyone viewing the code.  The assembler ignores comments (for the most part).  Obviously, they will still appear on a list file.<\/p>\n\n\n\n<p>Lastly, we call the system with RST 30H.  Although you can use a call to 30H, the RST instruction is more efficient and uses fewer processor cycles.  There are only specific addresses the RST instruction supports.  <\/p>\n\n\n\n<p>Finally, we stop the processor with our HALT instruction.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>; ** BEGIN MAIN ROUTINE **\nBEGIN:\n    LD HL,MYMSG\n    LD C,34  ;LD C,SNDMSG\n    RST 30H\nDONE:\n    HALT\n; ** END MAIN ROUTINE<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Composing the Message to Write<\/h2>\n\n\n\n<p>Finally, we are ready to write the message.  Remember that previously we loaded HL will the memory location of MYMSG.  Now, it&#8217;s time to define that message.  First, we have a label, MYMSG:.  After that, we will define a starting byte with the DB instruction.  You will notice that &#8220;Hello World!&#8221; is in quotes.  This tells the assembler to convert this text to ASCII.  After that, we have a 0DH, which is a carriage return.  Then we have 0AH, which is a line feed.  We terminate the string with 00H.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>; ** BEGIN DATA TABLES (ARRAYS) **\nMYMSG: ; Message that we display\n    DB \"Hello World!\", 0DH, 0AH, 00H\n; ** END DATA TABLES (ARRAYS) **<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Assembling your Project<\/h2>\n\n\n\n<p>We&#8217;ll save the project named &#8220;SimpleSerialWrite.asm&#8221;.  At this time, we will run the AZ80 Assembler.  I&#8217;m using Linux, so I simply enter the directory that my assembler and type .\/az80 SimpleSerialWrite.asm -l SimpleSerialWrite.lst -o SimpleSerialWrite.hex<\/p>\n\n\n\n<p>The AZ80 assembler will build your hex code that you will now send to the Southern Cross.  In your terminal, reset the Southern Cross, and hit the Fn key twice.  type I, then send your file.  After that, type G 2000 to run your program starting at memory cell 2000H<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"574\" height=\"405\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image.png\" alt=\"Serial Write on the Southern Cross\" class=\"wp-image-17150 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image.png 574w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image-300x212.png 300w\" data-sizes=\"(max-width: 574px) 100vw, 574px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 574px; --smush-placeholder-aspect-ratio: 574\/405;\" \/><\/figure>\n\n\n\n<p>The final hex code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>:102000003E000E00210000210E200E22F7764865CA\n:0D2010006C6C6F20576F726C64210D0A001C\n:00201D01C2\n<\/code><\/pre>\n\n\n\n<p>For more information, visit the <a href=\"https:\/\/bryceautomation.com\/index.php\/category\/vintage-computers\/\">Vintage Computers Category Page!<\/a><\/p>\n\n\n\n<p>&#8212; Ricky Bryce<\/p>\n<div id=\"bryce-3340599498\" 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 Serial Write on the Southern Cross This post is for absolute beginners who which to perform a Serial Write on the Southern Cross Z80 Computer. Craig Jones develops and maintains the Southern Cross Z80 Computer. In this section, I&#8217;ll be using the ACIA Serial Monitor, and the SCNEO ROM. For this post, I&#8217;ll <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":17150,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[727],"tags":[957,956,955,420],"class_list":{"0":"post-17148","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-vintage-computers","8":"tag-az80","9":"tag-scc","10":"tag-serial-write","11":"tag-z80","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>Serial Write on the Southern Cross - Bryce Automation<\/title>\n<meta name=\"description\" content=\"How to perform a Serial Write on the Southern Cross. We&#039;ll be using Assembly Language to write a simple Hello World! Project.\" \/>\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\/2023\/08\/13\/serial-write-on-the-southern-cross\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Serial Write on the Southern Cross - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"How to perform a Serial Write on the Southern Cross. We&#039;ll be using Assembly Language to write a simple Hello World! Project.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/\" \/>\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=\"2023-08-13T16:35:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-13T16:35:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"574\" \/>\n\t<meta property=\"og:image:height\" content=\"405\" \/>\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\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"Serial Write on the Southern Cross\",\"datePublished\":\"2023-08-13T16:35:43+00:00\",\"dateModified\":\"2023-08-13T16:35:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/\"},\"wordCount\":754,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/image.png\",\"keywords\":[\"AZ80\",\"SCC\",\"Serial Write\",\"z80\"],\"articleSection\":[\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/\",\"name\":\"Serial Write on the Southern Cross - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/image.png\",\"datePublished\":\"2023-08-13T16:35:43+00:00\",\"dateModified\":\"2023-08-13T16:35:45+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"How to perform a Serial Write on the Southern Cross. We'll be using Assembly Language to write a simple Hello World! Project.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/image.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/image.png\",\"width\":574,\"height\":405,\"caption\":\"Serial Write on the Southern Cross\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/08\\\/13\\\/serial-write-on-the-southern-cross\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Serial Write on the Southern Cross\"}]},{\"@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":"Serial Write on the Southern Cross - Bryce Automation","description":"How to perform a Serial Write on the Southern Cross. We'll be using Assembly Language to write a simple Hello World! Project.","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\/2023\/08\/13\/serial-write-on-the-southern-cross\/","og_locale":"en_US","og_type":"article","og_title":"Serial Write on the Southern Cross - Bryce Automation","og_description":"How to perform a Serial Write on the Southern Cross. We'll be using Assembly Language to write a simple Hello World! Project.","og_url":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2023-08-13T16:35:43+00:00","article_modified_time":"2023-08-13T16:35:45+00:00","og_image":[{"width":574,"height":405,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image.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\/2023\/08\/13\/serial-write-on-the-southern-cross\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"Serial Write on the Southern Cross","datePublished":"2023-08-13T16:35:43+00:00","dateModified":"2023-08-13T16:35:45+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/"},"wordCount":754,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image.png","keywords":["AZ80","SCC","Serial Write","z80"],"articleSection":["Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/","url":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/","name":"Serial Write on the Southern Cross - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image.png","datePublished":"2023-08-13T16:35:43+00:00","dateModified":"2023-08-13T16:35:45+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"How to perform a Serial Write on the Southern Cross. We'll be using Assembly Language to write a simple Hello World! Project.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/08\/image.png","width":574,"height":405,"caption":"Serial Write on the Southern Cross"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2023\/08\/13\/serial-write-on-the-southern-cross\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"Serial Write on the Southern Cross"}]},{"@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\/17148","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=17148"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/17148\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/17150"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=17148"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=17148"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=17148"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}