{"id":10166,"date":"2022-12-30T12:00:30","date_gmt":"2022-12-30T06:30:30","guid":{"rendered":"http:\/\/myprojectideas.com\/?p=10166"},"modified":"2025-10-18T12:06:42","modified_gmt":"2025-10-18T12:06:42","slug":"how-to-blink-led-using-a-button-in-arduino","status":"publish","type":"post","link":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/","title":{"rendered":"How To Blink LED Using A Button In Arduino"},"content":{"rendered":"<h2><strong>Introduction<\/strong><\/h2>\n<p>Today we will see how we can use a pushbutton to blink LEDs using Arduino Uno. This project has many applications and products like light shoes that kids wear, Rakhis that has a button on it, pressing it results in glowing light, friendship belts, etc. So let us begin to learn how to blink LED using a button in Arduino.<\/p>\n<p>Once you have the hardware set up, we will use the Arduino software to write a program that will control the LED and button. In the program, you will need to set up the digital input pin connected to the button as an input and the digital output pin connected to the LED as an output.<\/p>\n<iframe loading=\"lazy\"  id=\"_ytid_10200\"  width=\"1080\" height=\"607\"  data-origwidth=\"1080\" data-origheight=\"607\" src=\"https:\/\/www.youtube.com\/embed\/7_q2xN5Rl60?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>To learn how to blink LED using a button in Arduino, we will require the following components:<\/p>\n<h3><strong>Components<\/strong><\/h3>\n<ul>\n<li><a href=\"https:\/\/www.amazon.in\/s?k=Arduino+Uno+R3&amp;crid=296P1M3KXWO6T&amp;sprefix=%2Caps%2C210&amp;ref=nb_sb_noss_2\">Arduino Uno R3<\/a><\/li>\n<li>1 <a href=\"https:\/\/uk.rs-online.com\/web\/generalDisplay.html?id=ideas-and-advice\/push-button-switches-guide\">Pushbutton<\/a><\/li>\n<li>1 <a href=\"https:\/\/www.amazon.in\/Robodo-Electronics-OTH20-Breadboard-Prototyping\/dp\/B07B946ZNX\">Small Breadboard<\/a><\/li>\n<li>3 LEDs<\/li>\n<li>4 Resistors<\/li>\n<li>Connecting wires<\/li>\n<\/ul>\n<h2><strong>Circuit Diagram<\/strong><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-17998 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2022\/12\/word-image-10166-1-1.webp\" alt=\"How To Blink LED Using A Button In Arduino\" width=\"1517\" height=\"597\" \/><\/p>\n<h2><strong>Steps To\u00a0Blink LED Using A Button In Arduino<\/strong><\/h2>\n<p><strong>Step 1:<\/strong> Assemble all the components on the Digital Board.<\/p>\n<p><strong>Step 2: <\/strong>Connect the LEDs and Pushbutton on the Breadboard.<\/p>\n<p><strong>LED:<\/strong><\/p>\n<p><strong>Step 3: <\/strong>First, connect the positive leg of the LED to a digital output pin on the Arduino and the negative leg to a GND pin<\/p>\n<p><strong>Step 4: <\/strong>Then, connect one end of the button to a digital input pin on the Arduino and the other end to a GND pin.<\/p>\n<p><strong>Pushbutton:<\/strong><\/p>\n<p><strong>Step 5: <\/strong>Connect the one terminal of it to the 5V pin of the Arduino at its Analog Side.<\/p>\n<p><strong>Step 6:<\/strong> Connect the second Terminal of it to the 2-number pin of the Arduino.<\/p>\n<p><strong>Step 7:<\/strong> Connect the third Terminal of it to the resistor&#8217;s one end and the second end of the resistor to the GND pin of the Arduino using a black colored wire.<\/p>\n<h2><strong>Source Code<\/strong><\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"cpp\">int state = 0;\r\n\r\nvoid setup()\r\n\r\n{\r\n\r\npinMode(13, OUTPUT);\r\n\r\npinMode(12, OUTPUT);\r\n\r\npinMode(11, OUTPUT);\r\n\r\npinMode(2, INPUT);\r\n\r\n}\r\n\r\nvoid loop()\r\n\r\n{\r\n\r\nstate = digitalRead(2);\r\n\r\n\r\n\r\n\r\nif (state == LOW)\r\n\r\n{\r\n\r\ndigitalWrite(13, LOW);\r\n\r\ndigitalWrite(12, LOW);\r\n\r\ndigitalWrite(11, LOW);\r\n\r\n}\r\n\r\nelse\r\n\r\n{\r\n\r\ndigitalWrite(13, HIGH);\r\n\r\ndigitalWrite(12, LOW);\r\n\r\ndigitalWrite(11, HIGH);\r\n\r\ndelay (100);\r\n\r\n\r\n\r\n\r\ndigitalWrite(13, LOW);\r\n\r\ndigitalWrite(12, HIGH);\r\n\r\ndigitalWrite(11, LOW);\r\n\r\ndelay (100);\r\n\r\n}\r\n\r\n}<\/pre>\n<h2><strong>Explanation Of The Code<\/strong><\/h2>\n<p>1. Firslty we have initialized a <em><strong>state<\/strong><\/em> variable to 0.<\/p>\n<p>2. Next, we used the setup function to configure pin numbers 11, 12 &amp; 13 for output purposes and pin number 2 for input purposes.<\/p>\n<p>3. In the loop function, we are reading the input from pin number 2.<\/p>\n<p>4. After that, we use the if-else statement, which will decide how the LED will glow when we click on the button and what will happen if we do not click it.<\/p>\n<p>5. So, on clicking it, the LEDs will blink as per the time set by the delay function.<\/p>\n<p>6. We have used a delay() function, which takes time in <em><strong>milliseconds(ms).<\/strong><\/em><\/p>\n<h2><a id=\"post-10166-_1fob9te\"><\/a><strong>Output<\/strong><\/h2>\n<p>On clicking the button, LEDs will start blinking one after the other in a loop.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-18000 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2022\/12\/How-To-Blink-LED-Using-A-Button-In-Arduino.webp\" alt=\"How To Blink LED Using A Button In Arduino\" width=\"273\" height=\"233\" \/><\/p>\n<p>Overall, to blink LED using a button in Arduino is a simple process that requires just a few connections and a bit of code. This Aduino project can be useful starting point for learning how to use buttons and LEDs with Arduino.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Once you have the hardware set up, we will use the Arduino software to write a program that will control the LED and button.<\/p>\n","protected":false},"author":1,"featured_media":10167,"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-10166","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>How To Blink LED Using A Button In Arduino - RUDE LABS<\/title>\n<meta name=\"description\" content=\"Here we will learn how to blink\u00a0LED using a button in Arduino. We will use the Arduino software to write a program that will control the LED and button.\" \/>\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\/how-to-blink-led-using-a-button-in-arduino\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Blink LED Using A Button In Arduino - RUDE LABS\" \/>\n<meta property=\"og:description\" content=\"Here we will learn how to blink\u00a0LED using a button in Arduino. We will use the Arduino software to write a program that will control the LED and button.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/\" \/>\n<meta property=\"og:site_name\" content=\"RUDE LABS\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-30T06:30:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-18T12:06:42+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\/how-to-blink-led-using-a-button-in-arduino\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/\"},\"author\":{\"name\":\"rudelabs.ai\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\"},\"headline\":\"How To Blink LED Using A Button In Arduino\",\"datePublished\":\"2022-12-30T06:30:30+00:00\",\"dateModified\":\"2025-10-18T12:06:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/\"},\"wordCount\":476,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Arduino\",\"Coding Basics\",\"Coding Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/\",\"name\":\"How To Blink LED Using A Button In Arduino - RUDE LABS\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2022-12-30T06:30:30+00:00\",\"dateModified\":\"2025-10-18T12:06:42+00:00\",\"description\":\"Here we will learn how to blink\u00a0LED using a button in Arduino. We will use the Arduino software to write a program that will control the LED and button.\",\"breadcrumb\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rudelabs.ai\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Blink LED Using A Button In 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":"How To Blink LED Using A Button In Arduino - RUDE LABS","description":"Here we will learn how to blink\u00a0LED using a button in Arduino. We will use the Arduino software to write a program that will control the LED and button.","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\/how-to-blink-led-using-a-button-in-arduino\/","og_locale":"en_US","og_type":"article","og_title":"How To Blink LED Using A Button In Arduino - RUDE LABS","og_description":"Here we will learn how to blink\u00a0LED using a button in Arduino. We will use the Arduino software to write a program that will control the LED and button.","og_url":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/","og_site_name":"RUDE LABS","article_published_time":"2022-12-30T06:30:30+00:00","article_modified_time":"2025-10-18T12:06:42+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\/how-to-blink-led-using-a-button-in-arduino\/#article","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/"},"author":{"name":"rudelabs.ai","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894"},"headline":"How To Blink LED Using A Button In Arduino","datePublished":"2022-12-30T06:30:30+00:00","dateModified":"2025-10-18T12:06:42+00:00","mainEntityOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/"},"wordCount":476,"commentCount":0,"publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#primaryimage"},"thumbnailUrl":"","articleSection":["Arduino","Coding Basics","Coding Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/","url":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/","name":"How To Blink LED Using A Button In Arduino - RUDE LABS","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#primaryimage"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#primaryimage"},"thumbnailUrl":"","datePublished":"2022-12-30T06:30:30+00:00","dateModified":"2025-10-18T12:06:42+00:00","description":"Here we will learn how to blink\u00a0LED using a button in Arduino. We will use the Arduino software to write a program that will control the LED and button.","breadcrumb":{"@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/rudelabs.ai\/blogs\/how-to-blink-led-using-a-button-in-arduino\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rudelabs.ai\/blogs\/"},{"@type":"ListItem","position":2,"name":"How To Blink LED Using A Button In 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\/10166","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=10166"}],"version-history":[{"count":2,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10166\/revisions"}],"predecessor-version":[{"id":18001,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/10166\/revisions\/18001"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/media?parent=10166"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/categories?post=10166"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/tags?post=10166"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}