{"id":1279,"date":"2021-10-11T15:18:53","date_gmt":"2021-10-11T15:18:53","guid":{"rendered":"https:\/\/smartsensordevices.com\/?p=1279"},"modified":"2021-10-11T15:38:57","modified_gmt":"2021-10-11T15:38:57","slug":"build-your-own-firmware-for-bleuio","status":"publish","type":"post","link":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/","title":{"rendered":"Build your own firmware for BleuIO"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>The BleuIO is Bluetooth low energy USB dongle that can be used to create new BLE 5.0 applications in the fastest and easiest way.\u00a0The BleuIO comes with a bootloader that allows you to update the firmware or flash your own application to the dongle.\u00a0<\/p>\n\n\n\n<p>This guide will show you how to get started with making your own firmware for the BleuIO Dongle by importing our example project and running it on the BleuIO dongle.<\/p>\n\n\n\n<p>The project itself is a modified version of Dialog Semiconductor&#8217;s &#8216;usb_cdc&#8217; example project made to work on the BleuIO Dongle.<\/p>\n\n\n\n<p>The &#8216;usb_cdc&#8217; example will echo anything typed in the terminal back.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.bleuio.com\/getting_started\/docs\/build_your_firmware\/#setup\"><\/a>Setup<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Go to&nbsp;<a href=\"https:\/\/www.dialog-semiconductor.com\/products\/bluetooth-low-energy\/da14682-and-da14683#tab-field_tab_content_resources\">https:\/\/www.dialog-semiconductor.com\/products\/bluetooth-low-energy\/da14682-and-da14683#tab-field_tab_content_resources<\/a>&nbsp;and download the latest SDK for DA14683 under&nbsp;<em>SDK<\/em>&nbsp;(You will need to register an account to access the SDK) and the IDE&nbsp;<strong>SmartSnippet Studio<\/strong>&nbsp;under&nbsp;<em>Development Tools<\/em>.<\/li><li>Install Smart Snippet Studio<\/li><li>Unzip the SDK into a folder where you want your Smart Snippet Workspace to be located&nbsp;<br><br><img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/unzip_sdk.png\" alt=\"Unzipping the SDK into your workspace folder!\"><\/li><li>Download the BleuIO&nbsp;<strong>own_application_example project&nbsp;<a href=\"https:\/\/www.bleuio.com\/getting_started\/bleuio_example_project.zip\">HERE (bleuio_example_project.zip<\/a><\/strong>.<\/li><li>Unzip the project and place it inside the SDK like this:&nbsp;<br><br><img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/project_location.png\" alt=\"Unzipping the project into your SDK folder!\"><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.bleuio.com\/getting_started\/docs\/build_your_firmware\/#importing-project\"><\/a>Importing project<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Open Smart Snippet Studio and when prompted, select the SDK you just downloaded:&nbsp;<br><br><img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/select_sdk.png\" alt=\"Selecting SDK in Smart Snippet Studio!\"><\/li><li>Now click the IDE:&nbsp;<br><br><img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/open_ide.png\" alt=\"Open IDE in Smart Snippet Studio!\"><\/li><li>Right-Click in the Project Explorer window and select import:&nbsp;<br><br><img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/import_project.png\" alt=\"Import project  in Smart Snippet Studio!\"><\/li><li>Select &#8216;Projects from Folder or Archive&#8217; under the &#8216;General&#8217; tab:&nbsp;<br><br><img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/project_from_folder.png\" alt=\"Import Projects from Folder!\"><\/li><li>Click the &#8216;Directory&#8230;&#8217; button and find the &#8216;bleuio_own_application_example&#8217; project folder inside your SDK folder:&nbsp;<br><br><img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/select_project.png\" alt=\"Select bleuio_own_application_example!\"><\/li><li>Finally, click &#8216;Finish&#8217;. You have now imported the project!<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.bleuio.com\/getting_started\/docs\/build_your_firmware\/#building-project-and-creating-an-image-file\"><\/a>Building project and creating an image file<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>To create an image file that you can use to flash to the BleuIO Dongle via the bootloader, you must first build the project to create a bin file. To do that, click the &#8216;Hammer&#8217; icon in the toolbar. Be sure to build the project for DA14683.&nbsp;<img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/build_project.png\" alt=\"Build Project!\"><\/li><li>Dialog Semiconductor has a file called mkimage.exe included in the SDK for generating image files. It can be run using the mkimage.bat file located at&nbsp;<strong>[SDK_Root]\\utilities\\scripts\\suota\\v11<\/strong>. It needs to point to the bin file you want to generate an image file from.<\/li><li>You can open up the command prompt in the same folder and run mkimage.bat like this:<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mkimage.bat ..\\..\\..\\..\\bleuio_own_application_example\\DA14683-00-Release_QSPI\\bleuio_own_application_example.bin\n<\/code><strong>Copy<\/strong><\/pre>\n\n\n\n<p>You should now have an image file inside your build folder&nbsp;<strong>DA14683-00-Release_QSPI<\/strong>&nbsp;named bleuio<em>own_application_example.1.0.0.1.img that can be flashed to the BleuIO Dongle using the &#8216;_host_usb_updater.exe<\/em>&#8216; (More info about updating the firmware: [<strong>Firmware Update<\/strong>](..\/firmware#How to update your firmware)).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/www.bleuio.com\/getting_started\/docs\/build_your_firmware\/#running-the-application\"><\/a>Running the Application<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>After you flashed the firmware to a BleuIO Dongle, open up a Serial Communication program (like TeraTerm, Putty or CoolTerm etc.), just like you would with the BleuIO Firmware. When first started you should be greeted by this:&nbsp;<br><br><img decoding=\"async\" src=\"https:\/\/www.bleuio.com\/getting_started\/img\/build_fw_img\/app_running.png\" alt=\"Running Example!\"><\/li><li>If you type any text, the application will now echo what you type in the terminal.<\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Introduction The BleuIO is Bluetooth low energy USB dongle that can be used to create new BLE 5.0 applications in the fastest and easiest way.\u00a0The BleuIO comes with a bootloader that allows you to update the firmware or flash your own application to the dongle.\u00a0 This guide will show you how to get started with [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1280,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[18,21],"tags":[],"class_list":["post-1279","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>Build your own firmware for 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\/build-your-own-firmware-for-bleuio\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build your own firmware for BleuIO - SMART SENSOR DEVICES AB\" \/>\n<meta property=\"og:description\" content=\"Introduction The BleuIO is Bluetooth low energy USB dongle that can be used to create new BLE 5.0 applications in the fastest and easiest way.\u00a0The BleuIO comes with a bootloader that allows you to update the firmware or flash your own application to the dongle.\u00a0 This guide will show you how to get started with [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/\" \/>\n<meta property=\"og:site_name\" content=\"SMART SENSOR DEVICES AB\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-11T15:18:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-11T15:38:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1300\" \/>\n\t<meta property=\"og:image:height\" content=\"731\" \/>\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\/build-your-own-firmware-for-bleuio\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/\"},\"author\":{\"name\":\"siteManager\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/fb91963eccab9e33d2377d360b28d7a1\"},\"headline\":\"Build your own firmware for BleuIO\",\"datePublished\":\"2021-10-11T15:18:53+00:00\",\"dateModified\":\"2021-10-11T15:38:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/\"},\"wordCount\":511,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg\",\"articleSection\":[\"BleuIO\",\"BleuIO tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/\",\"name\":\"Build your own firmware for BleuIO - SMART SENSOR DEVICES AB\",\"isPartOf\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg\",\"datePublished\":\"2021-10-11T15:18:53+00:00\",\"dateModified\":\"2021-10-11T15:38:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#primaryimage\",\"url\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg\",\"contentUrl\":\"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg\",\"width\":1300,\"height\":731},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/smartsensordevices.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Build your own firmware for 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":"Build your own firmware for 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\/build-your-own-firmware-for-bleuio\/","og_locale":"en_US","og_type":"article","og_title":"Build your own firmware for BleuIO - SMART SENSOR DEVICES AB","og_description":"Introduction The BleuIO is Bluetooth low energy USB dongle that can be used to create new BLE 5.0 applications in the fastest and easiest way.\u00a0The BleuIO comes with a bootloader that allows you to update the firmware or flash your own application to the dongle.\u00a0 This guide will show you how to get started with [&hellip;]","og_url":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/","og_site_name":"SMART SENSOR DEVICES AB","article_published_time":"2021-10-11T15:18:53+00:00","article_modified_time":"2021-10-11T15:38:57+00:00","og_image":[{"width":1300,"height":731,"url":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.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\/build-your-own-firmware-for-bleuio\/#article","isPartOf":{"@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/"},"author":{"name":"siteManager","@id":"https:\/\/smartsensordevices.com\/blog\/#\/schema\/person\/fb91963eccab9e33d2377d360b28d7a1"},"headline":"Build your own firmware for BleuIO","datePublished":"2021-10-11T15:18:53+00:00","dateModified":"2021-10-11T15:38:57+00:00","mainEntityOfPage":{"@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/"},"wordCount":511,"commentCount":0,"publisher":{"@id":"https:\/\/smartsensordevices.com\/blog\/#organization"},"image":{"@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg","articleSection":["BleuIO","BleuIO tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/","url":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/","name":"Build your own firmware for BleuIO - SMART SENSOR DEVICES AB","isPartOf":{"@id":"https:\/\/smartsensordevices.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#primaryimage"},"image":{"@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#primaryimage"},"thumbnailUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg","datePublished":"2021-10-11T15:18:53+00:00","dateModified":"2021-10-11T15:38:57+00:00","breadcrumb":{"@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#primaryimage","url":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg","contentUrl":"https:\/\/smartsensordevices.com\/blog\/wp-content\/uploads\/2021\/10\/build-firmware-bleuio.jpg","width":1300,"height":731},{"@type":"BreadcrumbList","@id":"https:\/\/smartsensordevices.com\/blog\/build-your-own-firmware-for-bleuio\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/smartsensordevices.com\/"},{"@type":"ListItem","position":2,"name":"Build your own firmware for 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\/1279"}],"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=1279"}],"version-history":[{"count":3,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/posts\/1279\/revisions"}],"predecessor-version":[{"id":1283,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/posts\/1279\/revisions\/1283"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/media\/1280"}],"wp:attachment":[{"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/media?parent=1279"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/categories?post=1279"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/smartsensordevices.com\/blog\/wp-json\/wp\/v2\/tags?post=1279"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}