{"id":2509,"date":"2025-04-15T13:23:27","date_gmt":"2025-04-15T13:23:27","guid":{"rendered":"https:\/\/webprojects.cloud\/wordpress\/splatco\/?post_type=spl_knowledgebase&#038;p=2509"},"modified":"2025-06-10T11:23:20","modified_gmt":"2025-06-10T11:23:20","slug":"hmi-button-and-output-examples","status":"publish","type":"spl_knowledgebase","link":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/","title":{"rendered":"HMI &#8211; Button and Output Examples"},"content":{"rendered":"\n<p>You may be wondering how to make an on screen button directly control an output.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Simplest Example<\/h6>\n\n\n\n<p>Here&#8217;s an example where a button will directly toggle output 0:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><br>HUEkDarkGray   #EQU  'FF202020            ;create a named colour<br><br>   ;draw some text and a button<br>   #HMI        Print( \"Output Toggle\" )<br>   #HMI        ButtonEvent2( x:0, y:1, w:10, h:3, t:\"Toggle\", rb:HUEkDarkGray, ev:subBtnToggle )<br><br>   ;start multitasking (required for button events)<br>   RunTasksForever<br><br><br>   ;this subroutine is called when the button is pressed<br>subBtnToggle:<br>   InputO      0                          ;read back the output pin<br>   Not                                    ;invert it<br>   Output      0                          ;write the inverted value<br>   Return                                 ;finished handling the button<br><\/pre>\n\n\n\n<h6 class=\"wp-block-heading\">Using Button Info<\/h6>\n\n\n\n<p>Let&#8217;s get a little more creative, this time we&#8217;ll make the button toggle and have the button&#8217;s state directly drive the output.&nbsp; For this to work, you&#8217;ll need to include this splat file in your build:<\/p>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-499968f5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/ui_utils-1.spt\">Download ui_utils.spt<\/a><\/div>\n<\/div>\n\n\n\n<p>Calling UIsubGetButton returns info on the button action, so we&#8217;ll use the button&#8217;s state to control the output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><br>COMHMI         EQU   251                  ;number of the HMI virtual serial port (required by ui_utils.spt)<br><br>HUEkOff        #EQU  'FF202020            ;off is dark gray<br>HUEkOn         #EQU  'FF0080FF            ;on is sky blue<br><br>   ;draw some text and a button<br>   #HMI        Print( \"Output Toggle\" )<br>   #HMI        ButtonEvent2( x:0, y:1, w:10, h:3, m:\"t\", t:\"Toggle\", rb:HUEkOff, pb:HUEkOn, ev:subBtnToggle )<br><br>   ;start multitasking (required for button events)<br>   RunTasksForever<br><br><br>   ;this subroutine is called when the button is pressed<br>subBtnToggle:<br>   GoSub       UIsubGetButton             ;get extra info on the button action<br>   Output      0                          ;X holds the press\/release value, so write it directly to the output<br>   Return                                 ;finished handling the button<br><br><br><br><br>;subroutines required by ui_utils.spt (both are unused in this example)<br>UIsubBacklightEvent:<br>UIsubRedrawAfterCal:<br>   Return<br><br>;include the ui_utils.spt file which provides a routine for getting extra info on the button action<br>#include file( \"ui_utils.spt\" )<br><\/pre>\n\n\n\n<h6 class=\"wp-block-heading\">For the Brave<\/h6>\n\n\n\n<p>Ok, let&#8217;s go all out and create a button for each output (both the HMI430 and HMI700 have 8 digital I\/O lines built-in).&nbsp; I&#8217;m lazy, so instead of typing 8 ButtonEvent2 instructions, I&#8217;ll create the 8 buttons in a loop.&nbsp; Here&#8217;s how the screen looks (BTW, screen shots are easy, just drag &#8216;n drop the sshotNNN.png file from the&nbsp;<strong>Computer\\HMI430\\Internal Storage<\/strong>&nbsp;directory):<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"272\" src=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png\" alt=\"\" class=\"wp-image-2511\" srcset=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png 480w, https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example-300x170.png 300w, https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example-64x36.png 64w\" sizes=\"auto, (max-width: 480px) 100vw, 480px\" \/><\/figure>\n\n\n\n<p>The &#8220;v:&#8221;alue parameter will hold the output number so we can use the same button subroutine to control all 8 outputs.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><br>COMHMI         EQU   251                  ;number of the HMI virtual serial port (required by ui_utils.spt)<br><br>HUEkOff        #EQU  'FF202020            ;off is dark gray<br>HUEkOn         #EQU  'FF0080FF            ;on is sky blue<br><br>   ;draw some text and buttons<br>   #HMI        Print( \"Output Toggle\" )<br>   LoadI       0                                      ;use the i reg for the output number<br>_Loop<br>   ItoX                                               ;get the index reg<br>   float                                              ;convert to float (into W register)<br>   fLoadQ      12.5                                   ;calc the..<br>   fMul                                               ;..horizontal position (8 buttons @ 12.5% = 100%)<br>   ;w is the horiz pos, q is the width, i is the output number we put into \"v:\" and display via \"t:\"<br>   #HMI        ButtonEvent2( x:(f(=w), \"%\"), y:1, w:(f(=q), \"%\"), h:3, v:b(=i), m:\"t\", t:( \"Op\", b(=i) ), rb:HUEkOff, pb:HUEkOn, ev:subBtnToggle )<br>   IncI                                               ;next output<br>   ItoX                                               ;get the i register<br>   GoIfXlt     8,_Loop                                ;loop over until all 8 output buttons are created<br><br>   ;start multitasking (required for button events)<br>   RunTasksForever<br><br><br>   ;this subroutine is called when a button is pressed<br>subBtnToggle:<br>   GoSub       UIsubGetButton             ;get extra info on the button action<br>   fix                                    ;\"v:\" is the output pin, put into x<br>   XtoI                                   ;then move into i so we can index the output<br>   iOutput     0                          ;X holds the press\/release value, so write it directly to the \"i\"ndexed output (output = i + 0)<br>   Return                                 ;finished handling the button<br><br><br><br><br>;subroutines required by ui_utils.spt (both are unused in this example)<br>UIsubBacklightEvent:<br>UIsubRedrawAfterCal:<br>   Return<br><br>;include the ui_utils.spt file which provides a routine for getting extra info on the button action<br>#include file( \"ui_utils.spt\" )<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>You may be wondering how to make an on screen button directly control an output. Simplest Example Here&#8217;s an example where a button will directly&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":2506,"menu_order":1,"template":"","class_list":["post-2509","spl_knowledgebase","type-spl_knowledgebase","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>HMI - Button and Output Examples - 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=\"HMI - Button and Output Examples - SPLat Controls\" \/>\n<meta property=\"og:description\" content=\"You may be wondering how to make an on screen button directly control an output. Simplest Example Here&#8217;s an example where a button will directly...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"SPLat Controls\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-10T11:23:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png\" \/>\n\t<meta property=\"og:image:width\" content=\"480\" \/>\n\t<meta property=\"og:image:height\" content=\"272\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/\",\"name\":\"HMI - Button and Output Examples - SPLat Controls\",\"isPartOf\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png\",\"datePublished\":\"2025-04-15T13:23:27+00:00\",\"dateModified\":\"2025-06-10T11:23:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#primaryimage\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png\",\"contentUrl\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png\",\"width\":480,\"height\":272},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Programming reference\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Instructions arranged by function\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"# Hash commands and functions\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"# HMI Controller Instructions\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"HMI &#8211; Code Examples\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/\"},{\"@type\":\"ListItem\",\"position\":7,\"name\":\"HMI &#8211; Button and Output Examples\"}]},{\"@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":"HMI - Button and Output Examples - 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":"HMI - Button and Output Examples - SPLat Controls","og_description":"You may be wondering how to make an on screen button directly control an output. Simplest Example Here&#8217;s an example where a button will directly...","og_url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/","og_site_name":"SPLat Controls","article_modified_time":"2025-06-10T11:23:20+00:00","og_image":[{"width":480,"height":272,"url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/","name":"HMI - Button and Output Examples - SPLat Controls","isPartOf":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#primaryimage"},"image":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png","datePublished":"2025-04-15T13:23:27+00:00","dateModified":"2025-06-10T11:23:20+00:00","breadcrumb":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#primaryimage","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png","contentUrl":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/btnop_example.png","width":480,"height":272},{"@type":"BreadcrumbList","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/hmi-button-and-output-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/"},{"@type":"ListItem","position":2,"name":"Programming reference","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/"},{"@type":"ListItem","position":3,"name":"Instructions arranged by function","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/"},{"@type":"ListItem","position":4,"name":"# Hash commands and functions","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/"},{"@type":"ListItem","position":5,"name":"# HMI Controller Instructions","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/"},{"@type":"ListItem","position":6,"name":"HMI &#8211; Code Examples","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/hmi-controller-instructions\/hmi-code-examples\/"},{"@type":"ListItem","position":7,"name":"HMI &#8211; Button and Output Examples"}]},{"@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\/spl_knowledgebase\/2509","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/spl_knowledgebase"}],"about":[{"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/types\/spl_knowledgebase"}],"author":[{"embeddable":true,"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/users\/1"}],"up":[{"embeddable":true,"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/spl_knowledgebase\/2506"}],"wp:attachment":[{"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/media?parent=2509"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}