{"id":1377,"date":"2025-04-10T11:35:31","date_gmt":"2025-04-10T11:35:31","guid":{"rendered":"https:\/\/webprojects.cloud\/wordpress\/splatco\/?post_type=spl_knowledgebase&#038;p=1377"},"modified":"2025-05-29T10:21:03","modified_gmt":"2025-05-29T10:21:03","slug":"hmi430-700-analog-inputs","status":"publish","type":"spl_knowledgebase","link":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/","title":{"rendered":"HMI430\/700: Analog inputs"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"400\" height=\"253\" src=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg\" alt=\"\" class=\"wp-image-1378\" srcset=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg 400w, https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections-300x190.jpg 300w, https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections-64x40.jpg 64w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\" \/><\/figure>\n\n\n\n<p>The HMI430\/700 has two analog inputs. They can each be set to measure voltage, with 0-10V range and a 0-3.3V range, 0-20mA current and temperature using an external NTC thermistor.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Mode setting<\/h6>\n\n\n\n<p>The two red jumpers in the picture above set the analog input mode. The bottom one is for analog input 0, the top one is for analog input 1. Notice there are 3 positions labelled &#8216;V&#8217;, &#8216;I&#8217; and &#8216;T&#8217;. The mode is determine by which pair of pins the jumper sits across.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Jumper position<\/th><th>Mode<\/th><\/tr><tr><td>T<\/td><td>Thermistor temperature measurement mode<\/td><\/tr><tr><td>I<\/td><td>0-20mA<\/td><\/tr><tr><td>V<\/td><td>0-10V<\/td><\/tr><tr><td>No jumper<\/td><td>0-3.3V<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>&nbsp;In the picture above analog input 0 is set for temperature, and analog input 1 is set for 0-10V.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Connections<\/h6>\n\n\n\n<p>In both voltage and current modes, the pin labelled i0 or i1 must be positive with respect to the 0V pin. The picture above shows a battery connected to i1 so its voltage can be measured. Not the + polarity sign.<\/p>\n\n\n\n<p>For current mode this means that a typical 2-wire 4-20mA transmitter will connect between the input pin (i0 or i1) and the positive supply voltage. The full scale voltage drop (&#8220;burden voltage&#8221;) in current mode is 3.3V<\/p>\n\n\n\n<p>In thermistor mode and NTC thermistor simply connects between the input pin and 0V. The controller is optimised for thermistors with a resistance at 25\u00b0C of between 5K and 10K Ohm, but can be used with other resistances at reduced resolution.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">More on temperature measurement<\/h6>\n\n\n\n<p>Thermistor temperature measurement is a great way to go for temperatures in the range -50\u00b0C up to 120\u00b0C or more. Dollar for dollar thermistors provide the best accuracy and require very little in the way of special electronics (compared to thermocouples or RTDs). They have one drawback: they are very non-linear, so you need to do some math to get from a raw reading to an actual temperature value. Fortunately, we have made it really easy for you with the&nbsp;<a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/thermistor-hash-command\/\">thermistor hash command<\/a>.<\/p>\n\n\n\n<p>The fixed excitation resistor in the HMI430 thermistor circuit is 5765\u03a9. You will generally get the best results, i.e. resolution, if you pick a thermistor with around 5K &#8211; 10K resistance at the temperature you are mainly interested in.<\/p>\n\n\n\n<p><strong>Example:<\/strong>&nbsp;Measure in \u00b0C the thermistor connected on analog input i1. The thermistor data is:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>R25&nbsp;&nbsp; 5k Ohm (resistance at 25\u00b0C)<\/li>\n\n\n\n<li>Beta&nbsp;&nbsp; 3988<\/li>\n\n\n\n<li>Required measurement range 0 &#8211; 60\u00b0C (32 &#8211; 140\u00b0F)<\/li>\n<\/ul>\n\n\n\n<p>In your program you would include the following line of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><br>   fAnIn      1                                                           ;reads the analog value on i1<br>   #Thermistor Params(5000,3988) Feed(3.3,3.3,5765) RangeC(0,60) Order(5) ;convert to \u00b0C<br>  <\/pre>\n\n\n\n<p>Floating point register W now has the temperature in \u00b0C. To convert to \u00b0F:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><br>   fLoadW    1.8      ;convert to \u00b0F by using F = 1.8 * C + 32<br>   fMul<br>   fLoadQ    32<br>   fAdd<br><\/pre>\n\n\n\n<p>The temperature in \u00b0F is now in floating point register W.<\/p>\n\n\n\n<p>For more on thermistor temperature measurement see the full description of the #Thermistor command&nbsp;<a href=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/programming-reference\/instructions-arranged-by-function\/hash-commands-and-functions\/thermistor-hash-command\/\">here<\/a>.<\/p>\n\n\n\n<p>Because the HMI430 has an awesome 12-bit analog resolution, you can also use the thermistor mode with a PT1000 (don&#8217;t try a PT100, though). Expect to get about 1\u00b0C resolution.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">Measuring a potentiometer<\/h6>\n\n\n\n<p>You could also use &#8220;T&#8221; mode to measure a normal potentiometer.&nbsp; &#8220;T&#8221; provides 3.3V via 5765\u03a9, so if you have a 10k\u03a9 pot, the maximum voltage you&#8217;ll get is:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">   10000\/(5765 + 10000) = 0.634<br>   0.634 * 3.3 = 2.09V<\/pre>\n\n\n\n<p>In fact, we don&#8217;t need the actual voltage, 0.634 is actually the maximum value you&#8217;ll get from fAnIn.&nbsp; So for this example, fAnIn will return 0.0 thru 0.634 over the entire travel of the potentiometer.<\/p>\n\n\n\n<h6 class=\"wp-block-heading\">4-20mA measurement<\/h6>\n\n\n\n<p>In &#8216;I&#8217; mode the analog input range is 0-20mA. This means that for 4-20mA measurement you need to calculate out the 4mA offset. That&#8217;s quite simple with the HMI430&#8217;s floating point instructions. The advantage is that by going to 0mA you have the possibility of detecting a broken input wire.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The HMI430\/700 has two analog inputs. They can each be set to measure voltage, with 0-10V range and a 0-3.3V range, 0-20mA current and temperature&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1369,"menu_order":3,"template":"","class_list":["post-1377","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>HMI430\/700: Analog inputs - 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=\"HMI430\/700: Analog inputs - SPLat Controls\" \/>\n<meta property=\"og:description\" content=\"The HMI430\/700 has two analog inputs. They can each be set to measure voltage, with 0-10V range and a 0-3.3V range, 0-20mA current and temperature...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/\" \/>\n<meta property=\"og:site_name\" content=\"SPLat Controls\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-29T10:21:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"400\" \/>\n\t<meta property=\"og:image:height\" content=\"253\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/\",\"name\":\"HMI430\/700: Analog inputs - SPLat Controls\",\"isPartOf\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg\",\"datePublished\":\"2025-04-10T11:35:31+00:00\",\"dateModified\":\"2025-05-29T10:21:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#primaryimage\",\"url\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg\",\"contentUrl\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg\",\"width\":400,\"height\":253},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Product documentation\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Product documentation: Controllers\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"HMI430\/700 product documentation\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"HMI430\/700: External inputs and outputs\",\"item\":\"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"HMI430\/700: Analog inputs\"}]},{\"@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":"HMI430\/700: Analog inputs - 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":"HMI430\/700: Analog inputs - SPLat Controls","og_description":"The HMI430\/700 has two analog inputs. They can each be set to measure voltage, with 0-10V range and a 0-3.3V range, 0-20mA current and temperature...","og_url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/","og_site_name":"SPLat Controls","article_modified_time":"2025-05-29T10:21:03+00:00","og_image":[{"width":400,"height":253,"url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg","type":"image\/jpeg"}],"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\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/","name":"HMI430\/700: Analog inputs - SPLat Controls","isPartOf":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#primaryimage"},"image":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#primaryimage"},"thumbnailUrl":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg","datePublished":"2025-04-10T11:35:31+00:00","dateModified":"2025-05-29T10:21:03+00:00","breadcrumb":{"@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#primaryimage","url":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg","contentUrl":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-content\/uploads\/2025\/04\/hmi430_analog_input_connections.jpg","width":400,"height":253},{"@type":"BreadcrumbList","@id":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/hmi430-700-analog-inputs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/"},{"@type":"ListItem","position":2,"name":"Product documentation","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/"},{"@type":"ListItem","position":3,"name":"Product documentation: Controllers","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/"},{"@type":"ListItem","position":4,"name":"HMI430\/700 product documentation","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/"},{"@type":"ListItem","position":5,"name":"HMI430\/700: External inputs and outputs","item":"https:\/\/webprojects.cloud\/wordpress\/splatco\/knowledgebase\/product-documentation\/product-documentation-controllers\/hmi430-700-product-documentation\/hmi430-700-external-inputs-and-outputs\/"},{"@type":"ListItem","position":6,"name":"HMI430\/700: Analog inputs"}]},{"@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\/1377","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\/1369"}],"wp:attachment":[{"href":"https:\/\/webprojects.cloud\/wordpress\/splatco\/wp-json\/wp\/v2\/media?parent=1377"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}