{"id":3923,"date":"2026-03-31T01:57:24","date_gmt":"2026-03-31T05:57:24","guid":{"rendered":"https:\/\/pirhome.com\/?p=3920"},"modified":"2026-03-31T01:57:24","modified_gmt":"2026-03-31T05:57:24","slug":"pir-wildlife-camera-trigger","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3923","title":{"rendered":"PIR Sensor for Wildlife Camera Trigger"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a wildlife camera trigger system that captures photos or videos when animals are detected. A PIR sensor detects animal movement and triggers a camera (GoPro, DSLR, or USB camera) to capture images. It&#8217;s perfect for observing wildlife in your backyard, garden, or remote locations.<\/p>\n<p><strong>Difficulty:<\/strong> Intermediate<br \/>\n<strong>Estimated time:<\/strong> 2-3 hours<br \/>\n<strong>Estimated cost:<\/strong> $30-50 (plus camera)<\/p>\n<h2>How It Works<\/h2>\n<p>A PIR sensor detects warm, moving animals. When motion is detected, the ESP32 triggers the camera via a shutter control cable (for DSLR) or by activating a USB camera. Images are stored on an SD card or transmitted via Wi-Fi. The system includes a real-time clock to timestamp images and can be powered by batteries for remote deployment.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>ESP32-CAM<\/strong> or <strong>Arduino + camera module<\/strong> (1)<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1) \u2013 with adjustable sensitivity<\/li>\n<li><strong>SD card<\/strong> (for image storage)<\/li>\n<li><strong>Battery pack<\/strong> (18650 lithium cells, 3.7V) or 5V USB power bank<\/li>\n<li><strong>TP4056 charging module<\/strong> (if using rechargeable batteries)<\/li>\n<li><strong>Weatherproof enclosure<\/strong> (IP65 or better)<\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<li><strong>Optional: IR LED array<\/strong> (for night vision)<\/li>\n<\/ul>\n<h2>Circuit Diagram<\/h2>\n<h3>Connection Table (ESP32-CAM + PIR)<\/h3>\n<table border=\"1\">\n<thead>\n<th>Component<\/th>\n<th>Pin<\/th>\n<th>ESP32-CAM 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>GPIO 13<\/th>\n<th>IR LED Array<\/th>\n<td>Positive<\/th>\n<td>GPIO 4 (through transistor)<\/th>\n<th>IR LED Array<\/th>\n<td>Negative<\/th>\n<td>GND<\/th>\n<\/tbody>\n<p>\u8868<\/p>\n<h2>ESP32-CAM Code<\/h2>\n<pre><code>\/\/ Wildlife Camera Trigger with ESP32-CAM\n#include &quot;esp_camera.h&quot;\n#include &lt;FS.h&gt;\n#include &lt;SD_MMC.h&gt;\n#include &lt;time.h&gt;\n\n\/\/ Pin definitions\n#define PIR_PIN 13\n#define LED_PIN 4\n#define FLASH_LED_PIN 4  \/\/ Built-in flash\n\n\/\/ Camera pins for AI-Thinker ESP32-CAM\n#define PWDN_GPIO_NUM     32\n#define RESET_GPIO_NUM    -1\n#define XCLK_GPIO_NUM      0\n#define SIOD_GPIO_NUM     26\n#define SIOC_GPIO_NUM     27\n#define Y9_GPIO_NUM       35\n#define Y8_GPIO_NUM       34\n#define Y7_GPIO_NUM       39\n#define Y6_GPIO_NUM       36\n#define Y5_GPIO_NUM       21\n#define Y4_GPIO_NUM       19\n#define Y3_GPIO_NUM       18\n#define Y2_GPIO_NUM        5\n#define VSYNC_GPIO_NUM    25\n#define HREF_GPIO_NUM     23\n#define PCLK_GPIO_NUM     22\n\n\/\/ RTC time\nconst char* ntpServer = &quot;pool.ntp.org&quot;;\nconst long gmtOffset = 0;\nconst int daylightOffset = 0;\n\nunsigned long lastTriggerTime = 0;\nconst unsigned long triggerCooldown = 10000; \/\/ 10 seconds between shots\nint imageCount = 0;\n\nvoid setup() {\n  Serial.begin(115200);\n  \n  pinMode(PIR_PIN, INPUT);\n  pinMode(LED_PIN, OUTPUT);\n  digitalWrite(LED_PIN, LOW);\n  \n  \/\/ Initialize camera\n  camera_config_t config;\n  config.ledc_channel = LEDC_CHANNEL_0;\n  config.ledc_timer = LEDC_TIMER_0;\n  config.pin_d0 = Y2_GPIO_NUM;\n  config.pin_d1 = Y3_GPIO_NUM;\n  config.pin_d2 = Y4_GPIO_NUM;\n  config.pin_d3 = Y5_GPIO_NUM;\n  config.pin_d4 = Y6_GPIO_NUM;\n  config.pin_d5 = Y7_GPIO_NUM;\n  config.pin_d6 = Y8_GPIO_NUM;\n  config.pin_d7 = Y9_GPIO_NUM;\n  config.pin_xclk = XCLK_GPIO_NUM;\n  config.pin_pclk = PCLK_GPIO_NUM;\n  config.pin_vsync = VSYNC_GPIO_NUM;\n  config.pin_href = HREF_GPIO_NUM;\n  config.pin_sscb_sda = SIOD_GPIO_NUM;\n  config.pin_sscb_scl = SIOC_GPIO_NUM;\n  config.pin_pwdn = PWDN_GPIO_NUM;\n  config.pin_reset = RESET_GPIO_NUM;\n  config.xclk_freq_hz = 20000000;\n  config.pixel_format = PIXFORMAT_JPEG;\n  config.frame_size = FRAMESIZE_SVGA; \/\/ 800x600\n  config.jpeg_quality = 12;\n  config.fb_count = 1;\n  \n  esp_err_t err = esp_camera_init(&config);\n  if (err != ESP_OK) {\n    Serial.printf(&quot;Camera init failed: 0x%x&quot;, err);\n    return;\n  }\n  \n  \/\/ Initialize SD card\n  if (!SD_MMC.begin()) {\n    Serial.println(&quot;SD Card mount failed&quot;);\n    return;\n  }\n  \n  \/\/ Initialize RTC\n  configTime(gmtOffset, daylightOffset, ntpServer);\n  \n  Serial.println(&quot;Wildlife Camera Ready&quot;);\n  delay(30000); \/\/ Short PIR warm-up for wildlife\n}\n\nString getTimestamp() {\n  struct tm timeinfo;\n  if (!getLocalTime(&timeinfo)) {\n    return &quot;00000000_000000&quot;;\n  }\n  char buffer[20];\n  strftime(buffer, sizeof(buffer), &quot;%Y%m%d_%H%M%S&quot;, &timeinfo);\n  return String(buffer);\n}\n\nvoid captureImage() {\n  if (millis() - lastTriggerTime < triggerCooldown) return;\n  \n  lastTriggerTime = millis();\n  \n  \/\/ Turn on LED briefly (for night shots)\n  digitalWrite(LED_PIN, HIGH);\n  delay(100);\n  \n  camera_fb_t *fb = esp_camera_fb_get();\n  if (!fb) {\n    Serial.println(&quot;Camera capture failed&quot;);\n    digitalWrite(LED_PIN, LOW);\n    return;\n  }\n  \n  String filename = &quot;\/IMG_&quot; + getTimestamp() + &quot;.jpg&quot;;\n  \n  File file = SD_MMC.open(filename, FILE_WRITE);\n  if (file) {\n    file.write(fb->buf, fb->len);\n    file.close();\n    imageCount++;\n    Serial.print(&quot;Image saved: &quot;);\n    Serial.println(filename);\n  } else {\n    Serial.println(&quot;Failed to save image&quot;);\n  }\n  \n  esp_camera_fb_return(fb);\n  digitalWrite(LED_PIN, LOW);\n}\n\nvoid loop() {\n  bool motion = digitalRead(PIR_PIN) == HIGH;\n  \n  if (motion) {\n    Serial.println(&quot;Motion detected - capturing image&quot;);\n    captureImage();\n    delay(2000); \/\/ Wait for animal to possibly move into better frame\n    captureImage(); \/\/ Take second shot\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>DSLR Trigger Version (External Camera)<\/h2>\n<p>For high-quality images, trigger a DSLR using a shutter release cable:<\/p>\n<pre><code>\/\/ DSLR Trigger via optocoupler\nconst int shutterPin = 12;\nconst int focusPin = 14;\n\nvoid triggerCamera() {\n  \/\/ Focus first\n  digitalWrite(focusPin, HIGH);\n  delay(200);\n  \/\/ Then trigger shutter\n  digitalWrite(shutterPin, HIGH);\n  delay(100);\n  digitalWrite(shutterPin, LOW);\n  delay(200);\n  digitalWrite(focusPin, LOW);\n}\n<\/code><\/pre>\n<h2>Enclosure Design<\/h2>\n<ol>\n<li>Use weatherproof enclosure (IP65 or IP67).<\/li>\n<li>Cut a window for the camera lens and PIR sensor.<\/li>\n<li>Use clear acrylic or glass for the lens window (glass may block IR).<\/li>\n<li>Add desiccant packs to prevent condensation.<\/li>\n<li>Mount camera securely inside enclosure.<\/li>\n<\/ol>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Assemble electronics:<\/strong> Test camera and PIR indoors.<\/li>\n<li><strong>Program ESP32-CAM:<\/strong> Upload code and verify image capture.<\/li>\n<li><strong>Mount in enclosure:<\/strong> Secure components inside weatherproof box.<\/li>\n<li><strong>Position in field:<\/strong> Place near animal trails, water sources, or feeding areas.<\/li>\n<li><strong>Adjust PIR sensitivity:<\/strong> Set to detect animals of appropriate size.<\/li>\n<li><strong>Power up:<\/strong> Connect battery pack (use solar panel for long-term deployment).<\/li>\n<li><strong>Test:<\/strong> Walk in front to verify camera triggers.<\/li>\n<\/ol>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Night vision:<\/strong> Add IR LED array and remove IR filter from camera.<\/li>\n<li><strong>Live streaming:<\/strong> Add cellular module for remote image transmission.<\/li>\n<li><strong>Video recording:<\/strong> Record short video clips instead of still images.<\/li>\n<li><strong>Animal classification:<\/strong> Add machine learning to identify species (TensorFlow Lite).<\/li>\n<li><strong>Solar power:<\/strong> Add solar panel for indefinite operation.<\/li>\n<li><strong>Wi-Fi upload:<\/strong> Upload images to cloud when in range.<\/li>\n<\/ul>\n<h2>PIR Sensitivity for Wildlife<\/h2>\n<p>Different animals emit different amounts of heat. Adjust sensitivity:<\/p>\n<ul>\n<li>Large animals (deer, bear): Lower sensitivity (detect at distance)<\/li>\n<li>Small animals (rabbits, squirrels): Higher sensitivity<\/li>\n<li>Birds: Highest sensitivity (smaller heat signature)<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>No images saved:<\/strong> Check SD card formatting (FAT32). Verify SD_MMC initialization.<\/li>\n<li><strong>Camera not triggering:<\/strong> Check PIR wiring. Adjust sensitivity.<\/li>\n<li><strong>Blurry images:<\/strong> Increase JPEG quality. Ensure camera is focused.<\/li>\n<li><strong>False triggers from sunlight:<\/strong> Position sensor in shade. Add sun shield.<\/li>\n<li><strong>False triggers from vegetation:<\/strong> Adjust sensitivity. Aim sensor away from moving plants.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This wildlife camera trigger lets you observe animals in their natural habitat without disturbing them. With proper placement, you can capture amazing photos of local wildlife.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a wildlife camera trigger system that captures photos or videos when animals are detected. A PIR sensor detects animal movement and triggers a camera (GoPro, DSLR, or USB camera) to capture images. It&#8217;s perfect for observing wildlife in your backyard, garden, or remote locations. Difficulty: Intermediate Estimated time: 2-3 hours [&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-3923","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 Wildlife Camera Trigger - 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=3923\" \/>\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 Wildlife Camera Trigger - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a wildlife camera trigger system that captures photos or videos when animals are detected. A PIR sensor detects animal movement and triggers a camera (GoPro, DSLR, or USB camera) to capture images. It&#8217;s perfect for observing wildlife in your backyard, garden, or remote locations. Difficulty: Intermediate Estimated time: 2-3 hours [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"http:\/\/www.pirhome.com\/?p=3923\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-03-31T05:57:24+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=3923#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3923\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor for Wildlife Camera Trigger\",\"datePublished\":\"2026-03-31T05:57:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3923\"},\"wordCount\":515,\"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=3923#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3923\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3923\",\"name\":\"PIR Sensor for Wildlife Camera Trigger - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T05:57:24+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3923#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3923\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3923#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor for Wildlife Camera Trigger\"}]},{\"@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 Wildlife Camera Trigger - 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=3923","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor for Wildlife Camera Trigger - PIRHOME","og_description":"Project Overview This project creates a wildlife camera trigger system that captures photos or videos when animals are detected. A PIR sensor detects animal movement and triggers a camera (GoPro, DSLR, or USB camera) to capture images. It&#8217;s perfect for observing wildlife in your backyard, garden, or remote locations. Difficulty: Intermediate Estimated time: 2-3 hours [&hellip;]","og_url":"http:\/\/www.pirhome.com\/?p=3923","og_site_name":"PIRHOME","article_published_time":"2026-03-31T05:57:24+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=3923#article","isPartOf":{"@id":"http:\/\/www.pirhome.com\/?p=3923"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor for Wildlife Camera Trigger","datePublished":"2026-03-31T05:57:24+00:00","mainEntityOfPage":{"@id":"http:\/\/www.pirhome.com\/?p=3923"},"wordCount":515,"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=3923#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.pirhome.com\/?p=3923","url":"http:\/\/www.pirhome.com\/?p=3923","name":"PIR Sensor for Wildlife Camera Trigger - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T05:57:24+00:00","breadcrumb":{"@id":"http:\/\/www.pirhome.com\/?p=3923#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.pirhome.com\/?p=3923"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.pirhome.com\/?p=3923#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor for Wildlife Camera Trigger"}]},{"@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\/3923","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=3923"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3923\/revisions"}],"predecessor-version":[{"id":4033,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3923\/revisions\/4033"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3923"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3923"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3923"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}