{"id":3926,"date":"2026-03-31T01:57:23","date_gmt":"2026-03-31T05:57:23","guid":{"rendered":"https:\/\/pirhome.com\/?p=3922"},"modified":"2026-03-31T01:57:23","modified_gmt":"2026-03-31T05:57:23","slug":"pir-driveway-alert-system","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3926","title":{"rendered":"PIR Sensor for Driveway Alert System"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a driveway alert system that detects vehicles or people approaching your property and sends a notification to a receiver inside your home. It&#8217;s perfect for long driveways, rural properties, or anywhere you want to know when someone arrives.<\/p>\n<p><strong>Difficulty:<\/strong> Intermediate<br \/>\n<strong>Estimated time:<\/strong> 2-3 hours<br \/>\n<strong>Estimated cost:<\/strong> $40-60<\/p>\n<h2>How It Works<\/h2>\n<p>A weatherproof PIR sensor is placed at the driveway entrance. When a vehicle or person passes by, it sends a wireless signal to a receiver unit inside the house. The receiver can play a chime, flash an LED, or send a notification to your phone. For long driveways (up to 100m), LoRa or ESP-NOW is used; for shorter distances, 433MHz RF modules work well.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>ESP32 or Arduino<\/strong> (2) \u2013 one for transmitter, one for receiver<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1) \u2013 outdoor version or weatherproof enclosure<\/li>\n<li><strong>LoRa modules<\/strong> (RAK811, Heltec) or <strong>NRF24L01<\/strong> for wireless communication<\/li>\n<li><strong>Buzzer or speaker<\/strong> (for audible alert)<\/li>\n<li><strong>LEDs<\/strong> (for visual alert)<\/li>\n<li><strong>Battery pack<\/strong> (for remote transmitter)<\/li>\n<li><strong>Solar panel and charger<\/strong> (optional, for long-term deployment)<\/li>\n<li><strong>Weatherproof enclosure<\/strong> (for transmitter)<\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<\/ul>\n<h2>System Architecture<\/h2>\n<pre>\n[Driveway Sensor] ---Wireless (LoRa\/NRF24L01)---> [House Receiver]\n     |                                                    |\n  PIR Sensor                                         Buzzer\/LED\n  Battery\/Solar                                          Display\n<\/pre>\n<h2>Circuit Diagram<\/h2>\n<h3>Transmitter Unit<\/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<td>VCC<\/th>\n<td>5V<\/th>\n<th>PIR Sensor<\/th>\n<td>GND<\/th>\n<td>GND<\/th>\n<th>PIR Sensor<\/th>\n<td>OUT<\/th>\n<td>Digital Pin 2<\/th>\n<th>LoRa\/NRF24L01<\/th>\n<td>VCC<\/th>\n<td>3.3V<\/th>\n<th>LoRa\/NRF24L01<\/th>\n<td>GND<\/th>\n<td>GND<\/th>\n<th>LoRa\/NRF24L01<\/th>\n<td>CS\/CE<\/th>\n<p> \u7b49\u65b9\u9762Digital Pins<\/th>\n<\/tbody>\n<p>\u8868<\/p>\n<h2>Transmitter Code (ESP32 with LoRa)<\/h2>\n<pre><code>\/\/ Driveway Alert Transmitter\n#include &lt;SPI.h&gt;\n#include &lt;LoRa.h&gt;\n\nconst int pirPin = 2;\nconst int csPin = 5;\nconst int rstPin = 14;\nconst int dio0Pin = 2;\n\nunsigned long lastSendTime = 0;\nconst unsigned long sendCooldown = 30000; \/\/ 30 seconds between alerts\n\nvoid setup() {\n  Serial.begin(115200);\n  pinMode(pirPin, INPUT);\n  \n  LoRa.setPins(csPin, rstPin, dio0Pin);\n  if (!LoRa.begin(915E6)) { \/\/ Use 868E6 for Europe, 915E6 for US\n    Serial.println(\"LoRa init failed\");\n    while (1);\n  }\n  \n  Serial.println(\"Driveway Transmitter Ready\");\n  delay(60000); \/\/ PIR warm-up\n}\n\nvoid sendAlert() {\n  LoRa.beginPacket();\n  LoRa.print(\"MOTION\");\n  LoRa.print(\",\");\n  LoRa.print(millis());\n  LoRa.endPacket();\n  Serial.println(\"Alert sent\");\n}\n\nvoid loop() {\n  bool motion = digitalRead(pirPin) == HIGH;\n  \n  if (motion && (millis() - lastSendTime > sendCooldown)) {\n    lastSendTime = millis();\n    sendAlert();\n    delay(2000); \/\/ Wait for transmission\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Receiver Code (ESP32 with LoRa and Display)<\/h2>\n<pre><code>\/\/ Driveway Alert Receiver\n#include &lt;SPI.h&gt;\n#include &lt;LoRa.h&gt;\n#include &lt;Wire.h&gt;\n#include &lt;LiquidCrystal_I2C.h&gt;\n\nLiquidCrystal_I2C lcd(0x27, 16, 2);\n\nconst int csPin = 5;\nconst int rstPin = 14;\nconst int dio0Pin = 2;\nconst int buzzerPin = 4;\nconst int ledPin = 13;\n\nint alertCount = 0;\nunsigned long lastAlertTime = 0;\nconst unsigned long alertDuration = 5000; \/\/ 5 seconds\n\nvoid setup() {\n  Serial.begin(115200);\n  pinMode(buzzerPin, OUTPUT);\n  pinMode(ledPin, OUTPUT);\n  digitalWrite(buzzerPin, LOW);\n  digitalWrite(ledPin, LOW);\n  \n  lcd.init();\n  lcd.backlight();\n  lcd.setCursor(0, 0);\n  lcd.print(\"Driveway Monitor\");\n  lcd.setCursor(0, 1);\n  lcd.print(\"Ready\");\n  \n  LoRa.setPins(csPin, rstPin, dio0Pin);\n  if (!LoRa.begin(915E6)) {\n    lcd.clear();\n    lcd.print(\"LoRa init failed\");\n    while (1);\n  }\n  \n  Serial.println(\"Receiver Ready\");\n}\n\nvoid triggerAlert() {\n  alertCount++;\n  lastAlertTime = millis();\n  \n  digitalWrite(ledPin, HIGH);\n  tone(buzzerPin, 2000, 500);\n  \n  lcd.clear();\n  lcd.setCursor(0, 0);\n  lcd.print(\"Vehicle detected!\");\n  lcd.setCursor(0, 1);\n  lcd.print(\"Count: \");\n  lcd.print(alertCount);\n  \n  Serial.printf(\"Alert #%d\\n\", alertCount);\n}\n\nvoid loop() {\n  int packetSize = LoRa.parsePacket();\n  if (packetSize) {\n    String message = \"\";\n    while (LoRa.available()) {\n      message += (char)LoRa.read();\n    }\n    if (message.startsWith(\"MOTION\")) {\n      triggerAlert();\n    }\n  }\n  \n  if (millis() - lastAlertTime > alertDuration && digitalRead(ledPin) == HIGH) {\n    digitalWrite(ledPin, LOW);\n    lcd.clear();\n    lcd.setCursor(0, 0);\n    lcd.print(\"System Ready\");\n    lcd.setCursor(0, 1);\n    lcd.print(\"Total alerts: \");\n    lcd.print(alertCount);\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Alternative: NRF24L01 Version (Shorter Range)<\/h2>\n<p>For shorter driveways (up to 100m), use NRF24L01 modules:<\/p>\n<pre><code>#include &lt;SPI.h&gt;\n#include &lt;nRF24L01.h&gt;\n#include &lt;RF24.h&gt;\n\nRF24 radio(7, 8); \/\/ CE, CSN\nconst byte address[6] = \"00001\";\n\nvoid setup() {\n  radio.begin();\n  radio.openWritingPipe(address);\n  radio.setPALevel(RF24_PA_MAX);\n  radio.stopListening();\n}\n\nvoid sendAlert() {\n  const char text[] = \"MOTION\";\n  radio.write(&text, sizeof(text));\n}\n<\/code><\/pre>\n<h2>Solar Power for Transmitter<\/h2>\n<p>For remote driveway sensors, add solar charging:<\/p>\n<ul>\n<li>5V solar panel (5-10W)<\/li>\n<li>TP4056 charging module<\/li>\n<li>18650 lithium battery (2000-3000mAh)<\/li>\n<li>Boost converter to 5V (if needed)<\/li>\n<\/ul>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Assemble transmitter:<\/strong> Place PIR sensor and ESP32 in weatherproof enclosure.<\/li>\n<li><strong>Position sensor:<\/strong> Mount at driveway entrance, 1.5-2m high, angled to detect vehicles.<\/li>\n<li><strong>Test range:<\/strong> Verify wireless communication between transmitter and receiver.<\/li>\n<li><strong>Assemble receiver:<\/strong> Place receiver unit inside house with buzzer\/LED visible.<\/li>\n<li><strong>Power up:<\/strong> Connect batteries or solar panel to transmitter.<\/li>\n<li><strong>Final test:<\/strong> Drive vehicle up driveway, verify alert.<\/li>\n<\/ol>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Vehicle vs. person detection:<\/strong> Use dual sensors to distinguish between vehicles and pedestrians.<\/li>\n<li><strong>Direction detection:<\/strong> Add second sensor to detect arrival vs. departure.<\/li>\n<li><strong>Camera integration:<\/strong> Add ESP32-CAM to capture images when motion detected.<\/li>\n<li><strong>SMS alerts:<\/strong> Add GSM module to send text messages.<\/li>\n<li><strong>Gate control:<\/strong> Add relay to automatically open gate when vehicle approaches.<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>No signal:<\/strong> Check antenna connection. Reduce distance. Try different channel.<\/li>\n<li><strong>False alerts:<\/strong> Adjust PIR sensitivity. Avoid facing road traffic. Add cooldown timer.<\/li>\n<li><strong>Battery drains quickly:<\/strong> Use deep sleep mode. Reduce transmit frequency.<\/li>\n<li><strong>Receiver not responding:<\/strong> Check power supply. Verify LoRa initialization.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This driveway alert system provides early warning of visitors, packages, or intruders. With wireless communication, it&#8217;s easy to install even on long driveways.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a driveway alert system that detects vehicles or people approaching your property and sends a notification to a receiver inside your home. It&#8217;s perfect for long driveways, rural properties, or anywhere you want to know when someone arrives. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $40-60 How It Works [&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-3926","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>PIR Sensor for Driveway Alert System - 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=3926\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"PIR Sensor for Driveway Alert System - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a driveway alert system that detects vehicles or people approaching your property and sends a notification to a receiver inside your home. It&#8217;s perfect for long driveways, rural properties, or anywhere you want to know when someone arrives. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $40-60 How It Works [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"http:\/\/www.pirhome.com\/?p=3926\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-03-31T05:57:23+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=\"4 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=3926#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3926\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor for Driveway Alert System\",\"datePublished\":\"2026-03-31T05:57:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3926\"},\"wordCount\":464,\"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=3926#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3926\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3926\",\"name\":\"PIR Sensor for Driveway Alert System - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T05:57:23+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3926#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3926\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3926#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor for Driveway Alert System\"}]},{\"@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":"PIR Sensor for Driveway Alert System - 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=3926","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor for Driveway Alert System - PIRHOME","og_description":"Project Overview This project creates a driveway alert system that detects vehicles or people approaching your property and sends a notification to a receiver inside your home. It&#8217;s perfect for long driveways, rural properties, or anywhere you want to know when someone arrives. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $40-60 How It Works [&hellip;]","og_url":"http:\/\/www.pirhome.com\/?p=3926","og_site_name":"PIRHOME","article_published_time":"2026-03-31T05:57:23+00:00","author":"nic@nicsky.com","twitter_card":"summary_large_image","twitter_misc":{"Written by":"nic@nicsky.com","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/www.pirhome.com\/?p=3926#article","isPartOf":{"@id":"http:\/\/www.pirhome.com\/?p=3926"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor for Driveway Alert System","datePublished":"2026-03-31T05:57:23+00:00","mainEntityOfPage":{"@id":"http:\/\/www.pirhome.com\/?p=3926"},"wordCount":464,"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=3926#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.pirhome.com\/?p=3926","url":"http:\/\/www.pirhome.com\/?p=3926","name":"PIR Sensor for Driveway Alert System - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T05:57:23+00:00","breadcrumb":{"@id":"http:\/\/www.pirhome.com\/?p=3926#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.pirhome.com\/?p=3926"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.pirhome.com\/?p=3926#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor for Driveway Alert System"}]},{"@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\/3926","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=3926"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3926\/revisions"}],"predecessor-version":[{"id":4031,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3926\/revisions\/4031"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3926"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3926"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3926"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}