{"id":63459,"date":"2024-10-16T08:00:00","date_gmt":"2024-10-16T02:30:00","guid":{"rendered":"https:\/\/ye1o34zhk8.onrocket.site\/?p=63459"},"modified":"2024-09-17T12:48:54","modified_gmt":"2024-09-17T07:18:54","slug":"seven-segment-display-programming","status":"publish","type":"post","link":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/","title":{"rendered":"Seven Segment Display Programming with Structured Text"},"content":{"rendered":"\n<p>We have seen how a <strong>seven segment display<\/strong> plays a very important role in many types of indications that we see in our daily lives. If we need to control its logic through <a href=\"https:\/\/instrumentationtools.com\/plc-control-panel\/\" target=\"_blank\" rel=\"noreferrer noopener\">PLC<\/a>, then a new programmer has many options to choose from the language to write it. One of the most highly used and efficient level languages is structured text.<\/p>\n\n\n\n<p>In this post, we will see how to write a seven segment display logic in a PLC program using structured text language.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-seven-segment-display\">Seven Segment Display<\/h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"96\" height=\"120\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2016\/08\/instrumentationtools.com_seven-segment-display-working-animation.gif\" alt=\"seven-segment-display-working-animation\" class=\"wp-image-11562\"\/><figcaption class=\"wp-element-caption\">Example<\/figcaption><\/figure>\n<\/div>\n\n\n<p>Let us understand the case scenario first. There are <strong>four PLC digital inputs<\/strong> and <strong>seven PLC digital outputs<\/strong>. For a number to be displayed, the inputs will come in sequence as per the below truth table.<\/p>\n\n\n\n<p>In correspondence to the input sequence received, the outputs will turn on accordingly and display the <a href=\"https:\/\/instrumentationtools.com\/difference-between-common-cathode-and-common-anode-7-segment-led-display\/\" target=\"_blank\" rel=\"noreferrer noopener\">LED segment<\/a> with numbers. Refer to the second image for more understanding, where you can co-relate this table with the display.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-fixed-layout\"><tbody><tr><td>Input I0<\/td><td>Input I1<\/td><td>Input I2<\/td><td>Input I3<\/td><td>Output O1<\/td><td>Output O2<\/td><td>Output O3<\/td><td>Output O4<\/td><td>Output O5<\/td><td>Output O6<\/td><td>Output O7<\/td><td>Display<\/td><\/tr><tr><td>0<\/td><td>0<\/td><td>0<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>0<\/td><\/tr><tr><td>0<\/td><td>0<\/td><td>0<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>0<\/td><td>0<\/td><td>0<\/td><td>1<\/td><\/tr><tr><td>0<\/td><td>0<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>2<\/td><\/tr><tr><td>0<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>0<\/td><td>1<\/td><td>3<\/td><\/tr><tr><td>0<\/td><td>1<\/td><td>0<\/td><td>0<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>4<\/td><\/tr><tr><td>0<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>5<\/td><\/tr><tr><td>0<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>6<\/td><\/tr><tr><td>0<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>0<\/td><td>0<\/td><td>0<\/td><td>7<\/td><\/tr><tr><td>1<\/td><td>0<\/td><td>0<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>8<\/td><\/tr><tr><td>1<\/td><td>0<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>1<\/td><td>0<\/td><td>1<\/td><td>1<\/td><td>9<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"604\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2024\/10\/Seven-Segment-Display-720x604.png\" alt=\"Seven Segment Display\" class=\"wp-image-63462\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-programming-with-structured-text\">Programming with Structured Text<\/h2>\n\n\n\n<p>Now, let us write this program. Refer to the below image. In the first four lines, we are moving the values of four inputs in the corresponding bits of a single word. Due to this, we get different values of the word.<\/p>\n\n\n\n<p>The value of this word is the same as the display number.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2024\/10\/Seven-Segment-Display-Programming-with-Structured-Text.png\" alt=\"Seven Segment Display Programming with Structured Text\" class=\"wp-image-63464\"\/><\/figure>\n\n\n\n<p>Now, after these first four lines, we are using a case statement. <strong>A case statement is used to execute different conditions based on the value of the variable referred<\/strong>. In our case, we are referring to the input status variable. So, based on its current value, we write 0 or 1 to the seven <a href=\"https:\/\/instrumentationtools.com\/peripheral-inputs-and-outputs\/\" target=\"_blank\" rel=\"noreferrer noopener\">outputs<\/a>. Each case value ends with <strong>\u201c:\u201d <\/strong>and each statement ends with<strong> \u201c;\u201d<\/strong>.<\/p>\n\n\n\n<p>Basically, we are just moving true or false values in the digital outputs based on the input conditions. Whatever may be the input value, it will write a corresponding value to the word and this word will then be used as a reference for writing the outputs.<\/p>\n\n\n\n<p>In place of <strong>case statements<\/strong>, we can also use <strong>if-else statements<\/strong>. But then, the logic would have become a little bulkier and larger to look at. This means, that we would have to write a total of 10 if conditions for the logic. So, we simplified it more by using a case statement.<\/p>\n\n\n\n<p>This logic looks simple in structured text. Imagine using it in <a href=\"https:\/\/instrumentationtools.com\/ladder-logic-vs-other-programming-languages-plc-basics\/\" target=\"_blank\" rel=\"noreferrer noopener\">ladder language<\/a>. We would have to write so many rungs with various parallel conditions for turning the output on.<\/p>\n\n\n\n<p><strong>Task For You:<\/strong> Now program the 7 segment display to show the alphabets as shown in the above animation.<\/p>\n\n\n\n<p>In this way, we saw how to write a seven-segment display logic in a PLC program using structured text language.<\/p>\n\n\n\n<p><strong>Read Next:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/instrumentationtools.com\/structured-text-plc-example\/\" target=\"_blank\" rel=\"noreferrer noopener\">Structured Text PLC Logic for Motor Interlock<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/modbus-in-industrial-networks\/\" target=\"_blank\" rel=\"noreferrer noopener\">How Modbus is used in Industrial Networks?<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/conveyor-speed-logic\/\" target=\"_blank\" rel=\"noreferrer noopener\">Conveyor Speed Logic using Structured Text<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/burglar-alarm-security-system\/\" target=\"_blank\" rel=\"noreferrer noopener\">Burglar Alarm Security System PLC FBD Logic<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/instrumentationtools.com\/car-wash-program\/\" target=\"_blank\" rel=\"noreferrer noopener\">Car Wash Program Functional Block Diagram<\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.<\/p>\n","protected":false},"author":101029,"featured_media":63464,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_mo_disable_npp":"","footnotes":""},"categories":[6],"tags":[109972,11380,109971,109974,109973,109970],"class_list":{"0":"post-63459","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-plc","8":"tag-plc-display-control","9":"tag-plc-programming-examples","10":"tag-seven-segment-display-programming","11":"tag-seven-segment-plc-code","12":"tag-structured-text-display-logic","13":"tag-structured-text-plc"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Seven Segment Display Programming with Structured Text<\/title>\n<meta name=\"description\" content=\"Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Seven Segment Display Programming with Structured Text\" \/>\n<meta property=\"og:description\" content=\"Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/\" \/>\n<meta property=\"og:site_name\" content=\"Inst Tools\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/instrumentationtoolss\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-16T02:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2024\/10\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1459\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Viral Nagda\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Seven Segment Display Programming with Structured Text\" \/>\n<meta name=\"twitter:description\" content=\"Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.\" \/>\n<meta name=\"twitter:creator\" content=\"@insttools\" \/>\n<meta name=\"twitter:site\" content=\"@insttools\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Viral Nagda\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/\"},\"author\":{\"name\":\"Viral Nagda\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/person\\\/37a7ca9af8b0c120c1cda12ecdcfe6f7\"},\"headline\":\"Seven Segment Display Programming with Structured Text\",\"datePublished\":\"2024-10-16T02:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/\"},\"wordCount\":514,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png\",\"keywords\":[\"plc display control\",\"plc programming examples\",\"seven-segment display programming\",\"seven-segment plc code\",\"structured text display logic\",\"structured text plc\"],\"articleSection\":[\"PLC Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/\",\"name\":\"Seven Segment Display Programming with Structured Text\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png\",\"datePublished\":\"2024-10-16T02:30:00+00:00\",\"description\":\"Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/#primaryimage\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png\",\"contentUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png\",\"width\":2560,\"height\":1459,\"caption\":\"Seven Segment Display Programming with Structured Text\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/seven-segment-display-programming\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/instrumentationtools.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Seven Segment Display Programming with Structured Text\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#website\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/\",\"name\":\"Instrumentation Tools\",\"description\":\"Instrumentation, Electrical, PLC, Tutorials\",\"publisher\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\"},\"alternateName\":\"Inst Tools\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/instrumentationtools.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#organization\",\"name\":\"Instrumentation Tools\",\"alternateName\":\"Inst Tools\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Instrumentation-Tools-Logo.png\",\"contentUrl\":\"https:\\\/\\\/instrumentationtools.com\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/Instrumentation-Tools-Logo.png\",\"width\":1024,\"height\":1024,\"caption\":\"Instrumentation Tools\"},\"image\":{\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/instrumentationtoolss\\\/\",\"https:\\\/\\\/x.com\\\/insttools\",\"https:\\\/\\\/mastodon.social\\\/@InstrumentationTools\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/instrumentationtools\\\/\",\"https:\\\/\\\/whatsapp.com\\\/channel\\\/0029VaAbUecLNSa4rDPOV31o\",\"https:\\\/\\\/t.me\\\/+u3qORX5FKec1NjA1\",\"https:\\\/\\\/www.instagram.com\\\/instrumentationtools\\\/\",\"https:\\\/\\\/youtube.com\\\/instrumentationtools\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/instrumentationtools.com\\\/#\\\/schema\\\/person\\\/37a7ca9af8b0c120c1cda12ecdcfe6f7\",\"name\":\"Viral Nagda\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g\",\"caption\":\"Viral Nagda\"},\"description\":\"Electronics Engineer with 12+ years of experience in industrial automation. Blogging is my hobby and I write articles and blogs on industrial automation.\",\"url\":\"https:\\\/\\\/instrumentationtools.com\\\/author\\\/viral-nagda\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Seven Segment Display Programming with Structured Text","description":"Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.","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:\/\/instrumentationtools.com\/seven-segment-display-programming\/","og_locale":"en_US","og_type":"article","og_title":"Seven Segment Display Programming with Structured Text","og_description":"Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.","og_url":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/","og_site_name":"Inst Tools","article_publisher":"https:\/\/www.facebook.com\/instrumentationtoolss\/","article_published_time":"2024-10-16T02:30:00+00:00","og_image":[{"width":2560,"height":1459,"url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2024\/10\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png","type":"image\/png"}],"author":"Viral Nagda","twitter_card":"summary_large_image","twitter_title":"Seven Segment Display Programming with Structured Text","twitter_description":"Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.","twitter_creator":"@insttools","twitter_site":"@insttools","twitter_misc":{"Written by":"Viral Nagda","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/#article","isPartOf":{"@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/"},"author":{"name":"Viral Nagda","@id":"https:\/\/instrumentationtools.com\/#\/schema\/person\/37a7ca9af8b0c120c1cda12ecdcfe6f7"},"headline":"Seven Segment Display Programming with Structured Text","datePublished":"2024-10-16T02:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/"},"wordCount":514,"commentCount":0,"publisher":{"@id":"https:\/\/instrumentationtools.com\/#organization"},"image":{"@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/#primaryimage"},"thumbnailUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2024\/10\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png","keywords":["plc display control","plc programming examples","seven-segment display programming","seven-segment plc code","structured text display logic","structured text plc"],"articleSection":["PLC Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/instrumentationtools.com\/seven-segment-display-programming\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/","url":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/","name":"Seven Segment Display Programming with Structured Text","isPartOf":{"@id":"https:\/\/instrumentationtools.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/#primaryimage"},"image":{"@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/#primaryimage"},"thumbnailUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2024\/10\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png","datePublished":"2024-10-16T02:30:00+00:00","description":"Programming a seven segment display in a PLC using structured text language. Control the LED segments with digital inputs and outputs.","breadcrumb":{"@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/instrumentationtools.com\/seven-segment-display-programming\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/#primaryimage","url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2024\/10\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png","contentUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2024\/10\/Seven-Segment-Display-Programming-with-Structured-Text-scaled.png","width":2560,"height":1459,"caption":"Seven Segment Display Programming with Structured Text"},{"@type":"BreadcrumbList","@id":"https:\/\/instrumentationtools.com\/seven-segment-display-programming\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/instrumentationtools.com\/"},{"@type":"ListItem","position":2,"name":"Seven Segment Display Programming with Structured Text"}]},{"@type":"WebSite","@id":"https:\/\/instrumentationtools.com\/#website","url":"https:\/\/instrumentationtools.com\/","name":"Instrumentation Tools","description":"Instrumentation, Electrical, PLC, Tutorials","publisher":{"@id":"https:\/\/instrumentationtools.com\/#organization"},"alternateName":"Inst Tools","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/instrumentationtools.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/instrumentationtools.com\/#organization","name":"Instrumentation Tools","alternateName":"Inst Tools","url":"https:\/\/instrumentationtools.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/instrumentationtools.com\/#\/schema\/logo\/image\/","url":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2018\/10\/Instrumentation-Tools-Logo.png","contentUrl":"https:\/\/instrumentationtools.com\/wp-content\/uploads\/2018\/10\/Instrumentation-Tools-Logo.png","width":1024,"height":1024,"caption":"Instrumentation Tools"},"image":{"@id":"https:\/\/instrumentationtools.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/instrumentationtoolss\/","https:\/\/x.com\/insttools","https:\/\/mastodon.social\/@InstrumentationTools","https:\/\/www.linkedin.com\/company\/instrumentationtools\/","https:\/\/whatsapp.com\/channel\/0029VaAbUecLNSa4rDPOV31o","https:\/\/t.me\/+u3qORX5FKec1NjA1","https:\/\/www.instagram.com\/instrumentationtools\/","https:\/\/youtube.com\/instrumentationtools"]},{"@type":"Person","@id":"https:\/\/instrumentationtools.com\/#\/schema\/person\/37a7ca9af8b0c120c1cda12ecdcfe6f7","name":"Viral Nagda","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/472c4f2bb73ace2a7e1a8111cf0faa2c9d107a50072eedcbb9ba39613df9e3d9?s=96&d=mm&r=g","caption":"Viral Nagda"},"description":"Electronics Engineer with 12+ years of experience in industrial automation. Blogging is my hobby and I write articles and blogs on industrial automation.","url":"https:\/\/instrumentationtools.com\/author\/viral-nagda\/"}]}},"_links":{"self":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts\/63459","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/users\/101029"}],"replies":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/comments?post=63459"}],"version-history":[{"count":0,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/posts\/63459\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/media\/63464"}],"wp:attachment":[{"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/media?parent=63459"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/categories?post=63459"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/instrumentationtools.com\/wp-json\/wp\/v2\/tags?post=63459"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}