{"id":2351,"date":"2022-09-15T21:27:42","date_gmt":"2022-09-15T18:27:42","guid":{"rendered":"https:\/\/iot-devices.com.ua\/connecting-the-ggreg20_v3-radiation-sensor-to-the-home-assistant-server-via-esp-home-integration\/"},"modified":"2025-12-25T19:22:43","modified_gmt":"2025-12-25T17:22:43","slug":"connecting-ggreg20-radiation-sensor-to-home-assistant-server-via-esp-home-integration","status":"publish","type":"post","link":"https:\/\/iot-devices.com.ua\/en\/connecting-ggreg20-radiation-sensor-to-home-assistant-server-via-esp-home-integration\/","title":{"rendered":"Connecting the GGreg20_V3 Radiation Sensor to the Home Assistant Server via ESP Home Integration"},"content":{"rendered":"\n<p>We offer you the procedure of connecting the GGreg20 Geiger counter (sensor) in combination with the main controller ESP8266 or ESP32 to the Home Assistant server via the ESP Home plug-in.<\/p>\n\n<p>If you already have experience setting up and deploying devices in ESP Home running Home Assistant, you can skip the introductory sections and go straight to the example of a configuration yaml file that you can use as a basis for your own system and devices.<\/p>\n\n<p>All sample files are working and run on a real-deployed server and controller ESP8266 with a GGreg20 Geiger counter. ESP32 is also supported by ESP Home and on the example of ESP8266, the reader can make a variant of the yaml file for the ESP32 platform. In this publication, we demonstrate how to work with ESP32 in a limited way, because in terms of ESP Home and Home Assistant settings, the ESP8266 and ESP32 platforms are almost the same.<\/p>\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p><strong>Note<\/strong> . This publication is suitable for all versions of the ionizing radiation detector manufactured by IoT-devices: GGreg20_V1, GGreg20_V2, GGreg20_V3 <\/p><p>Since the entire line of these detectors is focused on the SBM-20 tube, all versions of the devices have the same algorithm and coefficients for calculating the power level and dose of ionizing radiation.<\/p><p>The accuracy of the measurement is affected only by the individual properties of the SBM-20 tube installed in each GGreg20_V3 detector. The specifications of the tube manufacturer indicate a limit range of measurement accuracy of <a href=\"https:\/\/zapadpribor.com\/sbm20\/\" target=\"_blank\" rel=\"noopener\">20%<\/a> . On practice, this means that two identical GGreg20 devices, but with different SBM-20 tubes, can give results (not more than) with the specified deviation in the number of pulses.<\/p><\/blockquote>\n\n<h2 class=\"wp-block-heading\">Steps to connect GGreg20 to Home Assistant<\/h2>\n\n<p>Next, we consider in detail the steps for connecting a detector (sensor) GGreg20. Honestly, we have to cite a lot of text and pictures to explain some important points &#8211; because of this, the publication seems procedural horror. It does not! All these steps are simple, automated and performed in 15-20 minutes.<\/p>\n\n<h3 class=\"wp-block-heading\">Server<\/h3>\n\n<h4 class=\"wp-block-heading\"><strong>Step 1<\/strong> . Install (or start) the Home Assistant server<\/h4>\n\n<p>If you already have a server installed, just start it. If you need to deploy the server, we recommend that you review the <a class=\"rank-math-link\" href=\"https:\/\/alterstrategy.com\/2021\/05\/03\/home-assistant-server-instructions-for-deploying-to-a-windows-virtual-machine\/\" target=\"_blank\" rel=\"noopener\">instructions we developed for deploying Home Assistant in a virtual machine running Windows 10<\/a><\/p>\n\n<h3 class=\"wp-block-heading\">ESP Home plugin for Home Assistant<\/h3>\n\n<h4 class=\"wp-block-heading\"><strong>Step 2<\/strong> . Connect the ESP Home extension for the Home Assistant server via the Supervisor -&gt; Add-on Store menu<\/h4>\n\n<p>The procedure for installing an official plugin, such as ESP Home, in Home Assistant is quite simple. We recommend that you review <a class=\"rank-math-link\" href=\"https:\/\/alterstrategy.com\/2021\/05\/03\/home-assistant-server-instructions-for-deploying-to-a-windows-virtual-machine\/\" target=\"_blank\" rel=\"noopener\">Step 8. Installing the ESP Home Plugin (Option)<\/a> the instructions mentioned earlier.<\/p>\n\n<h3 class=\"wp-block-heading\">YAML-config of the new ESP device with GGreg<\/h3>\n\n<p>This is a key part of this publication, which interests us more than any other general data on the preparatory steps of the environment. In steps 3 and 4, we will develop our own config for ESP with GGreg based on real-world examples from our Home Assistant test server.<\/p>\n\n<h4 class=\"wp-block-heading\"><strong>Step 3.<\/strong> Download the ready example of a batch yaml-configuration file of the GGreg20_V3 device for ESP8266 from our website<\/h4>\n\n<p>The YAML file is a common text script file in Home Assistant, in this case with instructions for ESP Home, which are used when building the firmware.<\/p>\n\n<p>We have developed such a file for ESP8266 and GGreg20 and posted it on our website for free download and use by anyone who needs to connect GGreg20 to Home Assistant via ESP Home. You can download the file by following this <a href=\"https:\/\/github.com\/iotdevicesdev\/ggreg20-v3-homeassistant-esphome-example\/blob\/main\/ggreg20_esp8266_esphome.yaml\" target=\"_blank\" rel=\"noopener\">link<\/a> .<\/p>\n\n<p>The full file you just downloaded has the following content:<\/p>\n\n<p><a href=\"https:\/\/github.com\/iotdevicesdev\/ggreg20-v3-homeassistant-esphome-example\/blob\/main\/ggreg20_esp8266_esphome.yaml\" target=\"_blank\" rel=\"noopener\">Open YAML text<\/a><\/p>\n\n<p>Let&#8217;s consider the main parts of the ggreg20_esp8266_esphome.yaml file prepared by us.<\/p>\n\n<p>To calculate the value of the ionizing radiation power of microsieverts per hour, use Pulse Counter Sensor &#8211; an API-component of the ESP Home plug-in:<\/p>\n\n<p><a class=\"rank-math-link\" href=\"https:\/\/esphome.io\/components\/sensor\/pulse_counter.html\" target=\"_blank\" rel=\"noopener\">https:\/\/esphome.io\/components\/sensor\/pulse_counter.html<\/a><\/p>\n\n<p>This part of the yaml code is responsible for that:<\/p>\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"yaml\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">sensor:\n- platform: pulse_counter\n pin: D3\n unit_of_measurement: 'mkSv\/Hour'\n name: 'Ionizing Radiation Power'\n count_mode: \n rising_edge: DISABLE\n falling_edge: INCREMENT\n update_interval: 60s\n accuracy_decimals: 3\n id: my_doze_meter\n filters:\n - sliding_window_moving_average: # 5-minutes moving average (MA5) here\n window_size: 5\n send_every: 5 \n - multiply: 0.0054 # SBM20 tube conversion factor of pulses into mkSv\/Hour <\/pre>\n\n<p>To calculate the total radiation dose received in microsieverts, the Integration Sensor, also a component of the ESP Home API, is used:<\/p>\n\n<p><a href=\"https:\/\/esphome.io\/components\/sensor\/integration.htm\" class=\"rank-math-link\" target=\"_blank\" rel=\"noopener\">https:\/\/esphome.io\/components\/sensor\/integration.htm<\/a><\/p>\n\n<p>This part of the yaml code is responsible for that:<\/p>\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"yaml\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">- platform: integration\n name: \"Total Ionizing Radiation Dose\"\n unit_of_measurement: \"mkSv\"\n sensor: my_dose_meter # link entity id to the pulse_counter values above\n icon: \"mdi:radioactive\"\n accuracy_decimals: 5\n time_unit: min # integrate values every next minute\n filters:\n # obtained dose. Converting from mkSv\/hour into mkSv\/minute: [mkSv\/h \/ 60] OR [mkSv\/h * 0.0166666667].\n # if my_dose_meter in CPM, then [0.0054 \/ 60 minutes] = 0.00009; so CPM * 0.00009 = dose every next minute, mkSv.\n - multiply: 0.0166666667<\/pre>\n\n<p>Also, in order to be able to test the pulse counter without the GGreg20 sensor, a discrete Flash sensor ESP8266 has been added to the configuration &#8211; on the same GPIO0 (D3) as the Pulse Counter &#8211; but another ESP Home API component, GPIO Binary Sensor, is already used:<\/p>\n\n<p><a href=\"https:\/\/esphome.io\/components\/binary_sensor\/gpio.html\" target=\"_blank\" rel=\"noopener\">https:\/\/esphome.io\/components\/binary_sensor\/gpio.html<\/a><\/p>\n\n<p>This part of the yaml code is responsible for that:<\/p>\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"yaml\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">binary_sensor:\n - platform: gpio\n name: \"D3 Input Button\"\n pin:\n number: 0\n inverted: True\n mode: INPUT_PULLUP<\/pre>\n\n<p>The ESP Home plugin has sufficient documentation for these components with examples, so we will not go into detailed explanations. Where we saw fit, we added comments inside the yaml code.<\/p>\n\n<h4 class=\"wp-block-heading\"><strong>Step 4.<\/strong> Create (based on the example) in ESP Home the appropriate yaml configuration file<\/h4>\n\n<p>After downloading the file, we suggest you open it with any text editor and become familiar with its contents.<\/p>\n\n<p>Next, in the interface of the ESP Home plugin on the Home Assistant web page with administrator access rights, you need to create your own yaml file by clicking &#8220;+&#8221; and answering a few initial questions of the wizard.<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1024x550.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"550\" src=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1024x550.png\" alt=\"\" class=\"wp-image-1063\" srcset=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1024x550.png 1024w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-454x244.png 454w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-300x161.png 300w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-768x412.png 768w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1536x825.png 1536w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image.png 1676w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n<p>Fig. General view of the ESP Home plugin interface in Home Assistant<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1-1024x652.png\"><img decoding=\"async\" width=\"1024\" height=\"652\" src=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1-1024x652.png\" alt=\"\" class=\"wp-image-1065\" srcset=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1-1024x652.png 1024w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1-454x289.png 454w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1-300x191.png 300w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1-768x489.png 768w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-1.png 1419w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n<p>Fig. We give the name to our new device<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-2-1024x652.png\"><img decoding=\"async\" width=\"1024\" height=\"652\" src=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-2-1024x652.png\" alt=\"\" class=\"wp-image-1066\" srcset=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-2-1024x652.png 1024w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-2-454x289.png 454w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-2-300x191.png 300w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-2-768x489.png 768w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-2.png 1417w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n<p>Fig. Choose the right platform according to the type of controller<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-3-1024x651.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"651\" src=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-3-1024x651.png\" alt=\"\" class=\"wp-image-1067\" srcset=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-3-1024x651.png 1024w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-3-454x289.png 454w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-3-300x191.png 300w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-3-768x488.png 768w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-3.png 1409w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n<p>Fig. Specify the parameters of the WiFi router and password for OTA update<\/p>\n\n<p>After completing the &#8220;wizard&#8221;, a file with the basic parameters that we have already configured appears in the ESP Home interface. Now you need to add to this file the parts that you will find in the <a href=\"https:\/\/github.com\/iotdevicesdev\/ggreg20-v3-homeassistant-esphome-example\/blob\/main\/ggreg20_esp8266_esphome.yaml\" target=\"_blank\" rel=\"noopener\">ggreg20_esp8266_esphome.yaml <\/a> file.<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-4-1024x651.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"651\" src=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-4-1024x651.png\" alt=\"\" class=\"wp-image-1069\" srcset=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-4-1024x651.png 1024w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-4-454x289.png 454w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-4-300x191.png 300w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-4-768x488.png 768w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-4.png 1409w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n<p>Fig. Basic configuration for ESP8266 \/ NodeMCU created by the &#8220;wizard&#8221;.<\/p>\n\n<p>For example, here is a similar initial yaml file for ESP32. As you can see, it is almost no different from the file for ESP8266.<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-5-1024x653.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"653\" src=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-5-1024x653.png\" alt=\"\" class=\"wp-image-1070\" srcset=\"https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-5-1024x653.png 1024w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-5-454x289.png 454w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-5-300x191.png 300w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-5-768x490.png 768w, https:\/\/iot-devices.com.ua\/wp-content\/uploads\/2021\/07\/image-5.png 1404w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n<p>Fig. Basic configuration for ESP32 \/ WROVER that creates a &#8220;wizard&#8221;.<\/p>\n\n<p>If you compile the firmware with such an initial file &#8211; it will work and do the basics &#8211; connect to the server, raise the access point for settings and so on. But such a controller will not perform any application tasks.<\/p>\n\n<p>That&#8217;s why you need the file we developed &#8211; you need to copy the rest of the settings from our file to yours. You can also completely replace the contents of your file with data from ggreg20_esp8266_esphome.yaml, of course, if you have an ESP8266 controller. If you have a different controller &#8211; you need to replace the relevant parts of the file, and leave the rest unchanged.<\/p>\n\n<h2 class=\"wp-block-heading\">Conclusions<\/h2>\n\n<p>We&#8217;ve completed the following steps to connect GGreg20 to Home Assistant:<\/p>\n\n<h5 class=\"wp-block-heading\">Step 1. Install (or start) the Home Assistant server<br\/>Step 2. Connect the ESP Home extension for the Home Assistant server via the Supervisor -&gt; Add-on Store menu<br\/>\u041a\u0440\u043e\u043a 3. Download the ready example of a batch yaml-configuration file of the GGreg20_V3 device for ESP8266 from our website<br\/>Step 4. Create (based on the example) in ESP Home the appropriate yaml configuration file<\/h5>\n\n<p>Next, we consider the following steps in detail:<\/p>\n\n<p><a href=\"https:\/\/iot-devices.com.ua\/en\/connecting-ggreg20_v3-radiation-sensor-to-home-assistant-server-via-esp-home-integration-part2\/\" class=\"rank-math-link\">Part 2:<\/a><\/p>\n\n<h5 class=\"wp-block-heading\">Step 5. Select the GPIO pin on the controller that will register the pulses from GGreg20<br\/>Step 6. Connect the GGreg20_V3 radiation detector to the ESP8266 controller via the Out connector to the selected GPIO of the controller<br\/>Step 7. Build and write firmware for the controller<\/h5>\n\n<p><a href=\"https:\/\/iot-devices.com.ua\/en\/pidklyuchennya-sensora-radiacziyi-ggreg20_v3-do-servera-home-assistant-cherez-integracziyu-esp-home-3\/\" class=\"rank-math-link\">Part 3:<\/a><\/p>\n\n<h5 class=\"wp-block-heading\">Step 8. Check the log of the new ESP8266 controller with GGreg20 connected<br\/>Step 9. Check for new entities on the server side<br\/>Step 10. Add GGreg20 radiation sensor widgets to the Dashboard<br\/>Step 11. Add a push notification automation script to the Home Assistant application for crossing thresholds<\/h5>\n\n<p>That&#8217;s all. Good luck!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We offer you the procedure of connecting the GGreg20 Geiger counter (sensor) in combination with the main controller ESP8266 or ESP32 to the Home Assistant server via the ESP Home plug-in. If you already have experience setting up and deploying devices in ESP Home running Home Assistant, you can skip the introductory sections and go [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4308,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"0","ocean_second_sidebar":"0","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"0","ocean_custom_header_template":"0","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"0","ocean_menu_typo_font_family":"0","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"0","omw_enable_modal_window":"enable","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"off","ocean_gallery_id":[],"footnotes":""},"categories":[88],"tags":[417,93,94,210,96,98],"class_list":["post-2351","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tips-en","tag-application-note-en","tag-esp32-en","tag-esp8266-en","tag-esphome-en","tag-ggreg20_v3-en","tag-home-assistant-en","entry","has-media","owp-thumbs-layout-horizontal","owp-btn-normal","owp-tabs-layout-horizontal","has-no-thumbnails","has-product-nav"],"_links":{"self":[{"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/posts\/2351","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/comments?post=2351"}],"version-history":[{"count":2,"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/posts\/2351\/revisions"}],"predecessor-version":[{"id":4315,"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/posts\/2351\/revisions\/4315"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/media\/4308"}],"wp:attachment":[{"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/media?parent=2351"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/categories?post=2351"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/iot-devices.com.ua\/en\/wp-json\/wp\/v2\/tags?post=2351"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}