{"id":6319,"date":"2022-04-12T13:05:40","date_gmt":"2022-04-12T07:35:40","guid":{"rendered":"http:\/\/myprojectideas.com\/?p=6319"},"modified":"2025-10-31T11:31:55","modified_gmt":"2025-10-31T11:31:55","slug":"decoration-series-using-arduino-with-leds-arduino-project","status":"publish","type":"post","link":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/","title":{"rendered":"Decoration Series Using Arduino With LEDs | Arduino Project"},"content":{"rendered":"<h2><strong style=\"font-size: 26px;\">Introduction<\/strong><\/h2>\n<p>In this Arduino tutorial, we will learn to make a Decoration Series using Arduino Uno R3 with LEDs. In this project, the LEDs of five different colours will blink simultaneously after a particular period of time.<\/p>\n<p>This project can be used for various festivals for decoration purposes like Diwali, Christmas, New year, etc.<\/p>\n<p>The components can be purchased online or from any electronics centre for physical projects.<\/p>\n<p>For the online projects, the TinkerCad website can be used.<\/p>\n<iframe loading=\"lazy\"  id=\"_ytid_80894\"  width=\"1080\" height=\"607\"  data-origwidth=\"1080\" data-origheight=\"607\" src=\"https:\/\/www.youtube.com\/embed\/BRKM4HpkY8U?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 do this Decoration Series using Arduino with LEDs, 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=1V8SBR4S7E7NZ&amp;sprefix=cotton+roll%2Caps%2C1437&amp;ref=nb_sb_noss\">Arduino Uno R3<\/a><\/li>\n<li><a href=\"https:\/\/www.amazon.in\/Electronicspices-Pack-White-Green-Yellow\/dp\/B07L8HZS2Q\/ref=sr_1_1?crid=25D87RLS66725&amp;keywords=LEDs&amp;qid=1649748581&amp;sprefix=leds%2Caps%2C602&amp;sr=8-1\">5 LEDs (Green, Red, Blue, White, and Yellow)<\/a><\/li>\n<li>1 Small Breadboard<\/li>\n<li>1 Green wire<\/li>\n<li>7 Black wires<\/li>\n<li>1 Yellow wire<\/li>\n<li>1 Red wire<\/li>\n<li>1 Blue wire<\/li>\n<li>1 White wire<\/li>\n<\/ul>\n<h2><strong>Circuit Diagram<\/strong><\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-18378 size-full aligncenter\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2022\/04\/word-image-499.webp\" alt=\"Decoration Series Using Arduino With LEDs\" width=\"1366\" height=\"528\" \/><\/p>\n<h2><strong>Steps To Create Decoration Series Using Arduino with LEDs<\/strong><\/h2>\n<p><strong>Step 1:<\/strong> Gather all the components on the Digital Board or Physical Table.<\/p>\n<p><strong>Step 2:<\/strong> Place all three LEDs on BreadBoard.<\/p>\n<p><strong>Step 3:<\/strong> Connect the Anode part of the LEDs to the Arduino using three coloured wires to pin numbers 12,9,7,4 and 1 of Arduino, respectively.<\/p>\n<p><strong>Step 4:<\/strong> Connect the cathode part of all three LEDs to the grounding of the Arduino Uno using black coloured wire.<\/p>\n<p><strong>Step 5:<\/strong> The circuit is ready, input the source code and switch on the Arduino to run it.<\/p>\n<h2><strong>Source Code<\/strong><\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"cpp\">void setup()\r\n\r\n{\r\n\r\npinMode(12, OUTPUT);\r\n\r\npinMode(9, OUTPUT);\r\n\r\npinMode(7, OUTPUT);\r\n\r\npinMode(4, OUTPUT);\r\n\r\npinMode(1, OUTPUT);\r\n\r\n}\r\n\r\nvoid loop()\r\n\r\n{\r\n\r\ndigitalWrite(12, HIGH);\r\n\r\ndelay(100);\r\n\r\ndigitalWrite(12, LOW);\r\n\r\ndigitalWrite(9, HIGH);\r\n\r\ndelay(100);\r\n\r\ndigitalWrite(9, LOW);\r\n\r\ndigitalWrite(7, HIGH);\r\n\r\ndelay(100);\r\n\r\ndigitalWrite(7, LOW);\r\n\r\ndigitalWrite(4, HIGH);\r\n\r\ndelay(100);\r\n\r\ndigitalWrite(4, LOW);\r\n\r\ndigitalWrite(1, HIGH);\r\n\r\ndelay(100);\r\n\r\ndigitalWrite(1, LOW);\r\n\r\n\r\n}<\/pre>\n<h2><strong>Explanation of the Code<\/strong><\/h2>\n<p>We need to input the code to make the Decoration Series using Arduino with LEDs.<\/p>\n<p>For this, we have used two functions, namely, setup() and loop().<\/p>\n<p>The setup function is used to declare from which LED pin number we are producing the output.<\/p>\n<p>In the loop function, we are producing the output as high for each pin number for some amount of time using the delay function. And thereafter, making it low.<\/p>\n<p>The delay will fix the time period till which the LED will glow. The time is in milliseconds.<\/p>\n<h2><a id=\"post-6319-_heading=h.1fob9te\"><\/a><strong>Output<\/strong><\/h2>\n<p>We will get the following output on the successful completion of the Decoration Series using Arduino with LEDs project.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-18379 size-full\" src=\"https:\/\/rudelabs.ai\/blogs\/wp-content\/uploads\/2022\/04\/word-image-500-e1649747387170.webp\" alt=\"Decoration Series Using Arduino With LEDs\" width=\"1362\" height=\"628\" \/><\/p>\n<p>The LEDs will glow as per the delay function, just one after the other.<\/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 this Arduino tutorial, we will learn to make a Decoration Series using Arduino Uno R3 with LEDs. We will require the following components:<\/p>\n","protected":false},"author":1,"featured_media":6320,"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":[32,33,34],"class_list":["post-6319","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-coding-basics","category-coding-projects","tag-arduino","tag-arduino-project","tag-coding-project"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.1.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Decoration Series Using Arduino With LEDs | Arduino Project - RUDE LABS<\/title>\n<meta name=\"description\" content=\"In this Arduino tutorial, we will learn to make a Decoration Series using Arduino Uno R3 with LEDs. We will require the following components:\" \/>\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\/decoration-series-using-arduino-with-leds-arduino-project\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Decoration Series Using Arduino With LEDs | Arduino Project - RUDE LABS\" \/>\n<meta property=\"og:description\" content=\"In this Arduino tutorial, we will learn to make a Decoration Series using Arduino Uno R3 with LEDs. We will require the following components:\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/\" \/>\n<meta property=\"og:site_name\" content=\"RUDE LABS\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-12T07:35:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-31T11:31:55+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/\"},\"author\":{\"name\":\"rudelabs.ai\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894\"},\"headline\":\"Decoration Series Using Arduino With LEDs | Arduino Project\",\"datePublished\":\"2022-04-12T07:35:40+00:00\",\"dateModified\":\"2025-10-31T11:31:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/\"},\"wordCount\":365,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#organization\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#primaryimage\"},\"thumbnailUrl\":\"\",\"keywords\":[\"Arduino\",\"Arduino project\",\"Coding project\"],\"articleSection\":[\"Arduino\",\"Coding Basics\",\"Coding Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/\",\"url\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/\",\"name\":\"Decoration Series Using Arduino With LEDs | Arduino Project - RUDE LABS\",\"isPartOf\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2022-04-12T07:35:40+00:00\",\"dateModified\":\"2025-10-31T11:31:55+00:00\",\"description\":\"In this Arduino tutorial, we will learn to make a Decoration Series using Arduino Uno R3 with LEDs. We will require the following components:\",\"breadcrumb\":{\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/rudelabs.ai\/blogs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Decoration Series Using Arduino With LEDs | Arduino Project\"}]},{\"@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":"Decoration Series Using Arduino With LEDs | Arduino Project - RUDE LABS","description":"In this Arduino tutorial, we will learn to make a Decoration Series using Arduino Uno R3 with LEDs. We will require the following components:","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\/decoration-series-using-arduino-with-leds-arduino-project\/","og_locale":"en_US","og_type":"article","og_title":"Decoration Series Using Arduino With LEDs | Arduino Project - RUDE LABS","og_description":"In this Arduino tutorial, we will learn to make a Decoration Series using Arduino Uno R3 with LEDs. We will require the following components:","og_url":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/","og_site_name":"RUDE LABS","article_published_time":"2022-04-12T07:35:40+00:00","article_modified_time":"2025-10-31T11:31:55+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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#article","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/"},"author":{"name":"rudelabs.ai","@id":"https:\/\/rudelabs.ai\/blogs\/#\/schema\/person\/560bad88bae03cae99a326a46af0c894"},"headline":"Decoration Series Using Arduino With LEDs | Arduino Project","datePublished":"2022-04-12T07:35:40+00:00","dateModified":"2025-10-31T11:31:55+00:00","mainEntityOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/"},"wordCount":365,"commentCount":0,"publisher":{"@id":"https:\/\/rudelabs.ai\/blogs\/#organization"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#primaryimage"},"thumbnailUrl":"","keywords":["Arduino","Arduino project","Coding project"],"articleSection":["Arduino","Coding Basics","Coding Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/","url":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/","name":"Decoration Series Using Arduino With LEDs | Arduino Project - RUDE LABS","isPartOf":{"@id":"https:\/\/rudelabs.ai\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#primaryimage"},"image":{"@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#primaryimage"},"thumbnailUrl":"","datePublished":"2022-04-12T07:35:40+00:00","dateModified":"2025-10-31T11:31:55+00:00","description":"In this Arduino tutorial, we will learn to make a Decoration Series using Arduino Uno R3 with LEDs. We will require the following components:","breadcrumb":{"@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/rudelabs.ai\/blogs\/decoration-series-using-arduino-with-leds-arduino-project\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rudelabs.ai\/blogs\/"},{"@type":"ListItem","position":2,"name":"Decoration Series Using Arduino With LEDs | Arduino Project"}]},{"@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\/6319","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=6319"}],"version-history":[{"count":2,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/6319\/revisions"}],"predecessor-version":[{"id":18380,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/posts\/6319\/revisions\/18380"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/media?parent=6319"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/categories?post=6319"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rudelabs.ai\/blogs\/wp-json\/wp\/v2\/tags?post=6319"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}