{"id":299,"date":"2020-05-01T18:51:58","date_gmt":"2020-05-01T16:51:58","guid":{"rendered":"http:\/\/camperlife.ee\/?p=299"},"modified":"2020-05-01T19:46:58","modified_gmt":"2020-05-01T17:46:58","slug":"water-level-controller","status":"publish","type":"post","link":"https:\/\/camperlife.ee\/?p=299","title":{"rendered":"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b."},"content":{"rendered":"<header class=\"post-header the-post-header cf\">\n<div class=\"post-meta post-meta-a post-meta-center the-post-meta\">\n<h1 class=\"is-title post-title-alt\">Water level controller using arduino<\/h1>\n<h1>\u041e\u0447\u0435\u043d\u044c \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b.<\/h1>\n<p>&nbsp;<\/p>\n<\/div>\n<div class=\"featured\">&nbsp;<\/div>\n<\/header>\n<div>&nbsp;<\/div>\n<div class=\"post-content description cf entry-content has-share-float content-spacious\" style=\"text-align: left;\">\n<div class=\"code-block code-block-2\">&nbsp;<\/div>\n<h3>Arduino water level controller \/ indicator.<\/h3>\n<p>This article is a about a fully functional water level controller using Arduino. The circuit displays the&nbsp; level of water in the tank and switches the motor ON when the water level goes below&nbsp; a predetermined level. The circuit automatically switches the motor OFF when the tank is full. The water level and other important data are displayed on a 16\u00d72 LCD display. The circuit also monitors the level of water in the sump tank (source tank). If the level in side the sump tank is low, the motor will not be switched ON and this protects the motor from dry running. A beep sound is generated when the level in the sump tank is low or if there is any fault with the sensors.<\/p>\n<h4>Circuit diagram.<\/h4>\n<p><a href=\"http:\/\/www.circuitstoday.com\/wp-content\/uploads\/2014\/10\/water-level-controller-arduino.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-11062\" src=\"http:\/\/www.circuitstoday.com\/wp-content\/uploads\/2014\/10\/water-level-controller-arduino.png\" sizes=\"auto, (max-width: 936px) 100vw, 936px\" srcset=\"http:\/\/www.circuitstoday.com\/wp-content\/uploads\/2014\/10\/water-level-controller-arduino.png 936w, http:\/\/www.circuitstoday.com\/wp-content\/uploads\/2014\/10\/water-level-controller-arduino-300x163.png 300w\" alt=\"arduino water level controller\" width=\"936\" height=\"511\"><\/a><\/p>\n<div class=\"code-block code-block-3\">&nbsp;<\/div>\n<p>The circuit diagram of the water level controller using Arduino is shown above. Conductive method is used to measure the level. The sensor assembly consists of four aluminum wires arranged at 1\/4, 1\/2, 3\/4 and full levels in the tank. The dry ends of these wires are connected to analog input pins A1, A2, A3 and A4 of the Arduino respectively. A&nbsp; fifth wire is positioned at the bottom of the tank. Resistors R6 to R9 are pull down resistors.The dry end of this wire is connected to +5V DC. When the water touches a particular probe, electrical connection is established between that probe and the +5V probe because water has slight conductivity. As a result current flows through that probe and this current is converted into a proportional voltage by the pull down resistor. Arduino reads the voltage dropped across each pull down resistor for sensing the level of water in the tank. Same method is used for measuring the level of water in the sump tank.<\/p>\n<p>Digital pin 7 of the Arduino controls the buzzer and digital pin 8 controls the motor. Transistor Q1 drives the buzzer and resistor R5 limits the base current of Q1. Transistor Q2 drives the relay. Resistor R3 limits the base current of Q2. D2 is a freewheeling diode. POT R2 is used to adjust the contrast of the LCD. resistor R1 limits the current through the back light LED. Resistor R4 limits the current through the power ON LED. Complete program for the water level controller using Arduino is given below.<\/p>\n<h4>Program.<\/h4>\n<pre>#include &lt;LiquidCrystal.h&gt;\r\nint sump=A0;\r\nint qut=A1;\r\nint hlf=A2;\r\nint thf=A3;\r\nint ful=A4;\r\nint motor=8;\r\nint buz=7;\r\nint s;\r\nint q;\r\nint h;\r\nint t;\r\nint f;\r\nint i;     \/\/motor status flag\r\nint v=100; \/\/comparison variable(needs some adjustment)\r\nint b=0;   \/\/buzzer flag\r\nint m=0;   \/\/motor flag\r\nint c=0;   \/\/sump flag\r\n\r\nLiquidCrystal lcd(12, 11, 5, 4, 3, 2);\r\n\r\nvoid setup()\r\n{\r\n\r\npinMode(qut,INPUT);\r\npinMode(hlf,INPUT);\r\npinMode(qut,INPUT);\r\npinMode(ful,INPUT);\r\npinMode(sump,INPUT);\r\npinMode(motor,OUTPUT);\r\npinMode(buz,OUTPUT);\r\nlcd.begin(16, 2);\r\ndigitalWrite(buz,LOW);\r\n}\r\n\r\nvoid loop()\r\n{\r\n\r\ni=digitalRead(motor);\r\ns=analogRead(sump);\r\nq=analogRead(qut);\r\nh=analogRead(hlf);\r\nt=analogRead(thf);\r\nf=analogRead(ful);\r\nlcd.clear();\r\n\r\nif(f&gt;v &amp;&amp; t&gt;v &amp;&amp; h&gt;v &amp;&amp; q&gt;v )\r\n{\r\nlcd.setCursor(0,0);\r\nlcd.print(char(219));\r\nlcd.print(char(219));\r\nlcd.print(char(219));\r\nlcd.print(char(219));\r\nlcd.setCursor(5,0);\r\nlcd.print(\"FULL\");\r\nm=0;\r\nb=0;\r\n}\r\nelse\r\n{\r\nif(f&lt;v &amp;&amp; t&gt;v &amp;&amp; h&gt;v &amp;&amp; q&gt;v)\r\n{\r\nlcd.setCursor(0,0);\r\nlcd.print(char(219));\r\nlcd.print(char(219));\r\nlcd.print(char(219));\r\nlcd.print(\"_\");\r\nlcd.setCursor(5,0);\r\nlcd.print(\"3\/4th\");\r\nb=0;\r\n}\r\nelse\r\n{\r\nif(f&lt;v &amp;&amp; t&lt;v &amp;&amp; h&gt;v &amp;&amp; q&gt;v)\r\n{\r\nlcd.setCursor(0,0);\r\nlcd.print(char(219));\r\nlcd.print(char(219));\r\nlcd.print(\"_\");\r\nlcd.print(\"_\");\r\nlcd.setCursor(5,0);\r\nlcd.print(\"HALF\");\r\nm=1;\r\nb=0;\r\n}\r\nelse\r\nif(f&lt;v &amp;&amp; t&lt;v &amp;&amp; h&lt;v &amp;&amp; q&gt;v)\r\n{\r\nlcd.setCursor(0,0);\r\nlcd.print(char(219));\r\nlcd.print(\"_\");\r\nlcd.print(\"_\");\r\nlcd.print(\"_\");\r\nlcd.setCursor(5,0);\r\nlcd.print(\"1\/4th\");\r\nb=0;\r\n}\r\nelse\r\n{\r\nif(f&lt;v &amp;&amp; t&lt;v &amp;&amp; h&lt;v &amp;&amp; q&lt;v)\r\n{\r\nlcd.setCursor(0,0);\r\nlcd.print(\"_\");\r\nlcd.print(\"_\");\r\nlcd.print(\"_\");\r\nlcd.print(\"_\");\r\nlcd.setCursor(5,0);\r\nlcd.print(\"LOW\");\r\nb=0;\r\n}\r\nelse\r\n\r\n{\r\ndigitalWrite(motor,LOW);\r\nlcd.setCursor(0,0);\r\nlcd.print(\"ERROR!\");\r\nb=1;\r\n}\r\n}}}\r\nif(i==HIGH)\r\n{\r\nlcd.setCursor(0,1);\r\nlcd.print(\"Motor ON\");\r\n}\r\nelse\r\n{\r\nlcd.setCursor(0,1);\r\nlcd.print(\"Motor OFF\");\r\n}\r\n\r\n\r\n\r\nif(s&gt;v &amp;&amp; m==1)\r\n{\r\ndigitalWrite(motor,HIGH);\r\n}\r\nif(s&lt;v)\r\n{\r\ndigitalWrite(motor,LOW);\r\nlcd.setCursor(11,0);\r\nlcd.print(\"Low\");\r\nlcd.setCursor(11,1);\r\nlcd.print(\"Sump\");\r\nc=1;\r\n}\r\nif(s&gt;v)\r\n{\r\nc=0;\r\n}\r\n\r\nif(m==0)\r\n{\r\ndigitalWrite(motor,LOW);\r\n}\r\n\r\nif(b==1 || c==1)\r\n{\r\ndigitalWrite(buz,HIGH);\r\ndelay(500);\r\ndigitalWrite(buz,LOW);\r\n}\r\nelse\r\n{\r\ndigitalWrite(buz,LOW);\r\n}\r\ndelay(100);\r\nlcd.clear();\r\n}<\/pre>\n<h4>About the program.<\/h4>\n<p>The Arduino reads the sensor output through the analog input pins using analogRead function. For example q=analogRead(qut); converts the voltage (in the range 0 to 5V) at the&nbsp; \u201cquarter\u201d probe into a number (in the range 0 to 1023) and saves it into the variable \u201cq\u201d. This way the voltage at each prob is scanned to corresponding variables. The these variables are compared to a fixed number (100 here) for identifying the current condition. Actually 100 is the equivalent of&nbsp; 0.48 volts&nbsp; and if the voltage at a particular sensor is greater than this, it is considered as an electrical continuity and water is assumed to be touching the probe. The vale of the fixed number (comparison variable\u201dv\u201d) needs some adjustment because the resistivity of water changes from place to place and the gap between the sensor probes will be different in different tanks.<\/p>\n<h4>Notes.<\/h4>\n<ul>\n<li>The circuit is powered through the 9V external power jack on the arduino board.<\/li>\n<li>5V needed at different points in the circuit can be tapped from the 5V output on the arduino board.<\/li>\n<li>Use good quality aluminum wires for probe. Do not use copper wires.<\/li>\n<\/ul>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Water level controller using arduino \u041e\u0447\u0435\u043d\u044c \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. &nbsp; &nbsp; &nbsp; &nbsp; Arduino water level controller \/ indicator. This article is a about a fully functional water&hellip;<\/p>\n","protected":false},"author":3,"featured_media":300,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-299","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-4"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. - Camperlife Club<\/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:\/\/camperlife.ee\/?p=299\" \/>\n<meta property=\"og:locale\" content=\"ru_RU\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. - Camperlife Club\" \/>\n<meta property=\"og:description\" content=\"Water level controller using arduino \u041e\u0447\u0435\u043d\u044c \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. &nbsp; &nbsp; &nbsp; &nbsp; Arduino water level controller \/ indicator. This article is a about a fully functional water&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/camperlife.ee\/?p=299\" \/>\n<meta property=\"og:site_name\" content=\"Camperlife Club\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-01T16:51:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-05-01T17:46:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/camperlife.ee\/wp-content\/uploads\/WATERTANK.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"578\" \/>\n\t<meta property=\"og:image:height\" content=\"669\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Camperlife\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u041d\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0430\u0432\u0442\u043e\u0440\u043e\u043c\" \/>\n\t<meta name=\"twitter:data1\" content=\"Camperlife\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u041f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 \u043c\u0438\u043d\u0443\u0442\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299\"},\"author\":{\"name\":\"Camperlife\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#\\\/schema\\\/person\\\/c4026c14682d981b6bf03c41a5705dc2\"},\"headline\":\"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b.\",\"datePublished\":\"2020-05-01T16:51:58+00:00\",\"dateModified\":\"2020-05-01T17:46:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299\"},\"wordCount\":602,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/camperlife.ee\\\/wp-content\\\/uploads\\\/WATERTANK.jpg\",\"articleSection\":[\"\u0420\u0435\u043c\u043e\u043d\u0442\"],\"inLanguage\":\"ru-RU\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/camperlife.ee\\\/?p=299#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299\",\"url\":\"https:\\\/\\\/camperlife.ee\\\/?p=299\",\"name\":\"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. - Camperlife Club\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/camperlife.ee\\\/wp-content\\\/uploads\\\/WATERTANK.jpg\",\"datePublished\":\"2020-05-01T16:51:58+00:00\",\"dateModified\":\"2020-05-01T17:46:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299#breadcrumb\"},\"inLanguage\":\"ru-RU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/camperlife.ee\\\/?p=299\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ru-RU\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299#primaryimage\",\"url\":\"https:\\\/\\\/camperlife.ee\\\/wp-content\\\/uploads\\\/WATERTANK.jpg\",\"contentUrl\":\"https:\\\/\\\/camperlife.ee\\\/wp-content\\\/uploads\\\/WATERTANK.jpg\",\"width\":578,\"height\":669},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/?p=299#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\",\"item\":\"https:\\\/\\\/camperlife.ee\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#website\",\"url\":\"https:\\\/\\\/camperlife.ee\\\/\",\"name\":\"Camperlife Club\",\"description\":\"\u0410\u0432\u0442\u043e\u0434\u043e\u043c\u0430, \u043f\u0440\u0438\u0446\u0435\u043f\u044b - \u0420\u0430\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u044f, \u043e\u0442\u0434\u044b\u0445, \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u0438\",\"publisher\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/camperlife.ee\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ru-RU\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#organization\",\"name\":\"Camperlife Club\",\"url\":\"https:\\\/\\\/camperlife.ee\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ru-RU\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/camperlife.ee\\\/wp-content\\\/uploads\\\/cropped-cropped-logo-na-futbolku-2-scaled-e1776712753304.png\",\"contentUrl\":\"https:\\\/\\\/camperlife.ee\\\/wp-content\\\/uploads\\\/cropped-cropped-logo-na-futbolku-2-scaled-e1776712753304.png\",\"width\":2243,\"height\":165,\"caption\":\"Camperlife Club\"},\"image\":{\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/camperlife.ee\\\/#\\\/schema\\\/person\\\/c4026c14682d981b6bf03c41a5705dc2\",\"name\":\"Camperlife\",\"url\":\"https:\\\/\\\/camperlife.ee\\\/?author=3\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. - Camperlife Club","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:\/\/camperlife.ee\/?p=299","og_locale":"ru_RU","og_type":"article","og_title":"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. - Camperlife Club","og_description":"Water level controller using arduino \u041e\u0447\u0435\u043d\u044c \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u044b\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044f \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. &nbsp; &nbsp; &nbsp; &nbsp; Arduino water level controller \/ indicator. This article is a about a fully functional water&hellip;","og_url":"https:\/\/camperlife.ee\/?p=299","og_site_name":"Camperlife Club","article_published_time":"2020-05-01T16:51:58+00:00","article_modified_time":"2020-05-01T17:46:58+00:00","og_image":[{"width":578,"height":669,"url":"https:\/\/camperlife.ee\/wp-content\/uploads\/WATERTANK.jpg","type":"image\/jpeg"}],"author":"Camperlife","twitter_card":"summary_large_image","twitter_misc":{"\u041d\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0430\u0432\u0442\u043e\u0440\u043e\u043c":"Camperlife","\u041f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f":"5 \u043c\u0438\u043d\u0443\u0442"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/camperlife.ee\/?p=299#article","isPartOf":{"@id":"https:\/\/camperlife.ee\/?p=299"},"author":{"name":"Camperlife","@id":"https:\/\/camperlife.ee\/#\/schema\/person\/c4026c14682d981b6bf03c41a5705dc2"},"headline":"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b.","datePublished":"2020-05-01T16:51:58+00:00","dateModified":"2020-05-01T17:46:58+00:00","mainEntityOfPage":{"@id":"https:\/\/camperlife.ee\/?p=299"},"wordCount":602,"commentCount":0,"publisher":{"@id":"https:\/\/camperlife.ee\/#organization"},"image":{"@id":"https:\/\/camperlife.ee\/?p=299#primaryimage"},"thumbnailUrl":"https:\/\/camperlife.ee\/wp-content\/uploads\/WATERTANK.jpg","articleSection":["\u0420\u0435\u043c\u043e\u043d\u0442"],"inLanguage":"ru-RU","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/camperlife.ee\/?p=299#respond"]}]},{"@type":"WebPage","@id":"https:\/\/camperlife.ee\/?p=299","url":"https:\/\/camperlife.ee\/?p=299","name":"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b. - Camperlife Club","isPartOf":{"@id":"https:\/\/camperlife.ee\/#website"},"primaryImageOfPage":{"@id":"https:\/\/camperlife.ee\/?p=299#primaryimage"},"image":{"@id":"https:\/\/camperlife.ee\/?p=299#primaryimage"},"thumbnailUrl":"https:\/\/camperlife.ee\/wp-content\/uploads\/WATERTANK.jpg","datePublished":"2020-05-01T16:51:58+00:00","dateModified":"2020-05-01T17:46:58+00:00","breadcrumb":{"@id":"https:\/\/camperlife.ee\/?p=299#breadcrumb"},"inLanguage":"ru-RU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/camperlife.ee\/?p=299"]}]},{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https:\/\/camperlife.ee\/?p=299#primaryimage","url":"https:\/\/camperlife.ee\/wp-content\/uploads\/WATERTANK.jpg","contentUrl":"https:\/\/camperlife.ee\/wp-content\/uploads\/WATERTANK.jpg","width":578,"height":669},{"@type":"BreadcrumbList","@id":"https:\/\/camperlife.ee\/?p=299#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","item":"https:\/\/camperlife.ee\/"},{"@type":"ListItem","position":2,"name":"\u041a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0443\u0440\u043e\u0432\u043d\u044f \u0432\u043e\u0434\u044b."}]},{"@type":"WebSite","@id":"https:\/\/camperlife.ee\/#website","url":"https:\/\/camperlife.ee\/","name":"Camperlife Club","description":"\u0410\u0432\u0442\u043e\u0434\u043e\u043c\u0430, \u043f\u0440\u0438\u0446\u0435\u043f\u044b - \u0420\u0430\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u044f, \u043e\u0442\u0434\u044b\u0445, \u0438\u043d\u043d\u043e\u0432\u0430\u0446\u0438\u0438","publisher":{"@id":"https:\/\/camperlife.ee\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/camperlife.ee\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ru-RU"},{"@type":"Organization","@id":"https:\/\/camperlife.ee\/#organization","name":"Camperlife Club","url":"https:\/\/camperlife.ee\/","logo":{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https:\/\/camperlife.ee\/#\/schema\/logo\/image\/","url":"https:\/\/camperlife.ee\/wp-content\/uploads\/cropped-cropped-logo-na-futbolku-2-scaled-e1776712753304.png","contentUrl":"https:\/\/camperlife.ee\/wp-content\/uploads\/cropped-cropped-logo-na-futbolku-2-scaled-e1776712753304.png","width":2243,"height":165,"caption":"Camperlife Club"},"image":{"@id":"https:\/\/camperlife.ee\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/camperlife.ee\/#\/schema\/person\/c4026c14682d981b6bf03c41a5705dc2","name":"Camperlife","url":"https:\/\/camperlife.ee\/?author=3"}]}},"_links":{"self":[{"href":"https:\/\/camperlife.ee\/index.php?rest_route=\/wp\/v2\/posts\/299","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/camperlife.ee\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/camperlife.ee\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/camperlife.ee\/index.php?rest_route=\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/camperlife.ee\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=299"}],"version-history":[{"count":4,"href":"https:\/\/camperlife.ee\/index.php?rest_route=\/wp\/v2\/posts\/299\/revisions"}],"predecessor-version":[{"id":304,"href":"https:\/\/camperlife.ee\/index.php?rest_route=\/wp\/v2\/posts\/299\/revisions\/304"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/camperlife.ee\/index.php?rest_route=\/wp\/v2\/media\/300"}],"wp:attachment":[{"href":"https:\/\/camperlife.ee\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=299"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/camperlife.ee\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=299"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/camperlife.ee\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=299"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}