{"id":10840,"date":"2023-03-17T18:21:38","date_gmt":"2023-03-17T12:51:38","guid":{"rendered":"http:\/\/myprojectideas.com\/?p=10840"},"modified":"2025-10-11T11:49:05","modified_gmt":"2025-10-11T11:49:05","slug":"automatic-sensor-tap-with-arduino","status":"publish","type":"post","link":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/","title":{"rendered":"Automatic Sensor Tap With Arduino"},"content":{"rendered":"<h2><strong style=\"color: #333333; font-size: 26px;\">Introduction of the Project<\/strong><\/h2>\n<p>Are you ready to upgrade your bathroom or kitchen sink with a touch-free, automatic sensor tap? Building your own DIY Automatic Sensor Tap with Arduino is a great way to add a modern, high-tech element to your home or workspace. Not only will it impress your guests, but it can also help save water and prevent the spread of germs. With my expertise in Arduino technology, I can guide you through the process and help you create a fully functioning sensor tap that will make your life easier and more hygienic.<\/p>\n<p>To build this Arduino project, we will use a PIR motion sensor to detect the presence of the hand and will use a servo as a tap. So, let&#8217;s roll up our sleeves and get started on this exciting project!<\/p>\n<iframe loading=\"lazy\"  id=\"_ytid_93342\"  width=\"1080\" height=\"607\"  data-origwidth=\"1080\" data-origheight=\"607\" src=\"https:\/\/www.youtube.com\/embed\/61eWon2ralY?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 Automatic Sensor Tap with Arduino, we will use the following components:<\/p>\n<h3><strong>Components<\/strong><\/h3>\n<ul>\n<li><a href=\"https:\/\/www.pololu.com\/product\/2191\">Arduino Uno R3<\/a><\/li>\n<li><a href=\"https:\/\/www.instructables.com\/PIR-Motion-Sensor-Tutorial\/\">PIR Sensor<\/a><\/li>\n<li>Micro Servo<\/li>\n<li>Connecting Wires<\/li>\n<\/ul>\n<p>We have used the <a href=\"https:\/\/www.tinkercad.com\/\">TinkerCad<\/a> website to build our project. To do physical projects, you can purchase the components online or from any electronics center.<\/p>\n<h2><strong>Circuit Diagram<\/strong><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-17701 size-full aligncenter\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2023\/03\/word-image-10840-1.webp\" alt=\"Automatic Sensor Tap With Arduino\" width=\"1517\" height=\"597\" \/><\/p>\n<h2><strong>Steps To Build An Automatic Sensor Tap With Arduino<\/strong><\/h2>\n<p><strong>Step 1:<\/strong> Gather all the components on the Digital Board or Physical Table.<\/p>\n<p><em><strong>PIR Sensor:<\/strong><\/em><\/p>\n<p><strong>Step 2:<\/strong> Connect the Ground terminal of the PIR sensor to the GND pin of the Arduino.<\/p>\n<p><strong>Step 3:<\/strong> Connect the Power terminal of the PIR sensor to the 5V pin of the Arduino.<\/p>\n<p><strong>Step 4:<\/strong> Connect the Signal terminal of the PIR sensor to the 2-number pin of the Arduino.<\/p>\n<p><em><strong>Micro Servo:<\/strong><\/em><\/p>\n<p><strong>Step 5:<\/strong> Connect the Power terminal of the micro servo to the 5V pin of the Arduino.<\/p>\n<p><strong>Step 6:<\/strong> Connect the Signal terminal of the micro servo to the 3-number pin of the Arduino.<\/p>\n<p><strong>Step 7:<\/strong> Connect the Ground terminal of the micro servo to the GND pin of the Arduino.<\/p>\n<h2><strong>Source Code<\/strong><\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"cpp\">#include &lt;Servo.h&gt;\r\n\r\nServo s;\r\n\r\nint presence = 90;\r\n\r\nvoid setup()\r\n\r\n{\r\n\r\nSerial.begin(9600);\r\n\r\npinMode(2, INPUT);\r\n\r\ns.attach(3);\r\n\r\ns.write(90);\r\n\r\n}\r\n\r\nvoid loop()\r\n\r\n{\r\n\r\npresence = digitalRead(2);\r\n\r\n\r\n\r\n\r\nSerial.print(presence);\r\n\r\nif( presence == 1)\r\n\r\n{\r\n\r\ns.write(0);\r\n\r\n}\r\n\r\nif(presence == 0)\r\n\r\n{\r\n\r\ns.write(90);\r\n\r\n}\r\n\r\n}<\/pre>\n<h2><strong>Explanation of the Code<\/strong><\/h2>\n<p>1. First, we included the Servo library.<\/p>\n<p>2. Then, we declared one object of servo <em><strong>&#8220;s&#8221;<\/strong><\/em> and initialized another integer variable, <em><strong>&#8220;presence&#8221;<\/strong><\/em> to 90.<\/p>\n<p>3. In the setup function, we are configuring the pin mode of the Arduino for input purposes. We have used <strong><em>serial.begin<\/em><\/strong>, to establish a serial connection with 9600 bits per second.<\/p>\n<p>4. Next, we attached pin number 3 of the Arduino to the servo, and initially, writing it to 90 degrees means the tap will be initially in a close position.<\/p>\n<p>5. Now, in the loop function, we are reading input from pin number 2 of the Arduino, which will tell us if there is any motion near to tap or not. We are storing the value in the presence variable.<\/p>\n<p>6. After that, we use the if statement to change the direction of the servo wrt the presence variable. We have used the write function to change the orientation of the servo.<\/p>\n<h2><a id=\"post-10840-_1fob9te\"><\/a><strong>Output<\/strong><\/h2>\n<p>We will get the following output on the successful completion of the project.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-17703 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2023\/03\/Automatic-Sensor-Tap-With-Arduino.webp\" alt=\"Automatic Sensor Tap With Arduino\" width=\"367\" height=\"236\" \/><\/p>\n<p>On starting the simulation, if our hand is near the tap, in the range of the sensor, the tap will open, and the servo will be at 0 degrees, else it will be closed(90 degrees).<\/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>To build this Arduino project, we will use a PIR motion sensor to detect the presence of the hand and will use a servo as a tap.<\/p>\n","protected":false},"author":1,"featured_media":10841,"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-10840","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>Automatic Sensor Tap With Arduino - RUDE LABS<\/title>\n<meta name=\"description\" content=\"Building your own DIY Automatic Sensor Tap with Arduino is a great way to add a modern, high-tech element to your home or workspace.\" \/>\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\/automatic-sensor-tap-with-arduino\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automatic Sensor Tap With Arduino - RUDE LABS\" \/>\n<meta property=\"og:description\" content=\"Building your own DIY Automatic Sensor Tap with Arduino is a great way to add a modern, high-tech element to your home or workspace.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/\" \/>\n<meta property=\"og:site_name\" content=\"RUDE LABS\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-17T12:51:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-11T11:49:05+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\/automatic-sensor-tap-with-arduino\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/\"},\"author\":{\"name\":\"rudelabs.ai\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\"},\"headline\":\"Automatic Sensor Tap With Arduino\",\"datePublished\":\"2023-03-17T12:51:38+00:00\",\"dateModified\":\"2025-10-11T11:49:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/\"},\"wordCount\":535,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Arduino\",\"Coding Basics\",\"Coding Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/\",\"name\":\"Automatic Sensor Tap With Arduino - RUDE LABS\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2023-03-17T12:51:38+00:00\",\"dateModified\":\"2025-10-11T11:49:05+00:00\",\"description\":\"Building your own DIY Automatic Sensor Tap with Arduino is a great way to add a modern, high-tech element to your home or workspace.\",\"breadcrumb\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rudelabs.ai\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automatic Sensor Tap With Arduino\"}]},{\"@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":"Automatic Sensor Tap With Arduino - RUDE LABS","description":"Building your own DIY Automatic Sensor Tap with Arduino is a great way to add a modern, high-tech element to your home or workspace.","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\/automatic-sensor-tap-with-arduino\/","og_locale":"en_US","og_type":"article","og_title":"Automatic Sensor Tap With Arduino - RUDE LABS","og_description":"Building your own DIY Automatic Sensor Tap with Arduino is a great way to add a modern, high-tech element to your home or workspace.","og_url":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/","og_site_name":"RUDE LABS","article_published_time":"2023-03-17T12:51:38+00:00","article_modified_time":"2025-10-11T11:49:05+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\/automatic-sensor-tap-with-arduino\/#article","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/"},"author":{"name":"rudelabs.ai","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894"},"headline":"Automatic Sensor Tap With Arduino","datePublished":"2023-03-17T12:51:38+00:00","dateModified":"2025-10-11T11:49:05+00:00","mainEntityOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/"},"wordCount":535,"commentCount":0,"publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#primaryimage"},"thumbnailUrl":"","articleSection":["Arduino","Coding Basics","Coding Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/","url":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/","name":"Automatic Sensor Tap With Arduino - RUDE LABS","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#primaryimage"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#primaryimage"},"thumbnailUrl":"","datePublished":"2023-03-17T12:51:38+00:00","dateModified":"2025-10-11T11:49:05+00:00","description":"Building your own DIY Automatic Sensor Tap with Arduino is a great way to add a modern, high-tech element to your home or workspace.","breadcrumb":{"@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/rudelabs.ai\/blogs\/automatic-sensor-tap-with-arduino\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rudelabs.ai\/blogs\/"},{"@type":"ListItem","position":2,"name":"Automatic Sensor Tap With Arduino"}]},{"@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\/10840","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=10840"}],"version-history":[{"count":2,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10840\/revisions"}],"predecessor-version":[{"id":17704,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10840\/revisions\/17704"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/media?parent=10840"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/categories?post=10840"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/tags?post=10840"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}