{"id":10884,"date":"2023-03-21T18:00:06","date_gmt":"2023-03-21T12:30:06","guid":{"rendered":"http:\/\/myprojectideas.com\/?p=10884"},"modified":"2025-10-10T12:36:20","modified_gmt":"2025-10-10T12:36:20","slug":"arduino-water-level-indicator-with-leds","status":"publish","type":"post","link":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/","title":{"rendered":"Arduino Water Level Indicator With LEDs"},"content":{"rendered":"<h2><strong>Introduction of the Project<\/strong><\/h2>\n<p>Are you looking for a fun and engaging electronics project that can also be useful in your everyday life? Look no further than building your own Arduino water level indicator with LEDs! With just a few basic components and some programming skills, you can create a working water level sensor that lights up LEDs in response to changes in water level.<\/p>\n<p>This project is not only a great way to improve your technical skills, but it&#8217;s also an opportunity to learn about water level sensing and monitoring and how to apply these concepts in real-world situations. So roll up your sleeves and get ready to dive into the world of DIY electronics with this exciting and practical project!<\/p>\n<iframe loading=\"lazy\"  id=\"_ytid_57803\"  width=\"1080\" height=\"607\"  data-origwidth=\"1080\" data-origheight=\"607\" src=\"https:\/\/www.youtube.com\/embed\/-l5Q22ZKOx8?enablejsapi=1&autoplay=0&cc_load_policy=0&cc_lang_pref=&iv_load_policy=1&loop=0&rel=1&fs=1&playsinline=0&autohide=2&theme=dark&color=red&controls=1&\" class=\"__youtube_prefs__  no-lazyload\" title=\"YouTube player\"  allow=\"fullscreen; accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen data-no-lazy=\"1\" data-skipgform_ajax_framebjll=\"\"><\/iframe>\n<p>&nbsp;<\/p>\n<h2><strong>Supplies<\/strong><\/h2>\n<p>In order to make an Arduino Water Level Indicator with LEDs, we will use LEDs of different colors to indicate the level of water in the tank. Apart from this, the components used are as follows:<\/p>\n<h3><strong>Components<\/strong><\/h3>\n<ul>\n<li><a href=\"https:\/\/docs.arduino.cc\/hardware\/uno-rev3\">Arduino Uno R3<\/a><\/li>\n<li>3 LEDs<\/li>\n<li>3 Resistors<\/li>\n<li>1 Small BreadBoard<\/li>\n<li><a href=\"https:\/\/www.sparkfun.com\/products\/15569\">Ultrasonic Distance Sensor<\/a><\/li>\n<li>Connecting wires<\/li>\n<\/ul>\n<p>We have done our project on the TinkerCad website. If you are planning to do physical projects, you can buy the components online from amazon or any electronics store near you.<\/p>\n<h2><strong>Circuit Diagram<\/strong><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-17689 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2023\/03\/word-image-10884-1.webp\" alt=\"Arduino Water Level Indicator With LEDs\" width=\"1517\" height=\"597\" \/><\/p>\n<h2><strong>Steps To Build An Arduino Water Level Indicator With LEDs<\/strong><\/h2>\n<p><strong>Step 1:<\/strong> Arrange all the components on the Digital Board or your workspace Table.<\/p>\n<p><em><strong>Ultrasonic Distance Sensor:<\/strong><\/em><\/p>\n<p><strong>Step 2: <\/strong>Connect the Power terminal of the Ultrasonic Distance Sensor to the 5V pin of the Arduino at its Analog Side.<\/p>\n<p><strong>Step 3:<\/strong> Connect the Trigger Terminal of the Ultrasonic Distance Sensor to the 10-number pin of the Arduino.<\/p>\n<p><strong>Step 4:<\/strong> Connect the Echo Terminal of the Ultrasonic Distance Sensor to the 11-number pin of the Arduino.<\/p>\n<p><strong>Step 5: <\/strong>Connect the Ground Terminal of the Ultrasonic Distance Sensor to the GND pin of the Arduino.<\/p>\n<p><em><strong>LEDs:<\/strong><\/em><\/p>\n<p><strong>Step 6:<\/strong> Connect the Cathode terminal of the LED to the GND pin of the Arduino through a resistor.<\/p>\n<p><strong>Step 7:<\/strong> Connect the Anode terminal of the LED to the 4, 5, &amp; 6 number pins of the Arduino.<\/p>\n<h2><strong>Source Code<\/strong><\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"cpp\">int distance = 0;\r\n\r\nint red = 4;\r\n\r\nint blue = 5;\r\n\r\nint green = 6;\r\n\r\nlong readUltrasonicDistance(int triggerPin, int echoPin)\r\n\r\n{\r\n\r\npinMode(triggerPin, OUTPUT);\r\n\r\ndigitalWrite(triggerPin, LOW);\r\n\r\ndelayMicroseconds(2);\r\n\r\n\r\n\r\n\r\ndigitalWrite(triggerPin, HIGH);\r\n\r\ndelayMicroseconds(10);\r\n\r\ndigitalWrite(triggerPin, LOW);\r\n\r\npinMode(echoPin, INPUT);\r\n\r\n\r\n\r\n\r\nreturn pulseIn(echoPin, HIGH);\r\n\r\n}\r\n\r\nvoid setup()\r\n\r\n{\r\n\r\npinMode(4, OUTPUT);\r\n\r\npinMode(5, OUTPUT);\r\n\r\npinMode(6, OUTPUT);\r\n\r\n}\r\n\r\nvoid loop()\r\n\r\n{\r\n\r\ndistance = 0.01723 * readUltrasonicDistance(10, 11);\r\n\r\nif(distance &gt;= 200)\r\n\r\n{\r\n\r\ndigitalWrite(red, HIGH);\r\n\r\ndigitalWrite(blue, LOW);\r\n\r\ndigitalWrite(green, LOW);\r\n\r\ndelay(2000);\r\n\r\n}\r\n\r\nif(distance &gt; 100 &amp;&amp; distance &lt; 200)\r\n\r\n{\r\n\r\ndigitalWrite(red, LOW);\r\n\r\ndigitalWrite(blue, HIGH);\r\n\r\ndigitalWrite(green, LOW);\r\n\r\ndelay(2000);\r\n\r\n}\r\n\r\nif(distance &lt;= 100)\r\n\r\n{\r\n\r\ndigitalWrite(red, LOW);\r\n\r\ndigitalWrite(blue, LOW);\r\n\r\ndigitalWrite(green, HIGH);\r\n\r\ndelay(2000);\r\n\r\n}\r\n\r\n}<\/pre>\n<h2><strong>Explanation of the Code<\/strong><\/h2>\n<p>1. Initially, we initialized an integer variable <strong><em>&#8216;distance&#8217;<\/em><\/strong> to 0 and three other variables <strong><em>&#8216;red&#8217;, &#8216;blue&#8217;, <\/em><\/strong>and<strong><em> &#8216;green&#8217;<\/em><\/strong> to the Arduino pin number to which the LED is connected.<\/p>\n<p>2. Then, we used a function to read ultrasonic distance using two parameters, which are inputs for the sensor. In the setup function, we have configured pin numbers 4, 5, &amp; 6 for output purposes.<\/p>\n<p>3. In the loop function, we are calculating the distance of the water from the top of the tank in centimeters and storing that value in a variable.<\/p>\n<p>4. After this, we use an if statement, in which<\/p>\n<ul>\n<li>If the distance is greater than 200cm (which means the tank is almost empty), the <em><strong>red LED will glow. <\/strong><\/em><\/li>\n<li>If the distance is less than 100 cm (which means the tank is almost full), the <strong><em>green LED will glow<\/em><\/strong>.<\/li>\n<li>If it is in between the two, the <em><strong>blue LED will glow. <\/strong><\/em><\/li>\n<\/ul>\n<p>In this way, the level of the water will be indicated using different colored LEDs.<\/p>\n<h2><a id=\"post-10884-_1fob9te\"><\/a><strong>Output<\/strong><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-17690 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2023\/03\/Arduino-Water-Level-Indicator-With-LEDs.webp\" alt=\"Arduino Water Level Indicator With LEDs\" width=\"453\" height=\"297\" \/><\/p>\n<p>On starting the simulation, the LEDs will glow as per the level of the water.<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/rudelabs.ai\/blogs\/category\/arduino\/\"><em><strong>More Arduino Projects&gt;&gt;&gt;<\/strong><\/em><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In order to make an Arduino Water Level Indicator with LEDs, we will use LEDs of different colors to indicate the level of water in the tank.<\/p>\n","protected":false},"author":1,"featured_media":10885,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[31,4,7],"tags":[],"class_list":["post-10884","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-coding-basics","category-coding-projects"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Arduino Water Level Indicator With LEDs - RUDE LABS<\/title>\n<meta name=\"description\" content=\"Are you looking for a fun and engaging electronics project that can also be useful in your everyday life? Look no further than building your own Arduino water level indicator with LEDs!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Arduino Water Level Indicator With LEDs - RUDE LABS\" \/>\n<meta property=\"og:description\" content=\"Are you looking for a fun and engaging electronics project that can also be useful in your everyday life? Look no further than building your own Arduino water level indicator with LEDs!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/\" \/>\n<meta property=\"og:site_name\" content=\"RUDE LABS\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-21T12:30:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-10T12:36:20+00:00\" \/>\n<meta name=\"author\" content=\"rudelabs.ai\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rudelabs_in\" \/>\n<meta name=\"twitter:site\" content=\"@rudelabs_in\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rudelabs.ai\" \/>\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:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/\"},\"author\":{\"name\":\"rudelabs.ai\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\"},\"headline\":\"Arduino Water Level Indicator With LEDs\",\"datePublished\":\"2023-03-21T12:30:06+00:00\",\"dateModified\":\"2025-10-10T12:36:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/\"},\"wordCount\":545,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Arduino\",\"Coding Basics\",\"Coding Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/\",\"name\":\"Arduino Water Level Indicator With LEDs - RUDE LABS\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2023-03-21T12:30:06+00:00\",\"dateModified\":\"2025-10-10T12:36:20+00:00\",\"description\":\"Are you looking for a fun and engaging electronics project that can also be useful in your everyday life? Look no further than building your own Arduino water level indicator with LEDs!\",\"breadcrumb\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rudelabs.ai\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arduino Water Level Indicator With LEDs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/\",\"name\":\"RUDE LABS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/rudelabs.ai\/blogs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\",\"name\":\"RUDE LABS\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp\",\"contentUrl\":\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp\",\"width\":2459,\"height\":414,\"caption\":\"RUDE LABS\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/rudelabs_in\",\"https:\/\/www.linkedin.com\/company\/ru-delabs\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\",\"name\":\"rudelabs.ai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g\",\"caption\":\"rudelabs.ai\"},\"sameAs\":[\"https:\/\/rudelabs.ai\/blogs\"],\"url\":\"https:\/\/rudelabs.ai\/blogs\/author\/rudelabs-ai\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Arduino Water Level Indicator With LEDs - RUDE LABS","description":"Are you looking for a fun and engaging electronics project that can also be useful in your everyday life? Look no further than building your own Arduino water level indicator with LEDs!","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:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/","og_locale":"en_US","og_type":"article","og_title":"Arduino Water Level Indicator With LEDs - RUDE LABS","og_description":"Are you looking for a fun and engaging electronics project that can also be useful in your everyday life? Look no further than building your own Arduino water level indicator with LEDs!","og_url":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/","og_site_name":"RUDE LABS","article_published_time":"2023-03-21T12:30:06+00:00","article_modified_time":"2025-10-10T12:36:20+00:00","author":"rudelabs.ai","twitter_card":"summary_large_image","twitter_creator":"@rudelabs_in","twitter_site":"@rudelabs_in","twitter_misc":{"Written by":"rudelabs.ai","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#article","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/"},"author":{"name":"rudelabs.ai","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894"},"headline":"Arduino Water Level Indicator With LEDs","datePublished":"2023-03-21T12:30:06+00:00","dateModified":"2025-10-10T12:36:20+00:00","mainEntityOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/"},"wordCount":545,"commentCount":0,"publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#primaryimage"},"thumbnailUrl":"","articleSection":["Arduino","Coding Basics","Coding Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/","url":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/","name":"Arduino Water Level Indicator With LEDs - RUDE LABS","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#primaryimage"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#primaryimage"},"thumbnailUrl":"","datePublished":"2023-03-21T12:30:06+00:00","dateModified":"2025-10-10T12:36:20+00:00","description":"Are you looking for a fun and engaging electronics project that can also be useful in your everyday life? Look no further than building your own Arduino water level indicator with LEDs!","breadcrumb":{"@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/rudelabs.ai\/blogs\/arduino-water-level-indicator-with-leds\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rudelabs.ai\/blogs\/"},{"@type":"ListItem","position":2,"name":"Arduino Water Level Indicator With LEDs"}]},{"@type":"WebSite","@id":"https:\/\/rudelabs.ai\/blogs\/#website","url":"https:\/\/rudelabs.ai\/blogs\/","name":"RUDE LABS","description":"","publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rudelabs.ai\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/rudelabs.ai\/blogs\/#organization","name":"RUDE LABS","url":"https:\/\/rudelabs.ai\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp","contentUrl":"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2025\/09\/RUDE-LABS.webp","width":2459,"height":414,"caption":"RUDE LABS"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/rudelabs_in","https:\/\/www.linkedin.com\/company\/ru-delabs\/"]},{"@type":"Person","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894","name":"rudelabs.ai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4d9f672e72f97294dfb6fac3d78e9f0bb5421a701cd2141cf2a2e540b4d67191?s=96&d=mm&r=g","caption":"rudelabs.ai"},"sameAs":["https:\/\/rudelabs.ai\/blogs"],"url":"https:\/\/rudelabs.ai\/blogs\/author\/rudelabs-ai\/"}]}},"_links":{"self":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10884","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/comments?post=10884"}],"version-history":[{"count":1,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10884\/revisions"}],"predecessor-version":[{"id":17691,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10884\/revisions\/17691"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/media?parent=10884"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/categories?post=10884"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/tags?post=10884"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}