{"id":3927,"date":"2026-03-31T01:57:23","date_gmt":"2026-03-31T05:57:23","guid":{"rendered":"https:\/\/pirhome.com\/?p=3923"},"modified":"2026-03-31T01:57:23","modified_gmt":"2026-03-31T05:57:23","slug":"pir-medicine-reminder-system","status":"publish","type":"post","link":"https:\/\/www.pirhome.com\/?p=3927","title":{"rendered":"PIR Sensor for Medicine Reminder: Never Miss a Dose"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a medicine reminder system that helps elderly or forgetful individuals remember to take their medication. A PIR sensor detects when someone approaches the medicine cabinet, and if it&#8217;s time for medication, the system plays a reminder message and lights up LEDs.<\/p>\n<p><strong>Difficulty:<\/strong> Intermediate<br \/>\n<strong>Estimated time:<\/strong> 2-3 hours<br \/>\n<strong>Estimated cost:<\/strong> $30-40<\/p>\n<h2>How It Works<\/h2>\n<p>A PIR sensor at the medicine cabinet detects when someone approaches. The system checks the current time against a schedule of medication times. If it&#8217;s within the reminder window, it plays a recorded message (via DFPlayer Mini) and lights up LEDs to remind the person to take their medicine. If the person opens the cabinet (detected by a reed switch), the reminder is marked as taken and the alarm stops.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>ESP32<\/strong> or <strong>Arduino Uno<\/strong> (1)<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1)<\/li>\n<li><strong>DS3231 Real-Time Clock<\/strong> (1)<\/li>\n<li><strong>DFPlayer Mini MP3 module<\/strong> (1)<\/li>\n<li><strong>MicroSD card<\/strong> (with reminder audio files)<\/li>\n<li><strong>Small speaker<\/strong> (3W, 4-8\u03a9)<\/li>\n<li><strong>LEDs<\/strong> (red, green, blue &#8211; for status indication)<\/li>\n<li><strong>Resistors<\/strong> (220\u03a9 for LEDs)<\/li>\n<li><strong>Reed switch<\/strong> (for cabinet door detection)<\/li>\n<li><strong>Magnet<\/strong><\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<li><strong>Power supply<\/strong> (5V 2A)<\/li>\n<\/ul>\n<h2>Circuit Diagram<\/h2>\n<h3>Connection Table<\/h3>\n<table border=\"1\">\n<thead>\n<th>Component<\/th>\n<th>Pin<\/th>\n<th>ESP32 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 4<\/th>\n<th>DS3231 RTC<\/th>\n<td>VCC<\/th>\n<td>3.3V<\/th>\n<th>DS3231 RTC<\/th>\n<td>GND<\/th>\n<td>GND<\/th>\n<th>DS3231 RTC<\/th>\n<td>SDA<\/th>\n<td>GPIO 21<\/th>\n<th>DS3231 RTC<\/th>\n<td>SCL<\/th>\n<td>GPIO 22<\/th>\n<th>DFPlayer Mini<\/th>\n<td>VCC<\/th>\n<td>5V<\/th>\n<th>DFPlayer Mini<\/th>\n<td>GND<\/th>\n<td>GND<\/th>\n<th>DFPlayer Mini<\/th>\n<td>TX<\/th>\n<td>GPIO 16<\/th>\n<th>DFPlayer Mini<\/th>\n<td>RX<\/th>\n<td>GPIO 17<\/th>\n<th>Red LED<\/th>\n<td>Anode<\/th>\n<td>GPIO 5 (220\u03a9)<\/th>\n<th>Green LED<\/th>\n<td>Anode<\/th>\n<td>GPIO 18 (220\u03a9)<\/th>\n<th>Blue LED<\/th>\n<td>Anode<\/th>\n<td>GPIO 19 (220\u03a9)<\/th>\n<th>Reed Switch<\/th>\n<td>One side<\/th>\n<td>GPIO 23 (pull-up)<\/th>\n<th>Reed Switch<\/th>\n<td>Other side<\/th>\n<td>GND<\/th>\n<\/tbody>\n<p>\u8868<\/p>\n<h2>Preparing Audio Files<\/h2>\n<ol>\n<li>Record or download reminder messages (e.g., &#8220;It&#8217;s time to take your morning medication&#8221;).<\/li>\n<li>Save as MP3 files (44.1kHz, 128kbps).<\/li>\n<li>Name files as &#8220;001.mp3&#8221;, &#8220;002.mp3&#8221;, etc.<\/li>\n<li>Place on microSD card in folder &#8220;01&#8221;.<\/li>\n<\/ol>\n<h2>Arduino Code<\/h2>\n<pre><code>\/\/ Medicine Reminder System\n#include &lt;Wire.h&gt;\n#include &lt;RTClib.h&gt;\n#include &lt;SoftwareSerial.h&gt;\n#include &lt;DFRobotDFPlayerMini.h&gt;\n\nRTC_DS3231 rtc;\nSoftwareSerial mySoftwareSerial(16, 17); \/\/ RX, TX\nDFRobotDFPlayerMini myDFPlayer;\n\nconst int pirPin = 4;\nconst int redLedPin = 5;\nconst int greenLedPin = 18;\nconst int blueLedPin = 19;\nconst int doorSensorPin = 23;\n\n\/\/ Medication schedule (hour, minute, message file)\nstruct MedTime {\n  int hour;\n  int minute;\n  int messageFile;\n  bool taken;\n};\n\nMedTime medTimes[] = {\n  {8, 0, 1, false},   \/\/ 8:00 AM\n  {12, 0, 2, false},  \/\/ 12:00 PM\n  {18, 0, 3, false}   \/\/ 6:00 PM\n};\nconst int numMedTimes = 3;\n\nbool reminderActive = false;\nint activeMedIndex = -1;\nunsigned long lastMotionTime = 0;\nconst unsigned long reminderDuration = 60000; \/\/ 1 minute\n\nvoid setup() {\n  Serial.begin(115200);\n  \n  pinMode(pirPin, INPUT);\n  pinMode(redLedPin, OUTPUT);\n  pinMode(greenLedPin, OUTPUT);\n  pinMode(blueLedPin, OUTPUT);\n  pinMode(doorSensorPin, INPUT_PULLUP);\n  \n  digitalWrite(redLedPin, LOW);\n  digitalWrite(greenLedPin, LOW);\n  digitalWrite(blueLedPin, LOW);\n  \n  if (!rtc.begin()) {\n    Serial.println(\"RTC not found\");\n    while (1);\n  }\n  \n  mySoftwareSerial.begin(9600);\n  if (!myDFPlayer.begin(mySoftwareSerial)) {\n    Serial.println(\"DFPlayer error\");\n    while (1);\n  }\n  myDFPlayer.volume(20);\n  \n  Serial.println(\"Medicine Reminder Ready\");\n  delay(60000); \/\/ PIR warm-up\n}\n\nvoid checkScheduledTimes() {\n  DateTime now = rtc.now();\n  int currentHour = now.hour();\n  int currentMinute = now.minute();\n  \n  for (int i = 0; i < numMedTimes; i++) {\n    if (!medTimes[i].taken &#038;&#038; \n        currentHour == medTimes[i].hour &#038;&#038; \n        currentMinute >= medTimes[i].minute && \n        currentMinute < medTimes[i].minute + 30) {\n      \n      if (!reminderActive) {\n        reminderActive = true;\n        activeMedIndex = i;\n        Serial.printf(\"Reminder active for medication %d\\n\", i);\n        \n        \/\/ Blue LED for reminder\n        digitalWrite(blueLedPin, HIGH);\n      }\n      return;\n    }\n  }\n}\n\nvoid playReminder() {\n  if (activeMedIndex >= 0) {\n    myDFPlayer.play(medTimes[activeMedIndex].messageFile);\n    Serial.printf(\"Playing reminder %d\\n\", medTimes[activeMedIndex].messageFile);\n  }\n}\n\nvoid markTaken() {\n  if (activeMedIndex >= 0) {\n    medTimes[activeMedIndex].taken = true;\n    reminderActive = false;\n    activeMedIndex = -1;\n    \n    digitalWrite(blueLedPin, LOW);\n    digitalWrite(greenLedPin, HIGH);\n    myDFPlayer.play(4); \/\/ \"Thank you\" message\n    delay(2000);\n    digitalWrite(greenLedPin, LOW);\n    \n    Serial.println(\"Medication taken\");\n  }\n}\n\nvoid loop() {\n  checkScheduledTimes();\n  \n  bool motion = digitalRead(pirPin) == HIGH;\n  bool doorOpen = digitalRead(doorSensorPin) == LOW;\n  \n  if (reminderActive && motion) {\n    if (millis() - lastMotionTime > 10000) { \/\/ Play every 10 seconds\n      playReminder();\n      lastMotionTime = millis();\n    }\n    digitalWrite(redLedPin, HIGH);\n  } else {\n    digitalWrite(redLedPin, LOW);\n  }\n  \n  if (doorOpen && reminderActive) {\n    markTaken();\n  }\n  \n  if (reminderActive && (millis() - lastMotionTime > reminderDuration)) {\n    digitalWrite(redLedPin, LOW);\n    digitalWrite(blueLedPin, LOW);\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Enhanced Version with LCD Display<\/h2>\n<p>Add an LCD to show next medication time:<\/p>\n<pre><code>#include &lt;LiquidCrystal_I2C.h&gt;\nLiquidCrystal_I2C lcd(0x27, 16, 2);\n\nvoid updateDisplay() {\n  lcd.setCursor(0, 0);\n  lcd.print(\"Next med: \");\n  \n  for (int i = 0; i < numMedTimes; i++) {\n    if (!medTimes[i].taken) {\n      lcd.print(medTimes[i].hour);\n      lcd.print(\":\");\n      if (medTimes[i].minute < 10) lcd.print(\"0\");\n      lcd.print(medTimes[i].minute);\n      break;\n    }\n  }\n  \n  lcd.setCursor(0, 1);\n  if (reminderActive) {\n    lcd.print(\"Take med NOW!\");\n  } else {\n    lcd.print(\"System ready\");\n  }\n}\n<\/code><\/pre>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Prepare audio files:<\/strong> Record reminder messages and place on SD card.<\/li>\n<li><strong>Set RTC time:<\/strong> Set the DS3231 clock to current time (use example sketch).<\/li>\n<li><strong>Assemble circuit:<\/strong> Build on breadboard and test.<\/li>\n<li><strong>Mount PIR sensor:<\/strong> Place near medicine cabinet, angled to detect approach.<\/li>\n<li><strong>Install reed switch:<\/strong> Mount on cabinet door and frame.<\/li>\n<li><strong>Place speaker:<\/strong> Position where message can be heard clearly.<\/li>\n<li><strong>Power up:<\/strong> Connect to USB power or battery.<\/li>\n<li><strong>Test:<\/strong> Approach cabinet at medication time, verify reminder plays.<\/li>\n<\/ol>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Remote notifications:<\/strong> Add Wi-Fi to send alerts to caregivers if medication not taken.<\/li>\n<li><strong>Pill dispenser:<\/strong> Add servo to dispense pills when door is opened.<\/li>\n<li><strong>Voice recognition:<\/strong> Add voice confirmation for taking medication.<\/li>\n<li><strong>Data logging:<\/strong> Track adherence and send reports to family.<\/li>\n<li><strong>Multiple users:<\/strong> Add RFID to identify which person is taking medication.<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>No sound:<\/strong> Check DFPlayer wiring. Verify SD card formatting and file names.<\/li>\n<li><strong>RTC not keeping time:<\/strong> Replace CR2032 battery on DS3231.<\/li>\n<li><strong>PIR not detecting:<\/strong> Adjust sensitivity. Ensure sensor has clear view.<\/li>\n<li><strong>False reminders:<\/strong> Check RTC time accuracy. Verify schedule times.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This medicine reminder system helps ensure medications are taken on time. With motion detection and audio reminders, it's especially helpful for elderly individuals or anyone who struggles with remembering medications.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a medicine reminder system that helps elderly or forgetful individuals remember to take their medication. A PIR sensor detects when someone approaches the medicine cabinet, and if it&#8217;s time for medication, the system plays a reminder message and lights up LEDs. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $30-40 [&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-3927","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 Medicine Reminder: Never Miss a Dose - 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=3927\" \/>\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 Medicine Reminder: Never Miss a Dose - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a medicine reminder system that helps elderly or forgetful individuals remember to take their medication. A PIR sensor detects when someone approaches the medicine cabinet, and if it&#8217;s time for medication, the system plays a reminder message and lights up LEDs. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $30-40 [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/www.pirhome.com\/?p=3927\" \/>\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\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3927#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3927\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor for Medicine Reminder: Never Miss a Dose\",\"datePublished\":\"2026-03-31T05:57:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3927\"},\"wordCount\":517,\"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=3927#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3927\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3927\",\"name\":\"PIR Sensor for Medicine Reminder: Never Miss a Dose - PIRHOME\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T05:57:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3927#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pirhome.com\\\/?p=3927\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/?p=3927#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor for Medicine Reminder: Never Miss a Dose\"}]},{\"@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 Medicine Reminder: Never Miss a Dose - 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=3927","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor for Medicine Reminder: Never Miss a Dose - PIRHOME","og_description":"Project Overview This project creates a medicine reminder system that helps elderly or forgetful individuals remember to take their medication. A PIR sensor detects when someone approaches the medicine cabinet, and if it&#8217;s time for medication, the system plays a reminder message and lights up LEDs. Difficulty: Intermediate Estimated time: 2-3 hours Estimated cost: $30-40 [&hellip;]","og_url":"https:\/\/www.pirhome.com\/?p=3927","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":"https:\/\/www.pirhome.com\/?p=3927#article","isPartOf":{"@id":"https:\/\/www.pirhome.com\/?p=3927"},"author":{"name":"nic@nicsky.com","@id":"http:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor for Medicine Reminder: Never Miss a Dose","datePublished":"2026-03-31T05:57:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pirhome.com\/?p=3927"},"wordCount":517,"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=3927#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pirhome.com\/?p=3927","url":"https:\/\/www.pirhome.com\/?p=3927","name":"PIR Sensor for Medicine Reminder: Never Miss a Dose - PIRHOME","isPartOf":{"@id":"http:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T05:57:23+00:00","breadcrumb":{"@id":"https:\/\/www.pirhome.com\/?p=3927#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pirhome.com\/?p=3927"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.pirhome.com\/?p=3927#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor for Medicine Reminder: Never Miss a Dose"}]},{"@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\/3927","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=3927"}],"version-history":[{"count":1,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3927\/revisions"}],"predecessor-version":[{"id":4030,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3927\/revisions\/4030"}],"wp:attachment":[{"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3927"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3927"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3927"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}