{"id":3908,"date":"2026-03-31T17:00:00","date_gmt":"2026-03-31T17:00:00","guid":{"rendered":"https:\/\/pirhome.com\/?p=3907"},"modified":"2026-03-31T17:00:00","modified_gmt":"2026-03-31T17:00:00","slug":"energy-harvesting-pir-solar","status":"publish","type":"post","link":"http:\/\/www.pirhome.com\/?p=3908","title":{"rendered":"Energy Harvesting PIR Sensor with Solar Power"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a self-powered PIR motion sensor that runs entirely on solar energy. It&#8217;s ideal for remote locations where running power cables or changing batteries is impractical. The system stores energy in a supercapacitor or rechargeable battery, providing operation through the night.<\/p>\n<p><strong>Difficulty:<\/strong> Advanced<br \/>\n<strong>Estimated time:<\/strong> 4-6 hours<br \/>\n<strong>Estimated cost:<\/strong> $40-60<\/p>\n<h2>How It Works<\/h2>\n<p>A small solar panel charges a supercapacitor or lithium battery during the day. An ultra-low power PIR sensor (Excelitas PYD 2597 or Panasonic EKMB) draws only 2-6 \u00b5A, allowing continuous operation. When motion is detected, the system wakes a microcontroller to process the event and optionally transmit via low-power radio (LoRa, Zigbee, or Bluetooth).<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>Ultra-low power PIR sensor<\/strong> (Excelitas PYD 2597 or Panasonic EKMB 1\u00b5A variant)<\/li>\n<li><strong>ESP32-C3<\/strong> or <strong>nRF52840<\/strong> (low-power microcontroller)<\/li>\n<li><strong>Solar panel<\/strong> (5V, 100-200mA, 80x80mm or larger)<\/li>\n<li><strong>TP4056 charging module<\/strong> (if using Li-ion battery)<\/li>\n<li><strong>Lithium battery<\/strong> (18650 or LiPo, 1000-2000mAh) OR<\/li>\n<li><strong>Supercapacitor<\/strong> (2x 10F 2.7V in series for 5F 5.4V)<\/li>\n<li><strong>Battery protection circuit<\/strong> (if using unprotected cells)<\/li>\n<li><strong>Low-dropout regulator<\/strong> (MCP1700 or similar, 2\u00b5A quiescent)<\/li>\n<li><strong>Schottky diode<\/strong> (1N5819) for solar panel isolation<\/li>\n<li><strong>LoRa module<\/strong> (RAK811 or Heltec) or <strong>BLE module<\/strong> (optional)<\/li>\n<li><strong>Waterproof enclosure<\/strong> (IP65 rated)<\/li>\n<li><strong>Jumper wires and soldering equipment<\/strong><\/li>\n<\/ul>\n<h2>Circuit Diagram<\/h2>\n<h3>Power Management Section<\/h3>\n<pre>\nSolar Panel (+) --- Schottky Diode ---+--- TP4056 IN (if using battery)\n                                       |\n                                       +--- Supercapacitor (+) (if using cap)\n                                       |\n                                       +--- LDO (MCP1700) IN\n                                       |\nSupercapacitor\/Battery (-) ------------+--- LDO GND\n                                       |\nLDO OUT (3.3V) ------------------------+--- PIR VCC\n                                       +--- MCU VCC\n<\/pre>\n<h3>Sensor Connection<\/h3>\n<table border=\"1\">\n<thead>\n<th>Component<\/th>\n<th>Pin<\/th>\n<th>MCU Pin<\/th>\n<\/thead>\n<tbody>\n<td>PIR Sensor (PYD 2597)<\/td>\n<td>VCC<\/td>\n<td>3.3V<\/td>\n<\/tr>\n<td>PIR Sensor<\/td>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<td>PIR Sensor<\/td>\n<td>OUT<\/td>\n<td>GPIO (with pull-up resistor 10k to 3.3V)<\/td>\n<\/tr>\n<td>PIR Sensor<\/td>\n<td>WUP (wake-up)<\/td>\n<td>GPIO (interrupt pin)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Arduino Code (ESP32-C3 with Deep Sleep)<\/h2>\n<pre><code>\/\/ Energy Harvesting PIR Sensor\n\/\/ Uses ESP32-C3 with deep sleep and wake-on-interrupt\n\n#include &lt;esp_sleep.h&gt;\n\n\/\/ Pin definitions\nconst int pirPin = 4;        \/\/ PIR output\nconst int wakePin = 5;       \/\/ PIR wake-up pin (optional, if separate)\nconst int ledPin = 8;        \/\/ Status LED (optional)\n\n\/\/ Battery monitoring (voltage divider)\nconst int batteryPin = 3;    \/\/ ADC pin with voltage divider (1M + 2M)\n\nRTC_DATA_ATTR int eventCount = 0;  \/\/ Store across deep sleep\nRTC_DATA_ATTR unsigned long lastWakeTime = 0;\n\nvoid setup() {\n  Serial.begin(115200);\n  \n  pinMode(pirPin, INPUT);\n  pinMode(ledPin, OUTPUT);\n  \n  \/\/ Check why we woke up\n  esp_sleep_wakeup_cause_t wakeup_reason = esp_sleep_get_wakeup_cause();\n  \n  if (wakeup_reason == ESP_SLEEP_WAKEUP_EXT0) {\n    \/\/ Woken by PIR motion\n    Serial.println(\"Wake-up: Motion detected\");\n    \n    \/\/ Blink LED to indicate detection\n    digitalWrite(ledPin, HIGH);\n    delay(500);\n    digitalWrite(ledPin, LOW);\n    \n    \/\/ Increment event counter\n    eventCount++;\n    \n    \/\/ Send notification (if radio available)\n    sendNotification();\n    \n    \/\/ Record wake time\n    lastWakeTime = millis();\n    \n  } else if (wakeup_reason == ESP_SLEEP_WAKEUP_TIMER) {\n    \/\/ Periodic wake-up for battery reporting\n    Serial.println(\"Wake-up: Timer (battery check)\");\n    reportBattery();\n  }\n  \n  \/\/ Go back to sleep\n  goToSleep();\n}\n\nvoid sendNotification() {\n  \/\/ If using LoRa, send packet here\n  \/\/ If using BLE, advertise connection\n  \n  Serial.print(\"Motion detected! Total events: \");\n  Serial.println(eventCount);\n  \n  \/\/ Simulate transmission (actual implementation depends on radio module)\n  \/\/ This would normally take 50-200ms\n  delay(100);\n}\n\nvoid reportBattery() {\n  \/\/ Read battery voltage through voltage divider\n  \/\/ Assuming 1M + 2M divider: Vbat = Vread * (1M+2M)\/2M = Vread * 1.5\n  int raw = analogRead(batteryPin);\n  float voltage = (raw \/ 4095.0) * 3.3 * 1.5;  \/\/ 3.3V reference, 1.5x divider factor\n  \n  Serial.print(\"Battery voltage: \");\n  Serial.println(voltage);\n  \n  \/\/ Could send via LoRa here\n}\n\nvoid goToSleep() {\n  Serial.println(\"Entering deep sleep...\");\n  delay(100);\n  \n  \/\/ Configure wake-up on PIR interrupt (HIGH level)\n  esp_sleep_enable_ext0_wakeup((gpio_num_t)pirPin, 1);  \/\/ Wake on HIGH\n  \n  \/\/ Also wake every 24 hours to report battery\n  esp_sleep_enable_timer_wakeup(24 * 60 * 60 * 1000000ULL);  \/\/ 24 hours in microseconds\n  \n  \/\/ Deep sleep\n  esp_deep_sleep_start();\n}\n\nvoid loop() {\n  \/\/ Not used - all code in setup()\n}\n<\/code><\/pre>\n<h2>Power Budget Calculation<\/h2>\n<p><strong>Component power consumption:<\/strong><\/p>\n<ul>\n<li>PIR sensor (PYD 2597): 2 \u00b5A<\/li>\n<li>ESP32-C3 deep sleep: 5 \u00b5A (with RTC)<\/li>\n<li>LDO (MCP1700): 2 \u00b5A<\/li>\n<li><strong>Total standby current:<\/strong> 9 \u00b5A<\/li>\n<li><strong>Active current (during event):<\/strong> 15-30 mA for 0.5 seconds<\/li>\n<li><strong>Daily energy consumption:<\/strong> 9 \u00b5A \u00d7 24h = 0.216 mAh + events<\/li>\n<\/ul>\n<p><strong>With 10 events\/day:<\/strong> 0.216 mAh + (15 mA \u00d7 0.5s \u00d7 10 \/ 3600) = 0.216 + 0.021 = 0.237 mAh\/day<\/p>\n<p><strong>With 1000 mAh battery:<\/strong> 1000 \/ 0.237 \u2248 4,200 days \u2248 11.5 years!<\/p>\n<p>But battery self-discharge limits practical life to 2-3 years. Solar charging extends indefinitely.<\/p>\n<h2>Solar Panel Sizing<\/h2>\n<p>For continuous operation without battery, you need enough solar power to cover daily consumption:<\/p>\n<ul>\n<li>Daily consumption: 0.237 mAh \u00d7 3.3V = 0.78 mWh<\/li>\n<li>Solar panel (80x80mm) in full sun: 100 mW<\/li>\n<li>Even on cloudy days (10% output): 10 mW, still more than enough<\/li>\n<\/ul>\n<p>A 50x50mm solar panel is sufficient for most locations.<\/p>\n<h2>Enclosure Design<\/h2>\n<ol>\n<li>Choose weatherproof enclosure (IP65 or IP67).<\/li>\n<li>Mount solar panel on top or side with clear window or external mounting.<\/li>\n<li>Drill hole for PIR sensor lens (use silicone sealant around edges).<\/li>\n<li>Place circuit board inside with desiccant pack to prevent condensation.<\/li>\n<li>Use outdoor-rated cable if sensors are separate from main unit.<\/li>\n<\/ol>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Assemble power management circuit:<\/strong> Build on PCB or protoboard. Test with bench supply before adding solar panel.<\/li>\n<li><strong>Program ESP32:<\/strong> Upload code and test with motion detection.<\/li>\n<li><strong>Test power consumption:<\/strong> Measure standby current to verify it&#8217;s under 10 \u00b5A.<\/li>\n<li><strong>Mount components:<\/strong> Secure board and battery in enclosure.<\/li>\n<li><strong>Install solar panel:<\/strong> Place panel facing south (northern hemisphere) at optimal angle for your latitude.<\/li>\n<li><strong>Deploy in field:<\/strong> Mount unit at desired location, test for 24 hours.<\/li>\n<\/ol>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>LoRa gateway:<\/strong> Add LoRa radio to transmit motion events to a central receiver for wide-area monitoring.<\/li>\n<li><strong>Temperature sensor:<\/strong> Add DS18B20 to report ambient temperature with periodic wake-ups.<\/li>\n<li><strong>MQTT integration:<\/strong> Use ESP32&#8217;s Wi-Fi (if available) to send data to Home Assistant.<\/li>\n<li><strong>Multiple sensors:<\/strong> Create a network of solar-powered sensors for perimeter security.<\/li>\n<li><strong>Wildlife camera trigger:<\/strong> Use PIR to wake a camera for wildlife photography.<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>Sensor not waking ESP32:<\/strong> Check pull-up resistor on PIR output. Ensure interrupt pin is configured correctly.<\/li>\n<li><strong>Battery not charging:<\/strong> Verify solar panel voltage (>5V) and check Schottky diode orientation.<\/li>\n<li><strong>High standby current:<\/strong> Remove unnecessary components (status LEDs, voltage dividers with low resistance).<\/li>\n<li><strong>False wake-ups:<\/strong> Add debounce in code or hardware RC filter on PIR output.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This energy-harvesting PIR sensor provides maintenance-free operation in remote locations. With proper design, it can operate indefinitely without battery changes.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a self-powered PIR motion sensor that runs entirely on solar energy. It&#8217;s ideal for remote locations where running power cables or changing batteries is impractical. The system stores energy in a supercapacitor or rechargeable battery, providing operation through the night. Difficulty: Advanced Estimated time: 4-6 hours Estimated cost: $40-60 How [&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-3908","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>Energy Harvesting PIR Sensor with Solar Power - 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=3908\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Energy Harvesting PIR Sensor with Solar Power - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a self-powered PIR motion sensor that runs entirely on solar energy. It&#8217;s ideal for remote locations where running power cables or changing batteries is impractical. The system stores energy in a supercapacitor or rechargeable battery, providing operation through the night. Difficulty: Advanced Estimated time: 4-6 hours Estimated cost: $40-60 How [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.pirhome.com\/?p=3908\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-03-31T17: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=\"5 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=3908#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3908\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"Energy Harvesting PIR Sensor with Solar Power\",\"datePublished\":\"2026-03-31T17:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3908\"},\"wordCount\":635,\"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=3908#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3908\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3908\",\"name\":\"Energy Harvesting PIR Sensor with Solar Power - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T17:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3908#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pirhome.com\\\/?p=3908\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3908#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Energy Harvesting PIR Sensor with Solar Power\"}]},{\"@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\":\"http:\\\/\\\/www.pirhome.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg\",\"contentUrl\":\"http:\\\/\\\/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\":\"http:\\\/\\\/www.pirhome.com\\\/?author=1\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Energy Harvesting PIR Sensor with Solar Power - 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=3908","og_locale":"en_US","og_type":"article","og_title":"Energy Harvesting PIR Sensor with Solar Power - PIRHOME","og_description":"Project Overview This project creates a self-powered PIR motion sensor that runs entirely on solar energy. It&#8217;s ideal for remote locations where running power cables or changing batteries is impractical. The system stores energy in a supercapacitor or rechargeable battery, providing operation through the night. Difficulty: Advanced Estimated time: 4-6 hours Estimated cost: $40-60 How [&hellip;]","og_url":"https:\/\/www.pirhome.com\/?p=3908","og_site_name":"PIRHOME","article_published_time":"2026-03-31T17:00: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":"https:\/\/www.pirhome.com\/?p=3908#article","isPartOf":{"@id":"https:\/\/www.pirhome.com\/?p=3908"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"Energy Harvesting PIR Sensor with Solar Power","datePublished":"2026-03-31T17:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pirhome.com\/?p=3908"},"wordCount":635,"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=3908#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pirhome.com\/?p=3908","url":"https:\/\/www.pirhome.com\/?p=3908","name":"Energy Harvesting PIR Sensor with Solar Power - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T17:00:00+00:00","breadcrumb":{"@id":"https:\/\/www.pirhome.com\/?p=3908#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pirhome.com\/?p=3908"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pirhome.com\/?p=3908#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"Energy Harvesting PIR Sensor with Solar Power"}]},{"@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":"http:\/\/www.pirhome.com\/wp-content\/uploads\/2026\/02\/cropped-\u5fae\u4fe1\u56fe\u7247_2026-02-19_222409_472.jpg","contentUrl":"http:\/\/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":"http:\/\/www.pirhome.com\/?author=1"}]}},"_links":{"self":[{"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3908","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3908"}],"version-history":[{"count":1,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3908\/revisions"}],"predecessor-version":[{"id":4068,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3908\/revisions\/4068"}],"wp:attachment":[{"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3908"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3908"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3908"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}