{"id":1433,"date":"2022-01-10T16:11:36","date_gmt":"2022-01-10T16:11:36","guid":{"rendered":"https:\/\/smartsensordevices.com\/?p=1433"},"modified":"2022-01-11T08:40:57","modified_gmt":"2022-01-11T08:40:57","slug":"c-desktop-application-to-connect-to-ble-device-using-bleuio","status":"publish","type":"post","link":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/","title":{"rendered":"C# desktop application to connect to BLE devices using 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 create desktop application using C# 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# windows form 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# windows form application from the list.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"202\" src=\"http:\/\/smartsensordevices.com\/wp-content\/uploads\/2022\/01\/windows-form-app-1024x202.jpg\" alt=\"\" class=\"wp-image-1434\" srcset=\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/windows-form-app-1024x202.jpg 1024w, https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/windows-form-app-300x59.jpg 300w, https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/windows-form-app-768x152.jpg 768w, https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/windows-form-app.jpg 1483w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Choose a suitable name for your project. <\/p>\n\n\n\n<p>Once the project is created, we will see a blank form screen where we will add buttons and labels to communicate with BleuIO graphically. <\/p>\n\n\n\n<p>We will have buttons that connects and disconnects from BleuIO. An input field that takes AT commands from the user and sends it to BleuIO using SerialPort. And a text area will display the response from BleuIO to the screen.<\/p>\n\n\n\n<p>The form will look like this <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"838\" height=\"506\" src=\"http:\/\/smartsensordevices.com\/wp-content\/uploads\/2022\/01\/ble-application-c.jpg\" alt=\"\" class=\"wp-image-1435\" srcset=\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/ble-application-c.jpg 838w, https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/ble-application-c-300x181.jpg 300w, https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/ble-application-c-768x464.jpg 768w\" sizes=\"(max-width: 838px) 100vw, 838px\" \/><\/figure>\n\n\n\n<p>The .cs file associated to this will have the following code.<\/p>\n\n\n\n<p>Source code is available at https:\/\/github.com\/smart-sensor-devices-ab\/bluetooth_low_energy_csharp_WFA.git<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>using System;\nusing System.IO.Ports;\nusing System.Linq;\nusing System.Text;\nusing System.Windows.Forms;\n\nnamespace WindowsFormsApp1\n{\n    \n    public partial class Form1 : Form\n    {\n        SerialPort mySerialPort = new SerialPort(\"COM18\", 57600, Parity.None, 8, StopBits.One);\n        public Form1()\n        {\n            InitializeComponent();            \n            mySerialPort.DataReceived += new SerialDataReceivedEventHandler(mySerialPort_DataReceived);\n            mySerialPort.Open();\n\n        }\n\n        private void button1_Click(object sender, EventArgs e)\n        {\n            \n            \n            lbl_test.Text = \"Connected\";\n        }\n        \n        \/\/print response from the dongle\n        private void mySerialPort_DataReceived(object sender, SerialDataReceivedEventArgs e)\n        {\n            SerialPort sp = (SerialPort)sender;\n            string s = sp.ReadExisting();\n            output_data.Invoke(new EventHandler(delegate { output_data.Text +=  s + \"\\r\\n\"; })); \n\n            \/\/lbl_output.Invoke(this.myDelegate, new Object&#91;] { s });\n        }\n\n\n        private void tb_cmd_TextChanged(object sender, EventArgs e)\n        {\n            \n        }\n\n        private void submit_cmd_Click(object sender, EventArgs e)\n        {\n            output_data.Text = \"\";\n            byte&#91;] bytes = Encoding.UTF8.GetBytes(tb_cmd.Text);\n            var inputByte = new byte&#91;] { 13 };\n            bytes = bytes.Concat(inputByte).ToArray();\n            mySerialPort.Write(bytes, 0, bytes.Length);           \n        }\n\n        private void btn_disconnect_Click(object sender, EventArgs e)\n        {\n            mySerialPort.Close();\n            Environment.Exit(0);\n        }\n\n        private void Form1_Load(object sender, EventArgs e)\n        {\n\n        }\n\n        private void btn_stop_Click(object sender, EventArgs e)\n        {\n            byte&#91;] bytes = Encoding.UTF8.GetBytes(\"\\u0003\");\n            var inputByte = new byte&#91;] { 13 };\n            bytes = bytes.Concat(inputByte).ToArray();\n            mySerialPort.Write(bytes, 0, bytes.Length);\n        }\n\n        private void output_data_TextChanged(object sender, EventArgs e)\n        {\n\n        }\n\n        private void pictureBox1_Click(object sender, EventArgs e)\n        {\n\n        }\n    }\n}\n<\/code><\/pre>\n\n\n\n<p>As you can notice I wrote COM18 to connect to serial port because BleuIO device on my computer is connected to COM18.<\/p>\n\n\n\n<p>You can check your COM port from device manager.<\/p>\n\n\n\n<p>Lets run the project and click on connect button. <\/p>\n\n\n\n<p>Once we are connected to BleuIO, we will be able to write AT commands using the input filed.<\/p>\n\n\n\n<p class=\"has-text-align-left\">List of AT commands are available at https:\/\/www.bleuio.com\/getting_started\/docs\/commands\/<\/p>\n\n\n\n<p>There is a stop button that write control+c to dongle and cancels current execution.<\/p>\n\n\n\n<p>Here is a demo of this sample app. <\/p>\n\n\n\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"C# desktop application to connect to BLE device using BleuIO\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/eXJJXSXjzHI?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\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":1436,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18,21],"tags":[],"class_list":["post-1433","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>C# desktop application to connect to BLE devices using 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\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# desktop application to connect to BLE devices using 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\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/\" \/>\n<meta property=\"og:site_name\" content=\"SMART SENSOR DEVICES AB\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-10T16:11:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-11T08:40:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"666\" \/>\n\t<meta property=\"og:image:height\" content=\"387\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/\"},\"author\":{\"name\":\"siteManager\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/fb91963eccab9e33d2377d360b28d7a1\"},\"headline\":\"C# desktop application to connect to BLE devices using BleuIO\",\"datePublished\":\"2022-01-10T16:11:36+00:00\",\"dateModified\":\"2022-01-11T08:40:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/\"},\"wordCount\":353,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg\",\"articleSection\":[\"BleuIO\",\"BleuIO tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/\",\"name\":\"C# desktop application to connect to BLE devices using BleuIO - SMART SENSOR DEVICES AB\",\"isPartOf\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg\",\"datePublished\":\"2022-01-10T16:11:36+00:00\",\"dateModified\":\"2022-01-11T08:40:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#primaryimage\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg\",\"contentUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg\",\"width\":666,\"height\":387},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/smartsensordevices.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# desktop application to connect to BLE devices using 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":"C# desktop application to connect to BLE devices using 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\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/","og_locale":"en_US","og_type":"article","og_title":"C# desktop application to connect to BLE devices using 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\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/","og_site_name":"SMART SENSOR DEVICES AB","article_published_time":"2022-01-10T16:11:36+00:00","article_modified_time":"2022-01-11T08:40:57+00:00","og_image":[{"width":666,"height":387,"url":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#article","isPartOf":{"@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/"},"author":{"name":"siteManager","@id":"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/fb91963eccab9e33d2377d360b28d7a1"},"headline":"C# desktop application to connect to BLE devices using BleuIO","datePublished":"2022-01-10T16:11:36+00:00","dateModified":"2022-01-11T08:40:57+00:00","mainEntityOfPage":{"@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/"},"wordCount":353,"commentCount":0,"publisher":{"@id":"https:\/\/smartsensordevices.com\/blog\/#organization"},"image":{"@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg","articleSection":["BleuIO","BleuIO tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/","url":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/","name":"C# desktop application to connect to BLE devices using BleuIO - SMART SENSOR DEVICES AB","isPartOf":{"@id":"https:\/\/smartsensordevices.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#primaryimage"},"image":{"@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg","datePublished":"2022-01-10T16:11:36+00:00","dateModified":"2022-01-11T08:40:57+00:00","breadcrumb":{"@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#primaryimage","url":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg","contentUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2022\/01\/c-desktop-application-bluetooth.jpg","width":666,"height":387},{"@type":"BreadcrumbList","@id":"https:\/\/smartsensordevices.com\/blog\/c-desktop-application-to-connect-to-ble-device-using-bleuio\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/smartsensordevices.com\/"},{"@type":"ListItem","position":2,"name":"C# desktop application to connect to BLE devices using 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\/1433"}],"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=1433"}],"version-history":[{"count":3,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/posts\/1433\/revisions"}],"predecessor-version":[{"id":1440,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/posts\/1433\/revisions\/1440"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/media\/1436"}],"wp:attachment":[{"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/media?parent=1433"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/categories?post=1433"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/tags?post=1433"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}