{"id":3935,"date":"2026-03-31T01:57:22","date_gmt":"2026-03-31T05:57:22","guid":{"rendered":"https:\/\/pirhome.com\/?p=3930"},"modified":"2026-03-31T01:57:22","modified_gmt":"2026-03-31T05:57:22","slug":"pir-smart-mirror-display","status":"publish","type":"post","link":"http:\/\/www.pirhome.com\/?p=3935","title":{"rendered":"PIR Sensor for Smart Mirror: Motion-Activated Display"},"content":{"rendered":"<h2>Project Overview<\/h2>\n<p>This project creates a smart mirror that displays information (time, weather, calendar) when someone approaches, and turns off the display when no one is present. The PIR sensor detects motion and triggers the display via Raspberry Pi. The two-way mirror makes the display invisible when off, giving it that &#8220;magic&#8221; look.<\/p>\n<p><strong>Difficulty:<\/strong> Advanced<br \/>\n<strong>Estimated time:<\/strong> 4-6 hours<br \/>\n<strong>Estimated cost:<\/strong> $100-150<\/p>\n<h2>How It Works<\/h2>\n<p>A PIR sensor mounted on the mirror frame detects when someone approaches. A Raspberry Pi runs MagicMirror software that displays information. When motion is detected, the Pi turns on the monitor (or wakes from sleep). After a period of no motion, it turns off the display to save energy and preserve the mirror effect.<\/p>\n<h2>Materials Needed<\/h2>\n<ul>\n<li><strong>Raspberry Pi 4<\/strong> (1) \u2013 Pi 3 works too, but slower<\/li>\n<li><strong>Monitor\/LCD panel<\/strong> (19-24 inch, remove from old monitor or buy panel)<\/li>\n<li><strong>Two-way acrylic mirror sheet<\/strong> (cut to size)<\/li>\n<li><strong>Wood frame<\/strong> (to hold mirror and monitor)<\/li>\n<li><strong>HC-SR501 PIR sensor<\/strong> (1)<\/li>\n<li><strong>5V relay module<\/strong> (to control monitor power)<\/li>\n<li><strong>Jumper wires<\/strong><\/li>\n<li><strong>USB power for Pi<\/strong> (5V 3A)<\/li>\n<li><strong>Power strip<\/strong> (for monitor and Pi)<\/li>\n<\/ul>\n<h2>Smart Mirror Construction<\/h2>\n<ol>\n<li><strong>Remove monitor bezel:<\/strong> Carefully disassemble the monitor, removing the plastic casing. Keep the LCD panel and controller board.<\/li>\n<li><strong>Build frame:<\/strong> Build a wooden frame slightly larger than the LCD panel.<\/li>\n<li><strong>Mount LCD:<\/strong> Secure LCD panel inside frame.<\/li>\n<li><strong>Install two-way mirror:<\/strong> Place acrylic mirror sheet over LCD, shiny side facing out.<\/li>\n<li><strong>Mount electronics:<\/strong> Secure Raspberry Pi and power strip behind mirror.<\/li>\n<li><strong>Add PIR sensor:<\/strong> Drill small hole in frame, mount sensor at bottom or top edge.<\/li>\n<\/ol>\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>Raspberry Pi GPIO<\/th>\n<\/thead>\n<tbody>\n<th>PIR Sensor<\/th>\n<td>OUT<\/th>\n<td>GPIO 4<\/th>\n<th>Relay Module<\/th>\n<td>IN<\/th>\n<td>GPIO 17<\/th>\n<\/tbody>\n<p>\u8868<\/p>\n<h2>Raspberry Pi Setup<\/h2>\n<ol>\n<li>Install Raspberry Pi OS (Lite recommended).<\/li>\n<li>Install MagicMirror\u00b2 software:\n<pre>git clone https:\/\/github.com\/MichMich\/MagicMirror\ncd MagicMirror\nnpm install\nnpm start<\/pre>\n<\/li>\n<li>Configure MagicMirror modules (weather, calendar, etc.) in config.js.<\/li>\n<li>Set up autostart on boot.<\/li>\n<\/ol>\n<h2>Python Script for Motion Detection<\/h2>\n<pre><code>#!\/usr\/bin\/env python3\n# Smart Mirror Motion Detection\nimport RPi.GPIO as GPIO\nimport subprocess\nimport time\n\nPIR_PIN = 4\nRELAY_PIN = 17\n\nGPIO.setmode(GPIO.BCM)\nGPIO.setup(PIR_PIN, GPIO.IN)\nGPIO.setup(RELAY_PIN, GPIO.OUT)\nGPIO.output(RELAY_PIN, GPIO.LOW)\n\n# Track display state\ndisplay_on = False\nlast_motion = 0\nTIMEOUT = 60  # seconds\n\ndef monitor_on():\n    global display_on\n    if not display_on:\n        GPIO.output(RELAY_PIN, GPIO.HIGH)\n        display_on = True\n        # Send command to wake display (if HDMI)\n        subprocess.run(['vcgencmd', 'display_power', '1'])\n        print(\"Display ON\")\n\ndef monitor_off():\n    global display_on\n    if display_on:\n        GPIO.output(RELAY_PIN, GPIO.LOW)\n        display_on = False\n        subprocess.run(['vcgencmd', 'display_power', '0'])\n        print(\"Display OFF\")\n\nprint(\"Smart Mirror Motion Detection Started\")\n\ntry:\n    while True:\n        motion = GPIO.input(PIR_PIN)\n        if motion:\n            last_motion = time.time()\n            monitor_on()\n        \n        if display_on and (time.time() - last_motion > TIMEOUT):\n            monitor_off()\n        \n        time.sleep(0.5)\n\nexcept KeyboardInterrupt:\n    monitor_off()\n    GPIO.cleanup()\n<\/code><\/pre>\n<h2>Auto-start Configuration<\/h2>\n<p>Add to \/etc\/rc.local:<\/p>\n<pre>python3 \/home\/pi\/mirror\/motion.py &amp;\ncd \/home\/pi\/MagicMirror &amp;&amp; npm start &amp;\n<\/pre>\n<h2>MagicMirror Configuration Example<\/h2>\n<pre><code>\/\/ config.js\nlet config = {\n  address: \"0.0.0.0\",\n  port: 8080,\n  modules: [\n    {\n      module: \"clock\",\n      position: \"top_center\"\n    },\n    {\n      module: \"weather\",\n      position: \"top_right\",\n      config: {\n        location: \"YourCity\",\n        apiKey: \"YourAPIKey\"\n      }\n    },\n    {\n      module: \"calendar\",\n      position: \"bottom_left\",\n      config: {\n        calendars: [\n          {\n            url: \"https:\/\/calendar.google.com\/calendar\/ical\/...\"\n          }\n        ]\n      }\n    },\n    {\n      module: \"newsfeed\",\n      position: \"bottom_right\",\n      config: {\n        feeds: [\n          {\n            title: \"News\",\n            url: \"https:\/\/feeds.bbci.co.uk\/news\/rss.xml\"\n          }\n        ]\n      }\n    }\n  ]\n};\n\nmodule.exports = config;\n<\/code><\/pre>\n<h2>Installation Steps<\/h2>\n<ol>\n<li><strong>Build mirror frame:<\/strong> Assemble wooden frame with LCD and two-way mirror.<\/li>\n<li><strong>Mount Raspberry Pi:<\/strong> Secure behind mirror.<\/li>\n<li><strong>Install PIR sensor:<\/strong> Mount on frame edge, facing outward.<\/li>\n<li><strong>Connect relay:<\/strong> Wire relay to control monitor power.<\/li>\n<li><strong>Install software:<\/strong> Set up Raspberry Pi OS, MagicMirror, and motion script.<\/li>\n<li><strong>Test:<\/strong> Approach mirror, verify display turns on. Wait 60 seconds, verify display turns off.<\/li>\n<li><strong>Fine-tune:<\/strong> Adjust timeout in script as desired.<\/li>\n<\/ol>\n<h2>Project Extensions<\/h2>\n<ul>\n<li><strong>Voice control:<\/strong> Add microphone for voice commands.<\/li>\n<li><strong>Facial recognition:<\/strong> Add camera to show personalized information.<\/li>\n<li><strong>Touch interface:<\/strong> Add touch overlay for interactive features.<\/li>\n<li><strong>Temperature\/humidity:<\/strong> Add DHT22 to display room conditions.<\/li>\n<li><strong>Security camera feed:<\/strong> Display doorbell camera when motion detected.<\/li>\n<li><strong>Music control:<\/strong> Add Spotify integration to display now playing.<\/li>\n<\/ul>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>Display not turning on:<\/strong> Check relay wiring. Test with manual command.<\/li>\n<li><strong>PIR not detecting:<\/strong> Adjust sensitivity. Ensure sensor not blocked.<\/li>\n<li><strong>Display stays on:<\/strong> Check motion detection. Increase timeout if too sensitive.<\/li>\n<li><strong>MagicMirror not starting:<\/strong> Check config.js syntax. Review logs.<\/li>\n<li><strong>Mirror reflection poor:<\/strong> Ensure two-way mirror is oriented correctly (shiny side out).<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>This smart mirror combines functionality and style, displaying useful information only when you need it. The PIR sensor makes it energy-efficient and maintains the magic mirror effect when not in use.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Project Overview This project creates a smart mirror that displays information (time, weather, calendar) when someone approaches, and turns off the display when no one is present. The PIR sensor detects motion and triggers the display via Raspberry Pi. The two-way mirror makes the display invisible when off, giving it that &#8220;magic&#8221; look. Difficulty: Advanced [&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-3935","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 Smart Mirror: Motion-Activated Display - 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=3935\" \/>\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 Smart Mirror: Motion-Activated Display - PIRHOME\" \/>\r\n<meta property=\"og:description\" content=\"Project Overview This project creates a smart mirror that displays information (time, weather, calendar) when someone approaches, and turns off the display when no one is present. The PIR sensor detects motion and triggers the display via Raspberry Pi. The two-way mirror makes the display invisible when off, giving it that &#8220;magic&#8221; look. Difficulty: Advanced [&hellip;]\" \/>\r\n<meta property=\"og:url\" content=\"http:\/\/www.pirhome.com\/?p=3935\" \/>\r\n<meta property=\"og:site_name\" content=\"PIRHOME\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-03-31T05:57:22+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\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3935#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3935\"},\"author\":{\"name\":\"nic@nicsky.com\",\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/#\\\/schema\\\/person\\\/41049b5236f9c77c9314997d070db3e3\"},\"headline\":\"PIR Sensor for Smart Mirror: Motion-Activated Display\",\"datePublished\":\"2026-03-31T05:57:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3935\"},\"wordCount\":524,\"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=3935#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3935\",\"url\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3935\",\"name\":\"PIR Sensor for Smart Mirror: Motion-Activated Display - PIRHOME\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pirhome.com\\\/#website\"},\"datePublished\":\"2026-03-31T05:57:22+00:00\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3935#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/www.pirhome.com\\\/?p=3935\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/www.pirhome.com\\\/?p=3935#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pirhome.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PIR Sensor for Smart Mirror: Motion-Activated Display\"}]},{\"@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 Smart Mirror: Motion-Activated Display - 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=3935","og_locale":"en_US","og_type":"article","og_title":"PIR Sensor for Smart Mirror: Motion-Activated Display - PIRHOME","og_description":"Project Overview This project creates a smart mirror that displays information (time, weather, calendar) when someone approaches, and turns off the display when no one is present. The PIR sensor detects motion and triggers the display via Raspberry Pi. The two-way mirror makes the display invisible when off, giving it that &#8220;magic&#8221; look. Difficulty: Advanced [&hellip;]","og_url":"http:\/\/www.pirhome.com\/?p=3935","og_site_name":"PIRHOME","article_published_time":"2026-03-31T05:57:22+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":"http:\/\/www.pirhome.com\/?p=3935#article","isPartOf":{"@id":"http:\/\/www.pirhome.com\/?p=3935"},"author":{"name":"nic@nicsky.com","@id":"https:\/\/www.pirhome.com\/#\/schema\/person\/41049b5236f9c77c9314997d070db3e3"},"headline":"PIR Sensor for Smart Mirror: Motion-Activated Display","datePublished":"2026-03-31T05:57:22+00:00","mainEntityOfPage":{"@id":"http:\/\/www.pirhome.com\/?p=3935"},"wordCount":524,"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=3935#respond"]}]},{"@type":"WebPage","@id":"http:\/\/www.pirhome.com\/?p=3935","url":"http:\/\/www.pirhome.com\/?p=3935","name":"PIR Sensor for Smart Mirror: Motion-Activated Display - PIRHOME","isPartOf":{"@id":"https:\/\/www.pirhome.com\/#website"},"datePublished":"2026-03-31T05:57:22+00:00","breadcrumb":{"@id":"http:\/\/www.pirhome.com\/?p=3935#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.pirhome.com\/?p=3935"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.pirhome.com\/?p=3935#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pirhome.com\/"},{"@type":"ListItem","position":2,"name":"PIR Sensor for Smart Mirror: Motion-Activated Display"}]},{"@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\/3935","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=3935"}],"version-history":[{"count":1,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3935\/revisions"}],"predecessor-version":[{"id":4023,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=\/wp\/v2\/posts\/3935\/revisions\/4023"}],"wp:attachment":[{"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3935"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3935"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.pirhome.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3935"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}