{"id":15978,"date":"2023-04-20T06:00:00","date_gmt":"2023-04-20T06:00:00","guid":{"rendered":"https:\/\/bryceautomation.com\/?p=15978"},"modified":"2023-04-19T18:22:20","modified_gmt":"2023-04-19T18:22:20","slug":"using-an-lcd-on-rc2014","status":"publish","type":"post","link":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/","title":{"rendered":"Using an LCD on RC2014"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction to Using an LCD on RC2014<\/h2>\n\n\n\n<p>In this post, we&#8217;ll discuss Using an LCD on RC2014.  Basically, in my setup I have a Zed PRO with a <a href=\"https:\/\/www.tindie.com\/products\/tindiescx\/sc115-prototyping-breakout-module-for-rcbusrc2014\/\">Prototyping module.  <\/a> If you don&#8217;t have a prototyping module, you can simply us a 74HCT688, and 74HCT32 to decode your port address.  Simply follow the schematic in the datasheet.  All the prototype module does is help to decode the addresses, and give us some useful pins to use in our prototyping project.  It also provides headers that make these pins easy to access.<\/p><div id=\"bryce-4224121599\" 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>As you can see in the image, my jumpers are set to 0000001X.  With this jumper setting, the only ports we have available are 2, and 3.  This is all we need.  Port 2 will be our command port.  Likewise, Port 3 will be the data port.<\/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\/2023\/04\/Hello1Small.png\" alt=\"Using an LCD on RC2014 Prototyping Module\" class=\"wp-image-15979 lazyload\" width=\"389\" height=\"250\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello1Small.png 700w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello1Small-300x193.png 300w\" data-sizes=\"(max-width: 389px) 100vw, 389px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 389px; --smush-placeholder-aspect-ratio: 389\/250;\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Make Your Connections<\/h2>\n\n\n\n<p>On the LCD, Pin 1 will be 5 volts, and pin 2 is ground.  We can take this voltage directly from our prototyping board.  Usually, there is no need for an extra power supply.  Pin 3 is for the contrast adjust.  I just put a 10K pot between GND, and Pin 3.  Obviously, one of those connections go to the wiper of the pot.  I left one pin of the pot floating.  The Potentiometer simply adjusts the resistance to ground.  We&#8217;ll talk about pins 4, 5, and 6 in the next section.  This will be for our register select,  Read\/Write, and Enable.  Let&#8217;s skip these for now, and hook up the data lines.  D0-D7 on the prototype module connects to D0-D7 on the LCD module.  <\/p>\n\n\n\n<p>Finally, we need to supply power for the LCD Backlight.  Pin 15 connects to 5v, and Pin 16 to ground.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Control Pins<\/h2>\n\n\n\n<p>At this point, we&#8217;ll connect pins 4, 5, and 6.  <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Register Select<\/h3>\n\n\n\n<p>Pin 4 is the register select pin.  We&#8217;ll simply connect this to A0 on the prototyping module.  This effectively gives us 2 ports that we can write to.  When A0 is low, our address is even, and we are writing to the Command Register on the LCD.  Likewise, when A0 is High, we are writing to the data register.  Since our 688 is decoding the address as 0000001X, this gives us Port 2 as the command register (00000010), and port 3 as the data register (00000011).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Read \/ Write<\/h3>\n\n\n\n<p>Pin 5 is the Read\/Write pin.  This needs to be low for write, and high for read.  If you are just writing data, then you can connect this to ground.  If you will also read from the LCD, then you need to use the \/IO Read pin, and invert it.  I tried this with \/IO Write directly, but this fell to zero too late, and I had no data on the display.  You can invert this with a NOT gate, or NAND gate.  In this case, I just used the 74HCT00N, and tied two inputs together.  The two inputs connect to \/IO Read.  The output of the gate connects to pin 5.  You can read about the NAND gate, and get it&#8217;s pinout <a href=\"https:\/\/www.cs.purdue.edu\/homes\/cs250\/lab2-parity\/\">here<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Enable<\/h3>\n\n\n\n<p>Lastly, we have Pin 6 on the LCD.  This is the Enable pin.  You can only read or write to the LCD when the enable pin is high.  When it goes low, your text still stays on the display.  For this pin, I just inverted the \/IO Enable from the Prototyping module.  Again, you can use a NOT inverter, or NAND gate.  Since the 74HCT00N has six gates, you can just use a different gate on the same IC.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Initialize the Display for Using an LCD on RC2014<\/h2>\n\n\n\n<p>To initialize the display, I looked at how <a href=\"https:\/\/eater.net\/downloads\/hello-world-final.s\">Ben Eater <\/a>initialized his for the 6502, and applied the same concept here to the RC2014.  Basically, we just write the following codes to the command register:  56 14 06 01  (These are in decimal).  56 sets the mode to 2 line display, 8 data bits, and 5&#215;8 font size.  14 turns on the display with a non-blinking cursor.  06 increments and shifts the cursor, and 01 clears the display.   In MSBASIC, you would do this as follows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>OUT 2,56\nOUT 2,14\nOUT 2,06\nOUT 2,01<\/code><\/pre>\n\n\n\n<p>Next, you are ready to start writing ASCII Data to port 3, which is the data port.  For example, OUT 3,65 should give you an A.  Remember that you are in BASIC, so we are using DECIMAL by default.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Writing Code<\/h2>\n\n\n\n<p>Here is my simple program to write &#8220;HELLO WORLD!!&#8221; onto the display:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"278\" height=\"393\" data-src=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/LCDCodeSmall.png\" alt=\"Using an LCD on RC2014 -- Code\" class=\"wp-image-15983 lazyload\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/LCDCodeSmall.png 278w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/LCDCodeSmall-212x300.png 212w\" data-sizes=\"(max-width: 278px) 100vw, 278px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 278px; --smush-placeholder-aspect-ratio: 278\/393;\" \/><\/figure>\n\n\n\n<p>At last, your display should work!<\/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\/2023\/04\/Hello2Small.png\" alt=\"\" class=\"wp-image-15985 lazyload\" width=\"442\" height=\"265\" data-srcset=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello2Small.png 728w, https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello2Small-300x180.png 300w\" data-sizes=\"(max-width: 442px) 100vw, 442px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 442px; --smush-placeholder-aspect-ratio: 442\/265;\" \/><\/figure>\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-1546745094\" 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 Using an LCD on RC2014 In this post, we&#8217;ll discuss Using an LCD on RC2014. Basically, in my setup I have a Zed PRO with a Prototyping module. If you don&#8217;t have a prototyping module, you can simply us a 74HCT688, and 74HCT32 to decode your port address. Simply follow the schematic in <a class=\"moretag btn btn-primary\" href=\"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/\">Read More \u00bb<\/a><\/p>\n","protected":false},"author":1,"featured_media":15985,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[917,727],"tags":[347,918],"class_list":{"0":"post-15978","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-rc2014","8":"category-vintage-computers","9":"tag-lcd","10":"tag-rc2014","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>Using an LCD on RC2014 - Bryce Automation<\/title>\n<meta name=\"description\" content=\"Using an LCD on RC2014. We&#039;ll cover how to wire the module, initialize the LCD, and write ASCII Characters to the display.\" \/>\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\/04\/20\/using-an-lcd-on-rc2014\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using an LCD on RC2014 - Bryce Automation\" \/>\n<meta property=\"og:description\" content=\"Using an LCD on RC2014. We&#039;ll cover how to wire the module, initialize the LCD, and write ASCII Characters to the display.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/\" \/>\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-04-20T06:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello2Small.png\" \/>\n\t<meta property=\"og:image:width\" content=\"728\" \/>\n\t<meta property=\"og:image:height\" content=\"436\" \/>\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\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/\"},\"author\":{\"name\":\"Ricky\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"headline\":\"Using an LCD on RC2014\",\"datePublished\":\"2023-04-20T06:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/\"},\"wordCount\":736,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/Hello2Small.png\",\"keywords\":[\"LCD\",\"RC2014\"],\"articleSection\":[\"RC2014\",\"Vintage Computers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/\",\"name\":\"Using an LCD on RC2014 - Bryce Automation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/Hello2Small.png\",\"datePublished\":\"2023-04-20T06:00:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/#\\\/schema\\\/person\\\/5d5b0f6f6ad768f1ee52968338e63af7\"},\"description\":\"Using an LCD on RC2014. We'll cover how to wire the module, initialize the LCD, and write ASCII Characters to the display.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/Hello2Small.png\",\"contentUrl\":\"https:\\\/\\\/bryceautomation.com\\\/wp-content\\\/uploads\\\/2023\\\/04\\\/Hello2Small.png\",\"width\":728,\"height\":436,\"caption\":\"Using an LCD on RC2014\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bryceautomation.com\\\/index.php\\\/2023\\\/04\\\/20\\\/using-an-lcd-on-rc2014\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bryceautomation.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using an LCD on RC2014\"}]},{\"@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":"Using an LCD on RC2014 - Bryce Automation","description":"Using an LCD on RC2014. We'll cover how to wire the module, initialize the LCD, and write ASCII Characters to the display.","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\/04\/20\/using-an-lcd-on-rc2014\/","og_locale":"en_US","og_type":"article","og_title":"Using an LCD on RC2014 - Bryce Automation","og_description":"Using an LCD on RC2014. We'll cover how to wire the module, initialize the LCD, and write ASCII Characters to the display.","og_url":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/","og_site_name":"Bryce Automation","article_author":"https:\/\/www.facebook.com\/ricky.bryce.7","article_published_time":"2023-04-20T06:00:00+00:00","og_image":[{"width":728,"height":436,"url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello2Small.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\/04\/20\/using-an-lcd-on-rc2014\/#article","isPartOf":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/"},"author":{"name":"Ricky","@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"headline":"Using an LCD on RC2014","datePublished":"2023-04-20T06:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/"},"wordCount":736,"commentCount":0,"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello2Small.png","keywords":["LCD","RC2014"],"articleSection":["RC2014","Vintage Computers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/","url":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/","name":"Using an LCD on RC2014 - Bryce Automation","isPartOf":{"@id":"https:\/\/bryceautomation.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/#primaryimage"},"image":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/#primaryimage"},"thumbnailUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello2Small.png","datePublished":"2023-04-20T06:00:00+00:00","author":{"@id":"https:\/\/bryceautomation.com\/#\/schema\/person\/5d5b0f6f6ad768f1ee52968338e63af7"},"description":"Using an LCD on RC2014. We'll cover how to wire the module, initialize the LCD, and write ASCII Characters to the display.","breadcrumb":{"@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/#primaryimage","url":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello2Small.png","contentUrl":"https:\/\/bryceautomation.com\/wp-content\/uploads\/2023\/04\/Hello2Small.png","width":728,"height":436,"caption":"Using an LCD on RC2014"},{"@type":"BreadcrumbList","@id":"https:\/\/bryceautomation.com\/index.php\/2023\/04\/20\/using-an-lcd-on-rc2014\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bryceautomation.com\/"},{"@type":"ListItem","position":2,"name":"Using an LCD on RC2014"}]},{"@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\/15978","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=15978"}],"version-history":[{"count":0,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/posts\/15978\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media\/15985"}],"wp:attachment":[{"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/media?parent=15978"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/categories?post=15978"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bryceautomation.com\/index.php\/wp-json\/wp\/v2\/tags?post=15978"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}