{"id":3917,"date":"2026-03-31T01:57:24","date_gmt":"2026-03-31T05:57:24","guid":{"rendered":"https:\/\/pirhome.com\/?p=3915"},"modified":"2026-03-31T01:57:24","modified_gmt":"2026-03-31T05:57:24","slug":"pir-automatic-trash-can-lid","status":"publish","type":"post","link":"http:\/\/www.pirhome.com\/?p=3917","title":{"rendered":"PIR Sensor for Automatic Trash Can Lid"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a touchless automatic trash can lid that opens when you wave your hand or approach with trash. A PIR sensor detects motion, and a servo motor lifts the lid. After a few seconds, the lid closes automatically. It&#8217;s perfect for kitchens where you often have messy hands or want to avoid touching the lid.<\/p>\n<p><strong>Difficulty:<\/strong> Beginner<br \/>\n<strong>Estimated time:<\/strong> 2-3 hours<br \/>\n<strong>Estimated cost:<\/strong> $20-30<\/p>\n<h2>How It Works<\/h2>\n<p>A PIR sensor mounted on the trash can lid or front detects motion. When motion is detected, a servo motor rotates to lift the lid (or a linear actuator pushes it open). After a set delay (e.g., 3 seconds), the servo returns to its closed position. An optional button can be added for manual control.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>Arduino Nano<\/strong> or <strong>Arduino Uno<\/strong> (1)<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1)<\/li>\n<li><strong>Servo motor<\/strong> (MG995 or SG90, size depends on lid weight)<\/li>\n<li><strong>Trash can<\/strong> (with a hinged lid)<\/li>\n<li><strong>Mounting hardware<\/strong> (brackets, screws)<\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<li><strong>Power supply<\/strong> (5V 2A, or battery pack)<\/li>\n<li><strong>Project enclosure<\/strong> (small box for electronics)<\/li>\n<li><strong>Hot glue or epoxy<\/strong> (for mounting)<\/li>\n<\/ul>\n<h2>Mechanical Design<\/h2>\n<h3>Servo Mounting<\/h3>\n<p>Two common mounting approaches:<\/p>\n<ol>\n<li><strong>Direct lift:<\/strong> Mount servo on the back of the trash can. Attach a rigid arm to the servo horn that pushes the lid open. Works well for lightweight lids.<\/li>\n<li><strong>Lever mechanism:<\/strong> Use a longer lever arm to reduce the force required. Mount servo at the base and use a connecting rod to lift the lid.<\/li>\n<\/ol>\n<h3>Lid Weight Considerations<\/h3>\n<p>If your lid is heavy, consider:<\/p>\n<ul>\n<li>Using a high-torque servo (MG996R or similar, 10-15 kg\/cm torque).<\/li>\n<li>Adding a counterweight to the lid.<\/li>\n<li>Using a linear actuator instead of a servo.<\/li>\n<li>Using a gear reduction mechanism.<\/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>Arduino Pin<\/th>\n<\/thead>\n<tbody>\n<th>PIR Sensor<\/th>\n<td>VCC<\/th>\n<td>5V<\/th>\n<\/tr>\n<th>PIR Sensor<\/th>\n<td>GND<\/th>\n<td>GND<\/th>\n<\/tr>\n<th>PIR Sensor<\/th>\n<td>OUT<\/th>\n<td>Digital Pin 2<\/th>\n<\/tr>\n<th>Servo Motor<\/th>\n<td>VCC (red)<\/th>\n<td>5V (or external power)<\/th>\n<\/tr>\n<th>Servo Motor<\/th>\n<td>GND (brown)<\/th>\n<td>GND<\/th>\n<\/tr>\n<th>Servo Motor<\/th>\n<td>Signal (orange)<\/th>\n<td>Digital Pin 9<\/th>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>Note:<\/strong> For powerful servos, use an external 5V power supply (2-3A) connected to the servo&#8217;s VCC and GND, and share GND with the Arduino.<\/p>\n<h2>Arduino Code<\/h2>\n<pre><code>\/\/ Automatic Trash Can Lid Opener\n\/\/ Opens lid when motion detected\n\n#include &lt;Servo.h&gt;\n\nServo lidServo;\n\nconst int pirPin = 2;\nconst int servoPin = 9;\n\n\/\/ Servo positions (adjust for your lid)\nconst int closedPos = 0;    \/\/ Lid closed position\nconst int openPos = 90;      \/\/ Lid open position\n\nunsigned long lastTriggerTime = 0;\nconst unsigned long openDuration = 3000;  \/\/ Lid stays open for 3 seconds\n\nbool lidOpen = false;\nbool motionDetected = false;\n\nvoid setup() {\n  Serial.begin(9600);\n  \n  pinMode(pirPin, INPUT);\n  lidServo.attach(servoPin);\n  \n  \/\/ Start with lid closed\n  lidServo.write(closedPos);\n  \n  Serial.println(\"Automatic Trash Can Ready\");\n  Serial.println(\"Waiting 60 seconds for PIR warm-up...\");\n  delay(60000);\n}\n\nvoid openLid() {\n  Serial.println(\"Opening lid\");\n  lidServo.write(openPos);\n  lidOpen = true;\n  lastTriggerTime = millis();\n}\n\nvoid closeLid() {\n  Serial.println(\"Closing lid\");\n  lidServo.write(closedPos);\n  lidOpen = false;\n}\n\nvoid loop() {\n  bool motion = digitalRead(pirPin) == HIGH;\n  \n  if (motion && !motionDetected) {\n    motionDetected = true;\n    if (!lidOpen) {\n      openLid();\n    }\n  }\n  \n  if (!motion && motionDetected) {\n    motionDetected = false;\n  }\n  \n  if (lidOpen && (millis() - lastTriggerTime > openDuration)) {\n    closeLid();\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Enhanced Version with Manual Button and Status LED<\/h2>\n<pre><code>#include &lt;Servo.h&gt;\n\nServo lidServo;\n\nconst int pirPin = 2;\nconst int servoPin = 9;\nconst int buttonPin = 3;\nconst int ledPin = 13;\n\nconst int closedPos = 0;\nconst int openPos = 90;\n\nunsigned long lastTriggerTime = 0;\nconst unsigned long openDuration = 3000;\nbool lidOpen = false;\nbool motionDetected = false;\nbool buttonHeld = false;\n\nvoid setup() {\n  Serial.begin(9600);\n  \n  pinMode(pirPin, INPUT);\n  pinMode(buttonPin, INPUT_PULLUP);\n  pinMode(ledPin, OUTPUT);\n  \n  lidServo.attach(servoPin);\n  lidServo.write(closedPos);\n  digitalWrite(ledPin, LOW);\n  \n  delay(60000);\n}\n\nvoid openLid() {\n  lidServo.write(openPos);\n  lidOpen = true;\n  lastTriggerTime = millis();\n  digitalWrite(ledPin, HIGH);\n  Serial.println(\"Lid OPEN\");\n}\n\nvoid closeLid() {\n  lidServo.write(closedPos);\n  lidOpen = false;\n  digitalWrite(ledPin, LOW);\n  Serial.println(\"Lid CLOSED\");\n}\n\nvoid loop() {\n  bool motion = digitalRead(pirPin) == HIGH;\n  bool button = digitalRead(buttonPin) == LOW;\n  \n  \/\/ Manual button control\n  if (button && !buttonHeld) {\n    buttonHeld = true;\n    if (lidOpen) {\n      closeLid();\n    } else {\n      openLid();\n    }\n  }\n  if (!button) {\n    buttonHeld = false;\n  }\n  \n  \/\/ Automatic motion control\n  if (motion && !motionDetected && !lidOpen) {\n    motionDetected = true;\n    openLid();\n  }\n  \n  if (!motion && motionDetected) {\n    motionDetected = false;\n  }\n  \n  \/\/ Auto-close after delay\n  if (lidOpen && !buttonHeld && (millis() - lastTriggerTime > openDuration)) {\n    closeLid();\n  }\n  \n  delay(100);\n}\n<\/code><\/pre>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Mount servo:<\/strong> Attach servo to trash can using brackets or epoxy. Ensure the arm can move freely.<\/li>\n<li><strong>Connect linkage:<\/strong> Attach servo horn to lid with a rigid arm or flexible wire. Test movement manually.<\/li>\n<li><strong>Position PIR sensor:<\/strong> Mount sensor on front of trash can at waist height, angled to detect hand approach.<\/li>\n<li><strong>Mount electronics:<\/strong> Place Arduino in small enclosure attached to the back or side of the trash can.<\/li>\n<li><strong>Power:<\/strong> Use USB power adapter or battery pack (4xAA for 6V).<\/li>\n<li><strong>Test:<\/strong> Wave hand in front of sensor, verify lid opens and closes.<\/li>\n<li><strong>Adjust positions:<\/strong> Modify <code>openPos<\/code> and <code>closedPos<\/code> values in code to match your lid.<\/li>\n<\/ol>\n<h2>Calibration Tips<\/h2>\n<ul>\n<li><strong>Servo position:<\/strong> Find the correct angle for open and closed positions by testing different values.<\/li>\n<li><strong>PIR sensitivity:<\/strong> Adjust potentiometer so sensor detects hand but not people walking past.<\/li>\n<li><strong>Detection area:<\/strong> Use masking tape to narrow the field of view if needed.<\/li>\n<li><strong>Open duration:<\/strong> Adjust <code>openDuration<\/code> based on how long you typically need the lid open.<\/li>\n<\/ul>\n<h2>Power Options<\/h2>\n<ul>\n<li><strong>USB power:<\/strong> Simplest, if near an outlet.<\/li>\n<li><strong>Battery pack:<\/strong> 4xAA batteries (6V) or 18650 lithium battery (3.7V with boost converter).<\/li>\n<li><strong>Rechargeable:<\/strong> Use TP4056 charging module with LiPo battery.<\/li>\n<\/ul>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Battery level indicator:<\/strong> Add voltage divider and monitor battery level.<\/li>\n<li><strong>Voice activation:<\/strong> Add voice recognition module.<\/li>\n<li><strong>Fragrance dispenser:<\/strong> Add a small fan to spray air freshener when lid opens.<\/li>\n<li><strong>LED lighting:<\/strong> Add LED strip inside lid to illuminate when open.<\/li>\n<li><strong>Capacity sensor:<\/strong> Add ultrasonic sensor to detect when trash can is full.<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>Servo not moving:<\/strong> Check power supply. Servo may draw too much current from Arduino&#8217;s 5V pin; use external supply.<\/li>\n<li><strong>Lid not closing fully:<\/strong> Adjust <code>closedPos<\/code> value. Check for mechanical binding.<\/li>\n<li><strong>False triggers:<\/strong> Reduce PIR sensitivity or reposition sensor.<\/li>\n<li><strong>Lid closes too quickly:<\/strong> Increase <code>openDuration<\/code>.<\/li>\n<li><strong>Servo jitter:<\/strong> Add 100-1000\u00b5F capacitor across power lines near the servo.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This automatic trash can lid opener makes kitchen cleanup more hygienic and convenient. With simple materials and basic coding, you can upgrade any standard trash can to a touchless model.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a touchless automatic trash can lid that opens when you wave your hand or approach with trash. A PIR sensor detects motion, and a servo motor lifts the lid. After a few seconds, the lid closes automatically. It&#8217;s perfect for kitchens where you often have messy hands or want to [&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-3917","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 Automatic Trash Can Lid - 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=3917\" \/>\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 Automatic Trash Can Lid - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a touchless automatic trash can lid that opens when you wave your hand or approach with trash. A PIR sensor detects motion, and a servo motor lifts the lid. After a few seconds, the lid closes automatically. It&#8217;s perfect for kitchens where you often have messy hands or want to [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"http:\/\/www.pirhome.com\/?p=3917\" \/>\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=3917#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3917\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor for Automatic Trash Can Lid\",\"datePublished\":\"2026-03-31T05:57:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3917\"},\"wordCount\":692,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/#organization\"},\"articleSection\":[\"Projects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3917#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3917\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3917\",\"name\":\"PIR Sensor for Automatic Trash Can Lid - PIRHOME\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T05:57:24+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3917#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3917\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3917#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor for Automatic Trash Can Lid\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/#website\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/\",\"name\":\"PIRHOME\",\"description\":\"PIR &amp; Motion Sensor\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pirhome.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/#organization\",\"name\":\"PIRHOME\",\"url\":\"https:\\\/\\\/www.pirhome.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/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\":\"https:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/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":"PIR Sensor for Automatic Trash Can Lid - 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=3917","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor for Automatic Trash Can Lid - PIRHOME","og_description":"Project Overview This project creates a touchless automatic trash can lid that opens when you wave your hand or approach with trash. A PIR sensor detects motion, and a servo motor lifts the lid. After a few seconds, the lid closes automatically. It&#8217;s perfect for kitchens where you often have messy hands or want to [&hellip;]","og_url":"http:\/\/www.pirhome.com\/?p=3917","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=3917#article","isPartOf":{"@id":"http:\/\/www.pirhome.com\/?p=3917"},"author":{"name":"nic@nicsky.com","@id":"https:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor for Automatic Trash Can Lid","datePublished":"2026-03-31T05:57:24+00:00","mainEntityOfPage":{"@id":"http:\/\/www.pirhome.com\/?p=3917"},"wordCount":692,"commentCount":0,"publisher":{"@id":"https:\/\/www.pirhome.com\/#organization"},"articleSection":["Projects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/www.pirhome.com\/?p=3917#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.pirhome.com\/?p=3917","url":"http:\/\/www.pirhome.com\/?p=3917","name":"PIR Sensor for Automatic Trash Can Lid - PIRHOME","isPartOf":{"@id":"https:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T05:57:24+00:00","breadcrumb":{"@id":"http:\/\/www.pirhome.com\/?p=3917#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.pirhome.com\/?p=3917"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.pirhome.com\/?p=3917#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor for Automatic Trash Can Lid"}]},{"@type":"WebSite","@id":"https:\/\/www.pirhome.com\/#website","url":"https:\/\/www.pirhome.com\/","name":"PIRHOME","description":"PIR &amp; Motion Sensor","publisher":{"@id":"https:\/\/www.pirhome.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pirhome.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.pirhome.com\/#organization","name":"PIRHOME","url":"https:\/\/www.pirhome.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/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":"https:\/\/www.pirhome.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/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\/3917","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=3917"}],"version-history":[{"count":1,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3917\/revisions"}],"predecessor-version":[{"id":4038,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3917\/revisions\/4038"}],"wp:attachment":[{"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3917"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3917"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3917"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}