{"id":3901,"date":"2026-03-31T13:30:00","date_gmt":"2026-03-31T13:30:00","guid":{"rendered":"https:\/\/pirhome.com\/?p=3901"},"modified":"2026-03-31T13:30:00","modified_gmt":"2026-03-31T13:30:00","slug":"diy-automatic-staircase-lighting","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3901","title":{"rendered":"DIY Automatic Staircase Lighting with PIR Sensor"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates an automatic staircase lighting system that turns on LED strip lights when someone approaches the stairs and turns them off after a set delay. Perfect for improving safety on stairs at night while saving energy.<\/p>\n<p><strong>Difficulty:<\/strong> Beginner<br \/>\n<strong>Estimated time:<\/strong> 2-3 hours<br \/>\n<strong>Estimated cost:<\/strong> $25-35<\/p>\n<h2>How It Works<\/h2>\n<p>The system uses two PIR sensors placed at the top and bottom of the stairs. When a sensor detects motion, it triggers the LED strip to turn on. A microcontroller tracks which direction the person is moving and can optionally light only the relevant portion of the stairs. The lights turn off after a set period of no motion.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>Arduino Uno<\/strong> or <strong>ESP32<\/strong> (1)<\/li>\n<li><strong>HC-SR501 PIR sensors<\/strong> (2) \u2013 one for top, one for bottom<\/li>\n<li><strong>LED strip<\/strong> (5V or 12V, length to match your stairs) \u2013 WS2812B addressable or simple RGB strip<\/li>\n<li><strong>MOSFET or relay module<\/strong> (if using 12V LED strip)<\/li>\n<li><strong>5V\/12V power supply<\/strong> (depending on LED strip voltage)<\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<li><strong>Project enclosure<\/strong> for Arduino (optional)<\/li>\n<li><strong>Mounting brackets or adhesive tape<\/strong> for sensors and LED strip<\/li>\n<\/ul>\n<h2>Circuit Diagram<\/h2>\n<h3>Connection Table (Arduino Uno)<\/h3>\n<table border=\"1\">\n<thead>\n<tr>\n<th>Component<\/th>\n<th>Pin<\/th>\n<th>Arduino Pin<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Top PIR<\/td>\n<td>VCC<\/td>\n<td>5V<\/td>\n<\/tr>\n<tr>\n<td>Top PIR<\/td>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<tr>\n<td>Top PIR<\/td>\n<td>OUT<\/td>\n<td>Digital Pin 2<\/td>\n<\/tr>\n<tr>\n<td>Bottom PIR<\/td>\n<td>VCC<\/td>\n<td>5V<\/td>\n<\/tr>\n<tr>\n<td>Bottom PIR<\/td>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<tr>\n<td>Bottom PIR<\/td>\n<td>OUT<\/td>\n<td>Digital Pin 3<\/td>\n<\/tr>\n<tr>\n<td>LED Strip (5V)<\/td>\n<td>VCC<\/td>\n<td>5V (or external supply)<\/td>\n<\/tr>\n<tr>\n<td>LED Strip (5V)<\/td>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<tr>\n<td>LED Strip (5V)<\/td>\n<td>DATA<\/td>\n<td>Digital Pin 6 (for addressable)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Wiring Notes<\/h3>\n<p>If using a 12V LED strip, connect it to an external 12V power supply and use a MOSFET or relay module to switch it on\/off. The MOSFET gate connects to an Arduino digital pin.<\/p>\n<h2>Arduino Code<\/h2>\n<pre><code>\/\/ Automatic Staircase Lighting with PIR Sensors\n\/\/ Uses two PIR sensors at top and bottom of stairs\n\nconst int topPIR = 2;\nconst int bottomPIR = 3;\nconst int ledPin = 6;        \/\/ For simple LED strip control\n\/\/ For addressable LEDs, include the FastLED library\n\nunsigned long lastMotionTime = 0;\nconst unsigned long lightTimeout = 10000; \/\/ 10 seconds\n\nbool lightsOn = false;\n\nvoid setup() {\n  pinMode(topPIR, INPUT);\n  pinMode(bottomPIR, INPUT);\n  pinMode(ledPin, OUTPUT);\n  digitalWrite(ledPin, LOW);\n  \n  Serial.begin(9600);\n  Serial.println(\"Staircase Lighting System Ready\");\n  Serial.println(\"Waiting 60 seconds for sensor warm-up...\");\n  delay(60000);  \/\/ Allow sensors to stabilize\n}\n\nvoid loop() {\n  bool topDetected = digitalRead(topPIR) == HIGH;\n  bool bottomDetected = digitalRead(bottomPIR) == HIGH;\n  \n  if (topDetected || bottomDetected) {\n    \/\/ Motion detected - turn on lights and reset timer\n    if (!lightsOn) {\n      digitalWrite(ledPin, HIGH);\n      lightsOn = true;\n      Serial.println(\"Lights ON\");\n    }\n    lastMotionTime = millis();\n    \n    \/\/ Optional: print direction\n    if (topDetected && !bottomDetected) {\n      Serial.println(\"Motion at TOP of stairs\");\n    } else if (bottomDetected && !topDetected) {\n      Serial.println(\"Motion at BOTTOM of stairs\");\n    } else if (topDetected && bottomDetected) {\n      Serial.println(\"Motion at BOTH ends\");\n    }\n  }\n  \n  \/\/ Check if lights should turn off\n  if (lightsOn && (millis() - lastMotionTime > lightTimeout)) {\n    digitalWrite(ledPin, LOW);\n    lightsOn = false;\n    Serial.println(\"Lights OFF\");\n  }\n  \n  delay(100);  \/\/ Small delay to debounce\n}\n<\/code><\/pre>\n<h2>Code for Addressable LED Strips (WS2812B)<\/h2>\n<pre><code>#include &lt;FastLED.h&gt;\n\n#define LED_PIN     6\n#define NUM_LEDS    20  \/\/ Change to match your strip length\n#define BRIGHTNESS  64\n#define LED_TYPE    WS2812B\n#define COLOR_ORDER GRB\n\nCRGB leds[NUM_LEDS];\n\nconst int topPIR = 2;\nconst int bottomPIR = 3;\n\nunsigned long lastMotionTime = 0;\nconst unsigned long lightTimeout = 10000;\nbool lightsOn = false;\n\nvoid setup() {\n  FastLED.addLeds&lt;LED_TYPE, LED_PIN, COLOR_ORDER&gt;(leds, NUM_LEDS);\n  FastLED.setBrightness(BRIGHTNESS);\n  \n  pinMode(topPIR, INPUT);\n  pinMode(bottomPIR, INPUT);\n  \n  \/\/ Turn off all LEDs\n  FastLED.clear();\n  FastLED.show();\n  \n  Serial.begin(9600);\n  delay(60000);  \/\/ Sensor warm-up\n}\n\nvoid setLightColor(int startLED, int endLED, CRGB color) {\n  for (int i = startLED; i &lt;= endLED; i++) {\n    leds[i] = color;\n  }\n  FastLED.show();\n}\n\nvoid loop() {\n  bool topDetected = digitalRead(topPIR) == HIGH;\n  bool bottomDetected = digitalRead(bottomPIR) == HIGH;\n  \n  if (topDetected || bottomDetected) {\n    if (!lightsOn) {\n      \/\/ Turn on all LEDs\n      setLightColor(0, NUM_LEDS-1, CRGB::White);\n      lightsOn = true;\n    }\n    lastMotionTime = millis();\n  }\n  \n  if (lightsOn && (millis() - lastMotionTime > lightTimeout)) {\n    \/\/ Fade out effect\n    for (int b = BRIGHTNESS; b > 0; b -= 5) {\n      FastLED.setBrightness(b);\n      FastLED.show();\n      delay(30);\n    }\n    FastLED.setBrightness(BRIGHTNESS);\n    FastLED.clear();\n    FastLED.show();\n    lightsOn = false;\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Mount the sensors:<\/strong> Place one PIR sensor at the top of the stairs and one at the bottom. Mount them at 1.5-2m height, angled to cover the stair approach area.<\/li>\n<li><strong>Install LED strip:<\/strong> Attach the LED strip along the stair stringer, under the handrail, or along the stair treads. For best effect, mount under the handrail so light illuminates the steps without glare.<\/li>\n<li><strong>Run wiring:<\/strong> Connect sensors to the Arduino using 3-conductor cable. For long runs, use thicker wire (22 AWG or larger) to prevent voltage drop.<\/li>\n<li><strong>Power supply:<\/strong> Place the Arduino and power supply in a weatherproof enclosure near a power outlet. Ensure the power supply can handle the LED strip current (calculate: 60mA per LED for WS2812B).<\/li>\n<li><strong>Upload code:<\/strong> Connect Arduino to computer, upload the code, and test sensor function.<\/li>\n<li><strong>Adjust settings:<\/strong> Modify <code>lightTimeout<\/code> to change how long lights stay on. Adjust sensitivity pots on PIR sensors as needed.<\/li>\n<\/ol>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>Sensor not detecting:<\/strong> Check wiring and ensure 60-second warm-up has completed. Adjust sensitivity potentiometer clockwise to increase range.<\/li>\n<li><strong>False triggers:<\/strong> Ensure sensors aren&#8217;t facing heat sources (vents, windows). Reduce sensitivity or add a 0.1\u00b5F capacitor across VCC and GND near each sensor.<\/li>\n<li><strong>Lights flickering:<\/strong> Power supply may be inadequate for LED strip current. Use a higher-rated power supply or reduce brightness in code.<\/li>\n<li><strong>Sensor detects too far:<\/strong> Adjust sensitivity potentiometer counter-clockwise to reduce range.<\/li>\n<\/ul>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Directional lighting:<\/strong> Light only the steps from the sensor that detected motion. This requires addressable LEDs and tracking which sensor triggered.<\/li>\n<li><strong>Color temperature adjustment:<\/strong> Use warm white (2700K) at night, cooler white during the day using a real-time clock module.<\/li>\n<li><strong>Smart home integration:<\/strong> Use an ESP32 instead of Arduino and integrate with Home Assistant or Alexa for remote control and scheduling.<\/li>\n<li><strong>Music synchronization:<\/strong> Add a microphone module to make lights respond to music (great for parties).<\/li>\n<li><strong>Motion-activated music:<\/strong> Add a DFPlayer Mini module to play a welcome message or music when motion is detected.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This automatic staircase lighting project improves safety and adds a modern touch to your home. The system can be installed in a weekend and customized to match your home&#8217;s decor. With proper installation, it will provide years of reliable service.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates an automatic staircase lighting system that turns on LED strip lights when someone approaches the stairs and turns them off after a set delay. Perfect for improving safety on stairs at night while saving energy. Difficulty: Beginner Estimated time: 2-3 hours Estimated cost: $25-35 How It Works The system uses [&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-3901","post","type-post","status-publish","format-standard","hentry","category-projects"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\r\n<title>DIY Automatic Staircase Lighting with PIR Sensor - 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=\"http:\/\/www.pirhome.com\/?p=3901\" \/>\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 Automatic Staircase Lighting with PIR Sensor - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates an automatic staircase lighting system that turns on LED strip lights when someone approaches the stairs and turns them off after a set delay. Perfect for improving safety on stairs at night while saving energy. Difficulty: Beginner Estimated time: 2-3 hours Estimated cost: $25-35 How It Works The system uses [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"http:\/\/www.pirhome.com\/?p=3901\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-03-31T13:30: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=\"5 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3901#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3901\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"DIY Automatic Staircase Lighting with PIR Sensor\",\"datePublished\":\"2026-03-31T13:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3901\"},\"wordCount\":653,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#organization\"},\"articleSection\":[\"Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3901#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3901\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3901\",\"name\":\"DIY Automatic Staircase Lighting with PIR Sensor - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T13:30:00+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3901#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3901\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3901#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DIY Automatic Staircase Lighting with PIR Sensor\"}]},{\"@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 Automatic Staircase Lighting with PIR Sensor - 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":"http:\/\/www.pirhome.com\/?p=3901","og_locale":"en_US","og_type":"article","og_title":"DIY Automatic Staircase Lighting with PIR Sensor - PIRHOME","og_description":"Project Overview This project creates an automatic staircase lighting system that turns on LED strip lights when someone approaches the stairs and turns them off after a set delay. Perfect for improving safety on stairs at night while saving energy. Difficulty: Beginner Estimated time: 2-3 hours Estimated cost: $25-35 How It Works The system uses [&hellip;]","og_url":"http:\/\/www.pirhome.com\/?p=3901","og_site_name":"PIRHOME","article_published_time":"2026-03-31T13:30:00+00:00","author":"nic@nicsky.com","twitter_card":"summary_large_image","twitter_misc":{"Written by":"nic@nicsky.com","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/www.pirhome.com\/?p=3901#article","isPartOf":{"@id":"http:\/\/www.pirhome.com\/?p=3901"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"DIY Automatic Staircase Lighting with PIR Sensor","datePublished":"2026-03-31T13:30:00+00:00","mainEntityOfPage":{"@id":"http:\/\/www.pirhome.com\/?p=3901"},"wordCount":653,"commentCount":0,"publisher":{"@id":"http:\/\/www.pirhome.com\/#organization"},"articleSection":["Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/www.pirhome.com\/?p=3901#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.pirhome.com\/?p=3901","url":"http:\/\/www.pirhome.com\/?p=3901","name":"DIY Automatic Staircase Lighting with PIR Sensor - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T13:30:00+00:00","breadcrumb":{"@id":"http:\/\/www.pirhome.com\/?p=3901#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.pirhome.com\/?p=3901"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.pirhome.com\/?p=3901#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"DIY Automatic Staircase Lighting with PIR Sensor"}]},{"@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\/3901","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=3901"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3901\/revisions"}],"predecessor-version":[{"id":4062,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3901\/revisions\/4062"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3901"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3901"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3901"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}