{"id":3906,"date":"2026-04-10T09:00:00","date_gmt":"2026-04-10T09:00:00","guid":{"rendered":"https:\/\/pirhome.com\/?p=3906"},"modified":"2026-04-10T09:00:00","modified_gmt":"2026-04-10T09:00:00","slug":"diy-pir-night-light-auto-dimming","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3906","title":{"rendered":"DIY PIR Night Light with Auto Dimming"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a smart night light that turns on when motion is detected and gradually dims over time. The light uses an RGB LED or LED strip and features smooth fade-out effects, making it perfect for bedrooms, hallways, and children&#8217;s rooms.<\/p>\n<p><strong>Difficulty:<\/strong> Beginner<br \/>\n<strong>Estimated time:<\/strong> 1-2 hours<br \/>\n<strong>Estimated cost:<\/strong> $15-25<\/p>\n<h2>How It Works<\/h2>\n<p>A PIR sensor detects motion. When motion is detected, the LED turns on at full brightness. After a set period without motion, the light gradually dims over several seconds rather than turning off abruptly. An optional ambient light sensor (LDR) can be added so the light only activates when it is dark enough.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li>Arduino Nano or Arduino Uno (1)<\/li>\n<li>HC-SR501 PIR sensor (1)<\/li>\n<li>RGB LED (common cathode) or WS2812B LED strip (3-5 LEDs)<\/li>\n<li>LDR photoresistor (optional)<\/li>\n<li>10k\u03a9 resistor (for LDR voltage divider)<\/li>\n<li>220\u03a9 resistors (3 for RGB LED)<\/li>\n<li>Project enclosure<\/li>\n<li>Jumper wires<\/li>\n<li>USB power supply (5V 1A)<\/li>\n<\/ul>\n<h2>Circuit Diagram<\/h2>\n<h3>Connection Table (RGB LED Version)<\/h3>\n<table border=\"1\">\n<thead>\n<th>Component<\/th>\n<th>Pin<\/th>\n<th>Arduino Pin<\/th>\n<\/thead>\n<tbody>\n<th>PIR Sensor<\/th>\n<p> VCC<\/th>\n<p> 5V<\/th>\n<th>PIR Sensor<\/th>\n<p> GND<\/th>\n<p> GND<\/th>\n<th>PIR Sensor<\/th>\n<p> OUT<\/th>\n<p> Digital Pin 2<\/th>\n<th>RGB LED (Red)<\/th>\n<p> Anode<\/th>\n<p> Digital Pin 9 (via 220\u03a9)<\/th>\n<th>RGB LED (Green)<\/th>\n<p> Anode<\/th>\n<p> Digital Pin 10 (via 220\u03a9)<\/th>\n<th>RGB LED (Blue)<\/th>\n<p> Anode<\/th>\n<p> Digital Pin 11 (via 220\u03a9)<\/th>\n<th>RGB LED<\/th>\n<p> Cathode<\/th>\n<p> GND<\/th>\n<th>LDR<\/th>\n<p> One leg<\/th>\n<p> 5V<\/th>\n<th>LDR<\/th>\n<p> Other leg<\/th>\n<p> Analog Pin A0 and 10k\u03a9 to GND<\/th>\n<\/tbody>\n<p>\u8868<\/p>\n<h2>Arduino Code<\/h2>\n<pre><code>\/\/ PIR Night Light with Auto Dimming\n\nconst int pirPin = 2;\nconst int redPin = 9;\nconst int greenPin = 10;\nconst int bluePin = 11;\nconst int ldrPin = A0;\n\nint redValue = 255;\nint greenValue = 180;\nint blueValue = 100;\n\nunsigned long lastMotionTime = 0;\nconst unsigned long holdTime = 30000;\nconst unsigned long fadeDuration = 5000;\n\nbool lightsOn = false;\nint currentBrightness = 0;\nunsigned long fadeStartTime = 0;\n\nvoid setup() {\n  Serial.begin(9600);\n  \n  pinMode(pirPin, INPUT);\n  pinMode(redPin, OUTPUT);\n  pinMode(greenPin, OUTPUT);\n  pinMode(bluePin, OUTPUT);\n  \n  setBrightness(0);\n  \n  Serial.println(\"Night Light Ready\");\n  delay(60000);\n}\n\nvoid setColor(int r, int g, int b) {\n  analogWrite(redPin, r);\n  analogWrite(greenPin, g);\n  analogWrite(bluePin, b);\n}\n\nvoid setBrightness(int percent) {\n  int r = map(percent, 0, 100, 0, redValue);\n  int g = map(percent, 0, 100, 0, greenValue);\n  int b = map(percent, 0, 100, 0, blueValue);\n  setColor(r, g, b);\n  currentBrightness = percent;\n}\n\nbool isDark() {\n  int ldrValue = analogRead(ldrPin);\n  return ldrValue < 500;\n}\n\nvoid fadeOut() {\n  unsigned long elapsed = millis() - fadeStartTime;\n  if (elapsed >= fadeDuration) {\n    setBrightness(0);\n    lightsOn = false;\n  } else {\n    int brightness = 100 - (elapsed * 100 \/ fadeDuration);\n    setBrightness(brightness);\n  }\n}\n\nvoid loop() {\n  if (!isDark() && lightsOn) {\n    setBrightness(0);\n    lightsOn = false;\n  }\n  \n  bool motionDetected = digitalRead(pirPin) == HIGH;\n  \n  if (motionDetected && isDark()) {\n    lastMotionTime = millis();\n    \n    if (!lightsOn) {\n      setBrightness(100);\n      lightsOn = true;\n    } else if (currentBrightness < 100) {\n      setBrightness(100);\n    }\n    fadeStartTime = 0;\n  }\n  \n  if (lightsOn) {\n    if (millis() - lastMotionTime > holdTime) {\n      if (fadeStartTime == 0) {\n        fadeStartTime = millis();\n      }\n      fadeOut();\n    } else {\n      fadeStartTime = 0;\n    }\n  }\n  \n  delay(50);\n}\n<\/code><\/pre>\n<h2>WS2812B LED Strip Version<\/h2>\n<pre><code>#include &lt;FastLED.h&gt;\n\n#define LED_PIN     6\n#define NUM_LEDS    5\n#define BRIGHTNESS  128\n\nCRGB leds[NUM_LEDS];\n\nconst int pirPin = 2;\nconst int ldrPin = A0;\n\nunsigned long lastMotionTime = 0;\nconst unsigned long holdTime = 30000;\nconst unsigned long fadeDuration = 5000;\n\nbool lightsOn = false;\nint currentBrightness = 0;\nunsigned long fadeStartTime = 0;\n\nvoid setup() {\n  FastLED.addLeds&lt;WS2812B, LED_PIN, GRB&gt;(leds, NUM_LEDS);\n  FastLED.setBrightness(0);\n  \n  pinMode(pirPin, INPUT);\n  \n  delay(60000);\n}\n\nvoid setBrightness(int percent) {\n  int brightness = map(percent, 0, 100, 0, BRIGHTNESS);\n  FastLED.setBrightness(brightness);\n  FastLED.show();\n  currentBrightness = percent;\n}\n\nvoid setColor(CRGB color) {\n  for (int i = 0; i < NUM_LEDS; i++) {\n    leds[i] = color;\n  }\n  FastLED.show();\n}\n\nvoid loop() {\n  int ldrValue = analogRead(ldrPin);\n  bool isDark = ldrValue < 500;\n  bool motionDetected = digitalRead(pirPin) == HIGH;\n  \n  if (motionDetected &#038;&#038; isDark) {\n    lastMotionTime = millis();\n    \n    if (!lightsOn) {\n      setColor(CRGB::White);\n      setBrightness(100);\n      lightsOn = true;\n    } else if (currentBrightness < 100) {\n      setBrightness(100);\n    }\n    fadeStartTime = 0;\n  }\n  \n  if (lightsOn) {\n    if (millis() - lastMotionTime > holdTime) {\n      if (fadeStartTime == 0) {\n        fadeStartTime = millis();\n      }\n      unsigned long elapsed = millis() - fadeStartTime;\n      if (elapsed >= fadeDuration) {\n        setBrightness(0);\n        lightsOn = false;\n      } else {\n        int brightness = 100 - (elapsed * 100 \/ fadeDuration);\n        setBrightness(brightness);\n      }\n    }\n  }\n  \n  delay(50);\n}\n<\/code><\/pre>\n<h2>Installation Steps<\/h2>\n<ol>\n<li>Assemble circuit on breadboard and test with USB power<\/li>\n<li>Upload code and adjust color values as desired<\/li>\n<li>Calibrate LDR threshold based on ambient light<\/li>\n<li>Test motion detection by walking past the sensor<\/li>\n<li>Place components in a small enclosure<\/li>\n<li>Drill holes for PIR sensor lens and LED<\/li>\n<li>Position unit at 0.5-1m height facing the area to monitor<\/li>\n<\/ol>\n<h2>Project Extensions<\/h2>\n<ul>\n<li>Use addressable LED strip for longer runs<\/li>\n<li>Add color temperature sensing to match room lighting<\/li>\n<li>Add Bluetooth module for color control from phone<\/li>\n<li>Use deep sleep to reduce power consumption during the day<\/li>\n<li>Add microphone module for sound-reactive lighting<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This smart night light provides gentle illumination when you need it and automatically fades out, making it perfect for bedrooms and hallways. The gradual dimming effect is much more pleasant than abrupt switching off.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a smart night light that turns on when motion is detected and gradually dims over time. The light uses an RGB LED or LED strip and features smooth fade-out effects, making it perfect for bedrooms, hallways, and children&#8217;s rooms. Difficulty: Beginner Estimated time: 1-2 hours Estimated cost: $15-25 How It [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[],"class_list":["post-3906","post","type-post","status-publish","format-standard","hentry","category-projects"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\r\n<title>DIY PIR Night Light with Auto Dimming - PIRHOME<\/title>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/www.pirhome.com\/?p=3906\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"DIY PIR Night Light with Auto Dimming - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a smart night light that turns on when motion is detected and gradually dims over time. The light uses an RGB LED or LED strip and features smooth fade-out effects, making it perfect for bedrooms, hallways, and children&#8217;s rooms. Difficulty: Beginner Estimated time: 1-2 hours Estimated cost: $15-25 How It [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.pirhome.com\/?p=3906\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-04-10T09:00:00+00:00\" \/>\r\n<meta name=\"author\" content=\"nic@nicsky.com\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"nic@nicsky.com\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3906#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3906\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"DIY PIR Night Light with Auto Dimming\",\"datePublished\":\"2026-04-10T09:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3906\"},\"wordCount\":364,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#organization\"},\"articleSection\":[\"Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pirhome.com\\\/?p=3906#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3906\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3906\",\"name\":\"DIY PIR Night Light with Auto Dimming - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-04-10T09:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3906#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pirhome.com\\\/?p=3906\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3906#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DIY PIR Night Light with Auto Dimming\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/\",\"name\":\"PIRHOME\",\"description\":\"PIR &amp; Motion Sensor\",\"publisher\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/www.pirhome.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#organization\",\"name\":\"PIRHOME\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg\",\"contentUrl\":\"https:\\\/\\\/www.pirhome.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg\",\"width\":512,\"height\":512,\"caption\":\"PIRHOME\"},\"image\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\",\"name\":\"nic@nicsky.com\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g\",\"caption\":\"nic@nicsky.com\"},\"sameAs\":[\"http:\\\/\\\/www.pirhome.com\"],\"url\":\"https:\\\/\\\/www.pirhome.com\\\/?author=1\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"DIY PIR Night Light with Auto Dimming - PIRHOME","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:\/\/www.pirhome.com\/?p=3906","og_locale":"en_US","og_type":"article","og_title":"DIY PIR Night Light with Auto Dimming - PIRHOME","og_description":"Project Overview This project creates a smart night light that turns on when motion is detected and gradually dims over time. The light uses an RGB LED or LED strip and features smooth fade-out effects, making it perfect for bedrooms, hallways, and children&#8217;s rooms. Difficulty: Beginner Estimated time: 1-2 hours Estimated cost: $15-25 How It [&hellip;]","og_url":"https:\/\/www.pirhome.com\/?p=3906","og_site_name":"PIRHOME","article_published_time":"2026-04-10T09:00:00+00:00","author":"nic@nicsky.com","twitter_card":"summary_large_image","twitter_misc":{"Written by":"nic@nicsky.com","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pirhome.com\/?p=3906#article","isPartOf":{"@id":"https:\/\/www.pirhome.com\/?p=3906"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"DIY PIR Night Light with Auto Dimming","datePublished":"2026-04-10T09:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pirhome.com\/?p=3906"},"wordCount":364,"commentCount":0,"publisher":{"@id":"http:\/\/www.pirhome.com\/#organization"},"articleSection":["Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pirhome.com\/?p=3906#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pirhome.com\/?p=3906","url":"https:\/\/www.pirhome.com\/?p=3906","name":"DIY PIR Night Light with Auto Dimming - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-04-10T09:00:00+00:00","breadcrumb":{"@id":"https:\/\/www.pirhome.com\/?p=3906#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pirhome.com\/?p=3906"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pirhome.com\/?p=3906#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"DIY PIR Night Light with Auto Dimming"}]},{"@type":"WebSite","@id":"http:\/\/www.pirhome.com\/#website","url":"http:\/\/www.pirhome.com\/","name":"PIRHOME","description":"PIR &amp; Motion Sensor","publisher":{"@id":"http:\/\/www.pirhome.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/www.pirhome.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/www.pirhome.com\/#organization","name":"PIRHOME","url":"http:\/\/www.pirhome.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/www.pirhome.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.pirhome.com\/wp-content\/uploads\/2026\/02\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg","contentUrl":"https:\/\/www.pirhome.com\/wp-content\/uploads\/2026\/02\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg","width":512,"height":512,"caption":"PIRHOME"},"image":{"@id":"http:\/\/www.pirhome.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3","name":"nic@nicsky.com","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/271d4eaab48e299e4fce771a8c43c537be3ac77a3115cc7de802a6c8b692d971?s=96&d=mm&r=g","caption":"nic@nicsky.com"},"sameAs":["http:\/\/www.pirhome.com"],"url":"https:\/\/www.pirhome.com\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3906","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3906"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3906\/revisions"}],"predecessor-version":[{"id":4347,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3906\/revisions\/4347"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3906"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3906"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3906"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}