{"id":1430,"date":"2022-01-05T15:35:52","date_gmt":"2022-01-05T15:35:52","guid":{"rendered":"https:\/\/smartsensordevices.com\/?p=1430"},"modified":"2022-01-05T15:35:57","modified_gmt":"2022-01-05T15:35:57","slug":"create-bleutooth-low-energy-application-with-c-and-bleuio","status":"publish","type":"post","link":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/","title":{"rendered":"Create Bleutooth Low Energy Application with C# and BleuIO"},"content":{"rendered":"\n<p><strong>Bluetooth Low Energy (BLE)<\/strong>&nbsp;is a low power wireless&nbsp;technology used for connecting devices with each other. It is a popular communication method especially in the era of Internet of Things. Several devices around the house have a build-in buetooth transceiver and most of them provide really useful capabilitites to automate jobs. For that reason it is really interesting to be able to create a main-device (like a PC) which will have an application that connects to the devices around the house and manage them. <\/p>\n\n\n\n<p>In this example we are going to create a simple C# console application to communicate with BleuIO using SerialPort. This script can be used to create Bluetooth Low Energy application using C# with BleuIO. <\/p>\n\n\n\n<p><strong>Let\u2019s start<\/strong><\/p>\n\n\n\n<p>As a first step lets create a new project in visual studio and select C# console application from the list.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"http:\/\/smartsensordevices.com\/wp-content\/uploads\/2022\/01\/image-1024x172.png\" alt=\"This image has an empty alt attribute; its file name is image-1024x172.png\"\/><\/figure>\n\n\n\n<p>Choose a suitable name for your project and paste the following code to Program.cs file.<\/p>\n\n\n\n<p>The source code is available at <a rel=\"noreferrer noopener\" href=\"https:\/\/github.com\/smart-sensor-devices-ab\/bluetooth_low_energy_csharp\" target=\"_blank\">github<\/a>. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>using System;\nusing System.IO.Ports;\nusing System.Text;\n\nnamespace SerialPortExample\n{\n    class SerialPortProgram\n    {                \n        static SerialPort _port;\n        static void Main(string&#91;] args)\n        {\n            string portName;\n            portName = SetPortName();\n            _port = new SerialPort(portName,57600, Parity.None, 8, StopBits.One);\n            \/\/ Instatiate this class\n            SerialPortProgram serialPortProgram = new SerialPortProgram();\n        }\n\n        private SerialPortProgram()\n        {\n            _port.DataReceived += new\n              SerialDataReceivedEventHandler(port_DataReceived);\n            OpenMyPort();\n            Console.WriteLine(\"Type q to exit.\");\n            bool continueLoop = true;\n            string inputCmd;\n\n            while (continueLoop)\n            {\n                inputCmd = Console.ReadLine();\n\n                if (inputCmd == \"q\")\n                {\n                    continueLoop = false;\n                    break;\n                }\n                else\n                {\n                    byte&#91;] bytes = Encoding.UTF8.GetBytes(inputCmd);\n                    var inputByte = new byte&#91;] { 13 };\n                    bytes = bytes.Concat(inputByte).ToArray();\n                    _port.Write(bytes, 0, bytes.Length);\n                }\n            }\n        }\n\n        private void port_DataReceived(object sender,\n          SerialDataReceivedEventArgs e)\n        {           \n            \/\/ Show all the incoming data in the port's buffer\n            Console.WriteLine(_port.ReadExisting());\n        }\n\n        \/\/Open selected COM port\n        private static void OpenMyPort()\n        {\n            try\n            {\n                _port.Open();\n            }\n            catch (Exception ex)\n            {\n                Console.WriteLine(\"Error opening my port: {0}\", ex.Message);\n                Environment.Exit(0);\n            }\n        }\n\n        \/\/ Display Port values and prompt user to enter a port.\n        public static string SetPortName()\n        {\n            string portName;\n\n            Console.WriteLine(\"Available Ports:\");\n            foreach (string s in SerialPort.GetPortNames())\n            {\n                Console.WriteLine(\"   {0}\", s);\n            }\n\n            Console.Write(\"Enter COM port value (ex: COM18): \");\n            portName = Console.ReadLine();\n            return portName;\n        }\n\n    }\n}<\/code><\/pre>\n\n\n\n<p>For this script a BleuIO dongle connected to the computer. <\/p>\n\n\n\n<p>When we run the application, it suggests all the available ports on the computer and asks to write the com port number where the BleuIO is connected.<\/p>\n\n\n\n<p>Once we write the correct port number, it starts communicating with BleuIO via SerialPort. <\/p>\n\n\n\n<p>The response of AT commands from the BleuIO will be shown on the screen. <\/p>\n\n\n\n<p>Find the list of available AT commands at <a rel=\"noreferrer noopener\" href=\"https:\/\/www.bleuio.com\/getting_started\/docs\/commands\/\" target=\"_blank\">BleuIO getting started guide.<\/a><\/p>\n\n\n\n<p>The application will terminate with control+c or type &#8216;q&#8217;.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bluetooth Low Energy (BLE)&nbsp;is a low power wireless&nbsp;technology used for connecting devices with each other. It is a popular communication method especially in the era of Internet of Things. Several devices around the house have a build-in buetooth transceiver and most of them provide really useful capabilitites to automate jobs. For that reason it is [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1431,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18,21],"tags":[],"class_list":["post-1430","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bleuio","category-bleuio-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Bleutooth Low Energy Application with C# and BleuIO - SMART SENSOR DEVICES AB<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Bleutooth Low Energy Application with C# and BleuIO - SMART SENSOR DEVICES AB\" \/>\n<meta property=\"og:description\" content=\"Bluetooth Low Energy (BLE)&nbsp;is a low power wireless&nbsp;technology used for connecting devices with each other. It is a popular communication method especially in the era of Internet of Things. Several devices around the house have a build-in buetooth transceiver and most of them provide really useful capabilitites to automate jobs. For that reason it is [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/\" \/>\n<meta property=\"og:site_name\" content=\"SMART SENSOR DEVICES AB\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-05T15:35:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-05T15:35:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"662\" \/>\n\t<meta property=\"og:image:height\" content=\"324\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"siteManager\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ssd_techs\" \/>\n<meta name=\"twitter:site\" content=\"@ssd_techs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"siteManager\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/\"},\"author\":{\"name\":\"siteManager\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/fb91963eccab9e33d2377d360b28d7a1\"},\"headline\":\"Create Bleutooth Low Energy Application with C# and BleuIO\",\"datePublished\":\"2022-01-05T15:35:52+00:00\",\"dateModified\":\"2022-01-05T15:35:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/\"},\"wordCount\":263,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg\",\"articleSection\":[\"BleuIO\",\"BleuIO tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/\",\"name\":\"Create Bleutooth Low Energy Application with C# and BleuIO - SMART SENSOR DEVICES AB\",\"isPartOf\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg\",\"datePublished\":\"2022-01-05T15:35:52+00:00\",\"dateModified\":\"2022-01-05T15:35:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#primaryimage\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg\",\"contentUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg\",\"width\":662,\"height\":324},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/smartsensordevices.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Bleutooth Low Energy Application with C# and BleuIO\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#website\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/\",\"name\":\"SMART SENSOR DEVICES AB\",\"description\":\"IOT solutions for the future\",\"publisher\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/smartsensordevices.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#organization\",\"name\":\"SMART SENSOR DEVICES AB\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2020\/03\/cropped-SSD-color.png\",\"contentUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2020\/03\/cropped-SSD-color.png\",\"width\":756,\"height\":230,\"caption\":\"SMART SENSOR DEVICES AB\"},\"image\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/ssd_techs\",\"https:\/\/www.linkedin.com\/company\/smart-sensor-devices-ab\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/fb91963eccab9e33d2377d360b28d7a1\",\"name\":\"siteManager\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cca20a2883c689ad2ed55eff75dd546d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cca20a2883c689ad2ed55eff75dd546d?s=96&d=mm&r=g\",\"caption\":\"siteManager\"},\"url\":\"https:\/\/smartsensordevices.com\/blog\/author\/ssdadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Bleutooth Low Energy Application with C# and BleuIO - SMART SENSOR DEVICES AB","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:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/","og_locale":"en_US","og_type":"article","og_title":"Create Bleutooth Low Energy Application with C# and BleuIO - SMART SENSOR DEVICES AB","og_description":"Bluetooth Low Energy (BLE)&nbsp;is a low power wireless&nbsp;technology used for connecting devices with each other. It is a popular communication method especially in the era of Internet of Things. Several devices around the house have a build-in buetooth transceiver and most of them provide really useful capabilitites to automate jobs. For that reason it is [&hellip;]","og_url":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/","og_site_name":"SMART SENSOR DEVICES AB","article_published_time":"2022-01-05T15:35:52+00:00","article_modified_time":"2022-01-05T15:35:57+00:00","og_image":[{"width":662,"height":324,"url":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg","type":"image\/jpeg"}],"author":"siteManager","twitter_card":"summary_large_image","twitter_creator":"@ssd_techs","twitter_site":"@ssd_techs","twitter_misc":{"Written by":"siteManager","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#article","isPartOf":{"@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/"},"author":{"name":"siteManager","@id":"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/fb91963eccab9e33d2377d360b28d7a1"},"headline":"Create Bleutooth Low Energy Application with C# and BleuIO","datePublished":"2022-01-05T15:35:52+00:00","dateModified":"2022-01-05T15:35:57+00:00","mainEntityOfPage":{"@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/"},"wordCount":263,"commentCount":0,"publisher":{"@id":"https:\/\/smartsensordevices.com\/blog\/#organization"},"image":{"@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg","articleSection":["BleuIO","BleuIO tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/","url":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/","name":"Create Bleutooth Low Energy Application with C# and BleuIO - SMART SENSOR DEVICES AB","isPartOf":{"@id":"https:\/\/smartsensordevices.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#primaryimage"},"image":{"@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg","datePublished":"2022-01-05T15:35:52+00:00","dateModified":"2022-01-05T15:35:57+00:00","breadcrumb":{"@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#primaryimage","url":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg","contentUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-ble.jpg","width":662,"height":324},{"@type":"BreadcrumbList","@id":"https:\/\/smartsensordevices.com\/blog\/create-bleutooth-low-energy-application-with-c-and-bleuio\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/smartsensordevices.com\/"},{"@type":"ListItem","position":2,"name":"Create Bleutooth Low Energy Application with C# and BleuIO"}]},{"@type":"WebSite","@id":"https:\/\/smartsensordevices.com\/blog\/#website","url":"https:\/\/smartsensordevices.com\/blog\/","name":"SMART SENSOR DEVICES AB","description":"IOT solutions for the future","publisher":{"@id":"https:\/\/smartsensordevices.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/smartsensordevices.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/smartsensordevices.com\/blog\/#organization","name":"SMART SENSOR DEVICES AB","url":"https:\/\/smartsensordevices.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smartsensordevices.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2020\/03\/cropped-SSD-color.png","contentUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2020\/03\/cropped-SSD-color.png","width":756,"height":230,"caption":"SMART SENSOR DEVICES AB"},"image":{"@id":"https:\/\/smartsensordevices.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/ssd_techs","https:\/\/www.linkedin.com\/company\/smart-sensor-devices-ab\/"]},{"@type":"Person","@id":"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/fb91963eccab9e33d2377d360b28d7a1","name":"siteManager","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cca20a2883c689ad2ed55eff75dd546d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cca20a2883c689ad2ed55eff75dd546d?s=96&d=mm&r=g","caption":"siteManager"},"url":"https:\/\/smartsensordevices.com\/blog\/author\/ssdadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/posts\/1430"}],"collection":[{"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/comments?post=1430"}],"version-history":[{"count":1,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/posts\/1430\/revisions"}],"predecessor-version":[{"id":1432,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/posts\/1430\/revisions\/1432"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/media\/1431"}],"wp:attachment":[{"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/media?parent=1430"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/categories?post=1430"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/tags?post=1430"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}