{"id":3904,"date":"2026-03-31T15:00:00","date_gmt":"2026-03-31T15:00:00","guid":{"rendered":"https:\/\/pirhome.com\/?p=3904"},"modified":"2026-03-31T15:00:00","modified_gmt":"2026-03-31T15:00:00","slug":"pir-security-alarm-sms","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3904","title":{"rendered":"PIR Sensor Security Alarm with SMS Alert"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a basic home security system that sends SMS alerts to your phone when motion is detected. The system uses an Arduino Uno, a PIR sensor, and a SIM800L GSM module. It&#8217;s ideal for monitoring remote properties, sheds, or workshops without Wi-Fi.<\/p>\n<p><strong>Difficulty:<\/strong> Intermediate<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 PIR sensor continuously monitors for motion. When motion is detected, the Arduino activates the GSM module to send a pre-configured SMS to your phone number. The system can also sound a local siren and flash lights as deterrents. An optional keypad or switch can arm\/disarm the system.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>Arduino Uno<\/strong> (1)<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1)<\/li>\n<li><strong>SIM800L GSM module<\/strong> (1)<\/li>\n<li><strong>SIM card<\/strong> (with SMS capability, prepaid recommended)<\/li>\n<li><strong>Buzzer or siren<\/strong> (optional)<\/li>\n<li><strong>LED<\/strong> (for status indication)<\/li>\n<li><strong>Resistor<\/strong> (220\u03a9 for LED)<\/li>\n<li><strong>Push button<\/strong> (for arming\/disarming, optional)<\/li>\n<li><strong>Power supply<\/strong> (5V 2A minimum)<\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<li><strong>Project enclosure<\/strong><\/li>\n<\/ul>\n<h2>Circuit Diagram<\/h2>\n<h3>Connection Table<\/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>PIR Sensor<\/td>\n<td>VCC<\/td>\n<td>5V<\/td>\n<\/tr>\n<tr>\n<td>PIR Sensor<\/td>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<tr>\n<td>PIR Sensor<\/td>\n<td>OUT<\/td>\n<td>Digital Pin 2<\/td>\n<\/tr>\n<tr>\n<td>SIM800L<\/td>\n<td>VCC<\/td>\n<td>5V (use external power for reliable operation)<\/td>\n<\/tr>\n<tr>\n<td>SIM800L<\/td>\n<td>GND<\/td>\n<td>GND<\/td>\n<\/tr>\n<tr>\n<td>SIM800L<\/td>\n<td>TXD<\/td>\n<td>Digital Pin 3 (via voltage divider)<\/td>\n<\/tr>\n<tr>\n<td>SIM800L<\/td>\n<td>RXD<\/td>\n<td>Digital Pin 2 (via voltage divider)<\/td>\n<\/tr>\n<tr>\n<td>Buzzer<\/td>\n<td>Positive<\/td>\n<td>Digital Pin 8<\/td>\n<\/tr>\n<tr>\n<td>Buzzer<\/td>\n<td>Negative<\/td>\n<td>GND<\/td>\n<\/tr>\n<tr>\n<td>Status LED<\/td>\n<td>Anode<\/td>\n<td>Digital Pin 13 (through 220\u03a9)<\/td>\n<\/tr>\n<tr>\n<td>Status LED<\/td>\n<td>Cathode<\/td>\n<td>GND<\/td>\n<\/tr>\n<tr>\n<td>Arming Switch<\/td>\n<td>One pin<\/td>\n<td>Digital Pin 7<\/td>\n<\/tr>\n<tr>\n<td>Arming Switch<\/td>\n<td>Other pin<\/td>\n<td>GND<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Important: SIM800L Voltage Levels<\/h3>\n<p>The SIM800L operates at 3.3V logic, while Arduino uses 5V. Use a voltage divider on the TX line (Arduino to SIM800L) to reduce voltage:<\/p>\n<ul>\n<li>Connect 1k\u03a9 resistor from Arduino TX to SIM800L RX<\/li>\n<li>Connect 2k\u03a9 resistor from SIM800L RX to GND<\/li>\n<\/ul>\n<h2>Arduino Code<\/h2>\n<pre><code>#include &lt;SoftwareSerial.h&gt;\n\n\/\/ Pin definitions\nconst int pirPin = 2;\nconst int buzzerPin = 8;\nconst int ledPin = 13;\nconst int armPin = 7;\n\n\/\/ GSM module\nSoftwareSerial gsm(3, 2); \/\/ RX, TX\n\n\/\/ Configuration\nconst char* phoneNumber = \"+1234567890\"; \/\/ Replace with your number\nbool armed = true; \/\/ Start armed\nbool alarmTriggered = false;\nunsigned long alarmStartTime = 0;\nconst unsigned long alarmDuration = 30000; \/\/ Siren on for 30 seconds\n\nvoid setup() {\n  Serial.begin(9600);\n  gsm.begin(9600);\n  \n  pinMode(pirPin, INPUT);\n  pinMode(buzzerPin, OUTPUT);\n  pinMode(ledPin, OUTPUT);\n  pinMode(armPin, INPUT_PULLUP);\n  \n  digitalWrite(buzzerPin, LOW);\n  digitalWrite(ledPin, LOW);\n  \n  Serial.println(\"Security System Starting...\");\n  Serial.println(\"Waiting 60 seconds for PIR warm-up...\");\n  delay(60000);\n  \n  \/\/ Initialize GSM module\n  Serial.println(\"Initializing GSM...\");\n  sendATCommand(\"AT\", 1000);\n  sendATCommand(\"AT+CMGF=1\", 1000); \/\/ Text mode\n  sendATCommand(\"AT+CNMI=2,2,0,0,0\", 1000); \/\/ New SMS indication\n  \n  Serial.println(\"System Ready\");\n  digitalWrite(ledPin, HIGH); \/\/ LED on when armed\n}\n\nvoid sendATCommand(String cmd, int timeout) {\n  gsm.println(cmd);\n  delay(timeout);\n  while (gsm.available()) {\n    Serial.write(gsm.read());\n  }\n}\n\nvoid sendSMS(String message) {\n  Serial.println(\"Sending SMS...\");\n  gsm.print(\"AT+CMGS=\\\"\");\n  gsm.print(phoneNumber);\n  gsm.println(\"\\\"\");\n  delay(500);\n  gsm.print(message);\n  delay(500);\n  gsm.write(26); \/\/ Ctrl+Z to send\n  delay(3000);\n  Serial.println(\"SMS sent\");\n}\n\nvoid triggerAlarm() {\n  if (!alarmTriggered && armed) {\n    alarmTriggered = true;\n    alarmStartTime = millis();\n    \n    Serial.println(\"ALARM TRIGGERED!\");\n    \n    \/\/ Send SMS\n    sendSMS(\"ALERT: Motion detected at your property!\");\n    \n    \/\/ Sound siren\n    digitalWrite(buzzerPin, HIGH);\n    \n    \/\/ Flash LED\n    for (int i = 0; i < 10; i++) {\n      digitalWrite(ledPin, LOW);\n      delay(200);\n      digitalWrite(ledPin, HIGH);\n      delay(200);\n    }\n  }\n}\n\nvoid resetAlarm() {\n  alarmTriggered = false;\n  digitalWrite(buzzerPin, LOW);\n  if (armed) {\n    digitalWrite(ledPin, HIGH);\n  } else {\n    digitalWrite(ledPin, LOW);\n  }\n  Serial.println(\"Alarm reset\");\n}\n\nvoid loop() {\n  \/\/ Check arming status\n  bool newArmed = digitalRead(armPin) == LOW;\n  if (newArmed != armed) {\n    armed = newArmed;\n    if (armed) {\n      Serial.println(\"System ARMED\");\n      digitalWrite(ledPin, HIGH);\n      sendSMS(\"Security system ARMED\");\n    } else {\n      Serial.println(\"System DISARMED\");\n      digitalWrite(ledPin, LOW);\n      resetAlarm();\n      sendSMS(\"Security system DISARMED\");\n    }\n    delay(500); \/\/ Debounce\n  }\n  \n  \/\/ Check motion\n  bool motion = digitalRead(pirPin) == HIGH;\n  if (motion &#038;&#038; armed &#038;&#038; !alarmTriggered) {\n    triggerAlarm();\n  }\n  \n  \/\/ Auto-reset alarm after duration\n  if (alarmTriggered &#038;&#038; (millis() - alarmStartTime > alarmDuration)) {\n    resetAlarm();\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Testing the System<\/h2>\n<ol>\n<li><strong>Test GSM module:<\/strong> Use AT commands to verify network registration and SMS capability.<\/li>\n<li><strong>Test PIR sensor:<\/strong> Check that sensor triggers reliably with the LED indicator.<\/li>\n<li><strong>Full system test:<\/strong> Arm the system, trigger motion, and verify SMS is received and siren sounds.<\/li>\n<\/ol>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Assemble circuit:<\/strong> Build on breadboard and test functionality.<\/li>\n<li><strong>Insert SIM card:<\/strong> Ensure SIM card has SMS capability and sufficient credit.<\/li>\n<li><strong>Upload code:<\/strong> Replace phone number with your number, upload to Arduino.<\/li>\n<li><strong>Test indoors:<\/strong> Verify SMS sending and alarm functionality.<\/li>\n<li><strong>Enclose components:<\/strong> Place Arduino and GSM module in weatherproof enclosure.<\/li>\n<li><strong>Mount PIR sensor:<\/strong> Position sensor to cover the area you want to monitor (doorway, window, room corner).<\/li>\n<li><strong>Power the system:<\/strong> Connect to a reliable power source (5V adapter or battery backup).<\/li>\n<li><strong>Final test:<\/strong> Arm system, walk through monitored area, verify SMS received.<\/li>\n<\/ol>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>GSM not connecting:<\/strong> Check antenna connection, SIM card insertion, and network coverage. Use AT+CREG? command to check registration status.<\/li>\n<li><strong>No SMS received:<\/strong> Verify phone number format (include country code). Check that SIM has credit for SMS.<\/li>\n<li><strong>False triggers:<\/strong> Adjust PIR sensitivity or position sensor away from heat sources. Add a delay after arm to avoid self-triggering.<\/li>\n<li><strong>Power issues:<\/strong> SIM800L draws up to 2A during transmission. Use a 2A power supply and add 1000\u00b5F capacitor across VCC and GND near the module.<\/li>\n<\/ul>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Battery backup:<\/strong> Add a 12V battery and charging circuit for power outage protection.<\/li>\n<li><strong>Multiple sensors:<\/strong> Add multiple PIR sensors to cover different areas, with zone identification in SMS.<\/li>\n<li><strong>Camera integration:<\/strong> Add an ESP32-CAM to capture images when motion is detected and send via MMS or email.<\/li>\n<li><strong>Keypad arming:<\/strong> Add a 4&#215;4 keypad for PIN-code arming\/disarming.<\/li>\n<li><strong>Remote control:<\/strong> Add a Bluetooth module to arm\/disarm from your phone.<\/li>\n<li><strong>Logging:<\/strong> Add an SD card module to log intrusion events with timestamps.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This SMS-based security system provides reliable intrusion detection without requiring internet connectivity. It&#8217;s ideal for remote locations, workshops, or as a backup to your primary security system.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a basic home security system that sends SMS alerts to your phone when motion is detected. The system uses an Arduino Uno, a PIR sensor, and a SIM800L GSM module. It&#8217;s ideal for monitoring remote properties, sheds, or workshops without Wi-Fi. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $25-35 [&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-3904","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 Security Alarm with SMS Alert - 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=3904\" \/>\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 Security Alarm with SMS Alert - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a basic home security system that sends SMS alerts to your phone when motion is detected. The system uses an Arduino Uno, a PIR sensor, and a SIM800L GSM module. It&#8217;s ideal for monitoring remote properties, sheds, or workshops without Wi-Fi. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $25-35 [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.pirhome.com\/?p=3904\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-03-31T15: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=\"4 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=3904#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3904\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor Security Alarm with SMS Alert\",\"datePublished\":\"2026-03-31T15:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3904\"},\"wordCount\":622,\"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=3904#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3904\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3904\",\"name\":\"PIR Sensor Security Alarm with SMS Alert - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T15:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3904#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pirhome.com\\\/?p=3904\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3904#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor Security Alarm with SMS Alert\"}]},{\"@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 Security Alarm with SMS Alert - 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=3904","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor Security Alarm with SMS Alert - PIRHOME","og_description":"Project Overview This project creates a basic home security system that sends SMS alerts to your phone when motion is detected. The system uses an Arduino Uno, a PIR sensor, and a SIM800L GSM module. It&#8217;s ideal for monitoring remote properties, sheds, or workshops without Wi-Fi. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $25-35 [&hellip;]","og_url":"https:\/\/www.pirhome.com\/?p=3904","og_site_name":"PIRHOME","article_published_time":"2026-03-31T15:00:00+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":"https:\/\/www.pirhome.com\/?p=3904#article","isPartOf":{"@id":"https:\/\/www.pirhome.com\/?p=3904"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor Security Alarm with SMS Alert","datePublished":"2026-03-31T15:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pirhome.com\/?p=3904"},"wordCount":622,"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=3904#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pirhome.com\/?p=3904","url":"https:\/\/www.pirhome.com\/?p=3904","name":"PIR Sensor Security Alarm with SMS Alert - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T15:00:00+00:00","breadcrumb":{"@id":"https:\/\/www.pirhome.com\/?p=3904#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pirhome.com\/?p=3904"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pirhome.com\/?p=3904#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor Security Alarm with SMS Alert"}]},{"@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\/3904","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=3904"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3904\/revisions"}],"predecessor-version":[{"id":4065,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3904\/revisions\/4065"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3904"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3904"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3904"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}