{"id":5358,"date":"2025-05-21T06:47:42","date_gmt":"2025-05-21T06:47:42","guid":{"rendered":"https:\/\/webprojects.cloud\/wordpress\/splatco\/?page_id=5358"},"modified":"2025-07-11T08:55:32","modified_gmt":"2025-07-11T08:55:32","slug":"setting-rtc-via-simplehmi","status":"publish","type":"page","link":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/","title":{"rendered":"setting rtc via simplehmi"},"content":{"rendered":"\n<p><strong>This EasyStep will show you how to set the time in your EC1 from the time in your PC. It&#8217;s quick and it&#8217;s easy. You will also learn how to incorporate the tiny bit of required SPLat code into your own SPLat programs.<\/strong><\/p>\n\n\n\n<p>It should take you no more than an hour to go through this, providing you already understand the fundamentals of SPLat programming.<\/p>\n\n\n\n<p>The EC1 is unique among very low cost microcontroller boards in that it has an onboard calendar\/clock, often called RealTime Clock (RTC). The RTC provides a full calendar and time of day clock, as well as advanced features like programmable events that can be set to go off at specified times on selected days of the week. In short, the RTC has enough features to let you program elaborate time-clock functionality into your EC1-based project.<\/p>\n\n\n\n<p>Note: Don&#8217;t confuse the RTC with the basic ability to generate time intervals. SPLat has a rich set of interval related instructions like&nbsp;Pause, which handle the passage of time. These don&#8217;t exist as native functions in most other microcontroller boards. The RTC takes it to a higher level again by knowing what the date and time are.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">What you will need<\/h6>\n\n\n\n<ul class=\"wp-block-list\">\n<li>An EC1 all ready to plug into your PC via USB;<\/li>\n\n\n\n<li>SPLat\/PC installed and running, and the basic skills to enter and download programs.<\/li>\n<\/ul>\n\n\n\n<p>Before starting on this, please be sure to have completed the EasyStep\u00a0<a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/connect-to-jy-mcu-bt\/\">Connecting a battery to your EC1 for the realtime clock<\/a><\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Overview<\/h6>\n\n\n\n<p>The RTC setting capability is contained within the\u00a0<a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/download\/simplehmi\/\">SimpleHMI<\/a>\u00a0client in SPLat\/PC.\u00a0The SimpleHMI has a button next to the SimpleHMI screen. When clicked it will set the date and time to a connected EC1. If the EC1 is running a tiny bit of special code, the result will be that the RTC in the EC1 is set to the time and date in your PC.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"673\" height=\"265\" src=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif\" alt=\"\" class=\"wp-image-5363\"\/><\/figure>\n\n\n\n<h6 class=\"wp-block-heading\">The bare bones<\/h6>\n\n\n\n<p>If you include the following two lines of code in your program, near the top (and definitely before a&nbsp;RunTasksForever), your program will be able to have the time set by cicking the Set RTC button illustrated above. As with all hash commands and functions, this requires your program to be running MultiTrack.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># Open_Serial User(38400, 8, N)  ;Goes to SimpleHMI in the PC (inside SPLat\/PC or standalone version)\t\n# HMI SetRTCEvent()<\/pre>\n\n\n\n<p>The first line opens the default communications port, which is the USB programming port, and makes it available for use by your program. There is a 10 second delay before that comes into effect (the reason for that delay should be clear shortly).<\/p>\n\n\n\n<p>The second line causes a whole pile of under-the-hood code to be activated, which provides the capability of receiving a time-setting message from the SimpleHMI device (in this case the PC) and updating the onboard RTC with time and date.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">A more elaborate template program<\/h6>\n\n\n\n<p>The above two lines of code have one drawback: SPLat\/PC, and the SimpleHMI client that you can run from inside SPLat\/PC, are two quite separate entities. Once the communications port has been opened for SimpleHMI use by the running application, it is no longer available to SPLat\/PC for programming the board. The only away to give control back to SPLat\/PC is to restart the program and the hit the Stop button in the SPLat\/PC Module window within 10 seconds. There are two ways to restart the program:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Cycle the power, by unplugging and re-plugging the USB (assuming you are powering the board off USB). Then hit the Stop button within 10 seconds. This method is inconvenient. Also, the USB drivers in Windows get upset by unplugging, and it may be difficult to get the PC to re-activate the port within 10 seconds;<\/li>\n\n\n\n<li>Do a bit of skullduggery in the SPLat program so it can be forced to crash. This always forces a restart of the program.<\/li>\n<\/ul>\n\n\n\n<p>The following program does a number of things<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>At startup it turns on both LEDs and waits for you to press the button on the EC1. While both LEDs are on you can click the Stop or Connect buttons on the SPLat\/PC Module window, and get connected to the board;<br><img loading=\"lazy\" decoding=\"async\" width=\"168\" height=\"55\" src=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_28-1.gif\" alt=\"\"><\/li>\n\n\n\n<li>The green LED flashes to tell you the program is running (&#8220;heart beat&#8221;). This will not happen until 10s after the program started&nbsp;<em>and<\/em>&nbsp;the EC1 button has been pressed;<\/li>\n\n\n\n<li>Any subsequent short press on the EC1 push button forces the RTC to be updated from the SimpleHMI client in SPLat\/PC;<\/li>\n\n\n\n<li>A click of the Set RTC button on the SimpleHMI window in SPLat\/PC also forces the RTC to be updated;<\/li>\n\n\n\n<li>The red LED flashes briefly when the RTC time and date are sent from SimpleHMI;<\/li>\n\n\n\n<li>A long (2s) press on the EC1 push button deliberately crashes the program (Kill switch function). The program restarts, turns on both LEDs and will respond to the Stop or Connect buttons on the SPLat\/PC Module window;<\/li>\n<\/ul>\n\n\n\n<p>The full program is listed below, with extensive annotations. To show\/hide the program listing&nbsp;<a onclick=\"toggleVisibility('hiddenContent1')\" class=\"pointer\">click here<\/a>. There are pop-ups for each major functional block of code, and clickable links on individual instructions that take you to the formal descriptions of the instructions.<\/p>\n\n\n\n<p>The block annotations are marked like this:;[&#8230;]<\/p>\n\n\n\n<p>Place your mouse over that line to see a pop-up describing the overall logic of the block.<\/p>\n\n\n\n<p>Many instruction also have clickable links to the formal definition online. (Tip: Click the link with your mouse wheel to open in a new browser tab)<\/p>\n\n\n\n<p><em>Please<\/em>&nbsp;invest some time studying&nbsp;<a onclick=\"toggleVisibility('hiddenContent1')\" class=\"pointer\">the program<\/a>. Even if you don&#8217;t understand all the details, try to at least get the general drift of what the major blocks are all about.<\/p>\n\n\n\n<pre id=\"hiddenContent1\" class=\"wp-block-code d-none has-background\" style=\"background-color:#ffdddd\"><code>;========== Demo: Setting RTC in an EC1 from SimpleHMI\t====================\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n;&#91;...]\niButton        iEQU             0         ;Give the EC1 button a recognisable name\noRedLED        oEQU             1         ;Give the EC1 red LED a recognisable name\noGreenLED      oEQU             0         ;Give the EC1 green LED a recognisable name\n\n;&#91;...]\n;Turn on both EC1 LEDs then wait for a button press.\t\t\t\t\t\t\t\t\t\t\t\t\t\n;This provides a trap for any crashes, and makes it easy to detect a crash and connect to SPLat\/PC\t\t\n                On              oRedLED\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n                On              oGreenLED\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n                <a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/input-and-output-instructions-digital\/waitonk-ii\/\">WaitOnK<\/a>         iButton \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n                Off             oRedLED\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n                Off             oGreenLED\t\n  \n;&#91;...]\n;The default serial port needs to be opened in User mode to allow SimpleHMI \n;communication with the PC        \n# <a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/open_serial-hash-command\/\">Open_Serial<\/a>  <a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/communications-instructions\/open_serial-hash-command\/userbaudrate-bits-parity-hash-function\/\">User(38400, 8, N)<\/a>;Goes to SimpleHMI in the PC (inside SPLat\/PC)\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n;&#91;...]\n;Declare the handler for the SetRTCEvent, which happens when the PC sends us RTC data\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n# <a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/deprecated\/hmi-android-windows\/\">HMI<\/a>  SetRTCEvent(MyRTCHandler)\n\n;&#91;...](Don't yet know what MultiTrack is? See <a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/what-multitasking-really-means-to-you\/\">32 processes for the price of one<\/a>)\n;Launch the tasks required\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n                <a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/multitrack-instructions\/launchtask-lllljj-d16\/\">LaunchTask<\/a>              FetchIt        ;Task that lets the enduser get an RTC update\n                LaunchTask              HeartBeat      ;Flashes a LED to show we are alive      \n                LaunchTask              KillSwitch     ;Makes the EC1 button into a killswitch\n                <a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/multitrack-instructions\/runtasksforever-d16\/\">RunTasksForever<\/a>\t\t\t\t;Start the tasks running\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n;------  RTC update request task -------------------------------\n;This task asks the SimpleHMI client to send RTC data whenever the EC1 button is pressed\nFetchIt:\n                WaitOnK         iButton   ;Wait for the button\n# HMI GetRTC()                          ;Ask SimpleHMI to send a date\/time update\n                GoTo            FetchIt\n\t\t\t\t\n;------  HeartBeat task -------------------------------\n;This task flashes the green LED just to show the program is running.                \nHeartBeat:\n                On              oGreenLED\n                Pause           10\n                Off             oGreenLED\n                Pause           40\n                GoTo            HeartBeat\n\n;------  KillSwitch task -------------------------------\n;This task kills the program if the EC1 button is held on for 2s.\n;This allows to SPLat\/PC to regain control (Click Stop on the Module window)\nKillSwitch:\n                WaitOn         iButton     ;Wait for the button\n                WaitOffT       iButton,200 ;Allow 2s for it to go off again\n                GoIfT           KillSwitch ;g\/ it went off within 2s\nDie             GoSub           Die        ;deliberate crash.\n\n;------- Event handler for RTC updates from SimpleHMI ---------                          \n;Handle the SetRTCEvent. Flash the red LED to signal it was received.\n;By the time we get here the RTC has been set to the date and time sent from \n;the SimpleHMI client (a.k.a. the PC, in this case)\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\nMyRTCHandler:    \n                On              oRedLED\n                Pause           50\n                Off             oRedLED\n                Pause           10 \n                Return<\/code><\/pre>\n\n\n\n\n\n\n\n<h6 class=\"wp-block-heading\">Take back control<\/h6>\n\n\n\n<p>When you have explored everything the program can do, you need to stop it running and give control of the EC1 back to SPLat\/PC.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Press and hold the EC1 button for 2 seconds. Both LEDs should come on. You have just triggered the killswitch function, and the program has restarted. Click the Stop button on the Module window of SPLat\/PC (or the Connect button, if it is showing)<br><img loading=\"lazy\" decoding=\"async\" width=\"168\" height=\"55\" src=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_28-1.gif\" alt=\"\"><br>The Module window should expand, and stay expanded.<br><br><img loading=\"lazy\" decoding=\"async\" width=\"168\" height=\"285\" src=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_9-8.gif\" alt=\"\"><\/li>\n\n\n\n<li>You will get a pop-up error message. This happens because the killswitch deliberately crashes the program. Dismiss the error message.<\/li>\n<\/ul>\n\n\n\n<p>You have successfully stopped the program and given SPLat\/PC control of the board, ready to change the program.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This EasyStep will show you how to set the time in your EC1 from the time in your PC. It&#8217;s quick and it&#8217;s easy. You&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-5358","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>setting rtc via simplehmi - SPLat Controls<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"setting rtc via simplehmi - SPLat Controls\" \/>\n<meta property=\"og:description\" content=\"This EasyStep will show you how to set the time in your EC1 from the time in your PC. It&#8217;s quick and it&#8217;s easy. You...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/\" \/>\n<meta property=\"og:site_name\" content=\"SPLat Controls\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-11T08:55:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"673\" \/>\n\t<meta property=\"og:image:height\" content=\"265\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/\",\"name\":\"setting rtc via simplehmi - SPLat Controls\",\"isPartOf\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif\",\"datePublished\":\"2025-05-21T06:47:42+00:00\",\"dateModified\":\"2025-07-11T08:55:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#primaryimage\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif\",\"contentUrl\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif\",\"width\":673,\"height\":265},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"setting rtc via simplehmi\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/#website\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/\",\"name\":\"SPLat Controls\",\"description\":\"OEM Embedded Machine Controllers\",\"publisher\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/#organization\",\"name\":\"SPLat Controls\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2024\/10\/logo.svg\",\"contentUrl\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2024\/10\/logo.svg\",\"caption\":\"SPLat Controls\"},\"image\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"setting rtc via simplehmi - SPLat Controls","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"setting rtc via simplehmi - SPLat Controls","og_description":"This EasyStep will show you how to set the time in your EC1 from the time in your PC. It&#8217;s quick and it&#8217;s easy. You...","og_url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/","og_site_name":"SPLat Controls","article_modified_time":"2025-07-11T08:55:32+00:00","og_image":[{"width":673,"height":265,"url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif","type":"image\/gif"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/","name":"setting rtc via simplehmi - SPLat Controls","isPartOf":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#primaryimage"},"image":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#primaryimage"},"thumbnailUrl":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif","datePublished":"2025-05-21T06:47:42+00:00","dateModified":"2025-07-11T08:55:32+00:00","breadcrumb":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#primaryimage","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif","contentUrl":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/05\/easystep_32-1.gif","width":673,"height":265},{"@type":"BreadcrumbList","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/setting-rtc-via-simplehmi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/"},{"@type":"ListItem","position":2,"name":"setting rtc via simplehmi"}]},{"@type":"WebSite","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/#website","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/","name":"SPLat Controls","description":"OEM Embedded Machine Controllers","publisher":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webprojects.cloud\/wordpress\/splatco\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/#organization","name":"SPLat Controls","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/#\/schema\/logo\/image\/","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2024\/10\/logo.svg","contentUrl":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2024\/10\/logo.svg","caption":"SPLat Controls"},"image":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/pages\/5358","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/comments?post=5358"}],"version-history":[{"count":8,"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/pages\/5358\/revisions"}],"predecessor-version":[{"id":6215,"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/pages\/5358\/revisions\/6215"}],"wp:attachment":[{"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/media?parent=5358"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}