{"id":273,"date":"2013-03-31T13:18:44","date_gmt":"2013-03-31T07:48:44","guid":{"rendered":"http:\/\/projectbee.org\/blog\/?p=273"},"modified":"2013-04-02T16:19:33","modified_gmt":"2013-04-02T10:49:33","slug":"itek-powered-raspberry-pi-runs-for-over-7-hours","status":"publish","type":"post","link":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/","title":{"rendered":"itek powered Raspberry Pi runs for over 7 hours"},"content":{"rendered":"<h1>Summary<\/h1>\n<p>I tested a <strong>model B Raspberry Pi (512 MB)<\/strong> using an <strong>itek power bank (5600 mAh)<\/strong>, with Internet enabled. It pinged my server every minute, and ran for about<strong> 7 hours 22 minutes.<\/strong><\/p>\n<figure id=\"attachment_284\" aria-describedby=\"caption-attachment-284\" style=\"width: 760px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"size-large wp-image-284\" title=\"Raspberry Pi &amp; iTek battery pack\" alt=\"Raspberry Pi &amp; iTek battery pack\" src=\"http:\/\/projectbee.org\/blog\/wp-content\/uploads\/2013\/03\/RPi-iTek-1024x678.jpg\" width=\"760\" height=\"502\" srcset=\"https:\/\/projectbee.org\/blog\/wp-content\/uploads\/2013\/03\/RPi-iTek-1024x678.jpg 1024w, https:\/\/projectbee.org\/blog\/wp-content\/uploads\/2013\/03\/RPi-iTek-300x198.jpg 300w\" sizes=\"auto, (max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px\" \/><figcaption id=\"caption-attachment-284\" class=\"wp-caption-text\">Raspberry Pi &amp; itek battery pack<\/figcaption><\/figure>\n<h1 class=\"lang:sh\" title=\"CallerShellScript\">Set Up<\/h1>\n<ol>\n<li>Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running) on an 8 GB class 4 SD card<\/li>\n<li>itek power bank (5600mAh)<\/li>\n<li>Internet connectivity through Ethernet<\/li>\n<\/ol>\n<p>I wrote a shell script to call a web based PHP script on my server. I set a cron to run this shell script every minute. What happens is the shell scripts passes the client side timestamp, and server writes it, along with sever side timestamp to a file.<br \/>\nThe source code of both scripts is provided below.<\/p>\n<pre class=\"lang:sh\" title=\"CallerShellScript\">#!\/bin\/bash\r\n\r\nrawurlencode() {\r\nlocal string=\"${1}\"\r\nlocal strlen=${#string}\r\nlocal encoded=\"\"\r\nfor (( pos=0 ; pos&lt;strlen ; pos++ )); do\r\n    c=${string:$pos:1}\r\n    case \"$c\" in\r\n        [-_.~a-zA-Z0-9] ) o=\"${c}\" ;; * )  printf -v o '%%%02x' \"'$c\"\r\n    esac\r\n    encoded+=\"${o}\"\r\n    done\r\n    echo \"${encoded}\"\r\n}\r\n\r\nCLIENT_TIME=`date +\"%c\"`\r\nURL=http:\/\/example.com\/ServerSideLoggerPHPScript.php?t=$(rawurlencode \"$CLIENT_TIME\")\r\n\r\n\/usr\/bin\/wget -qO- $URL &> \/dev\/null<\/pre>\n<pre class=\"lang:php\" title=\"ServerSideLoggerPHPScript\"><?php\r\n$clientTime = $_GET['t'];\r\n$serverTime = date(\"D M j G:i:s T Y\");\r\n$data = \"RPiTime=$clientTime;ServerTime=$serverTime\\n\";\r\n$writeStatus = file_put_contents('RPiTest', $data, FILE_APPEND);\r\n?><\/pre>\n<h1>Conclusion<\/h1>\n<ul>\n<li>The script started at <strong>4:45:12 AM<\/strong> client time and ended at <strong>12:07:01 PM<\/strong> client time. That&#8217;s almost 7 hours 22 minutes<\/li>\n<li>The reason to attach the device to Internet was because I don&#8217;t see the point of testing a bare naked Raspbery Pi. Most real life applications would require network connectivity<\/li>\n<li>That brings me to another realization: I should have used my WiFi adapter instead of Ethernet to test real world situation. I plan to do this soon.<\/li>\n<li>I was fortunate not to lose Internet connectivity, but I should have logged the timestamp locally as well<\/li>\n<li>7 hours is all hunky dory but itek is a fairly heavy device, and takes eon to recharge. I don&#8217;t see it a very likely companion to my Raspberry, if I intend to shoot them in air sometime.<\/li>\n<\/ul>\n<p>As mentioned, I&#8217;ll test the setup again with a WiFi adapter, and update the results.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running) &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;itek powered Raspberry Pi runs for over 7 hours&#8221;<\/span><\/a><\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[23,24,25,202,168,215],"tags":[],"class_list":["post-273","post","type-post","status-publish","format-standard","hentry","category-guide","category-hack","category-hackers","category-presentation","category-security","category-technology"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running)\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Bipin Upadhyay\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Code in my Bug! | Bipin&#039;s experiments with life, society, programming, hacking, &amp; other stuff\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!\" \/>\n\t\t<meta property=\"og:description\" content=\"Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running)\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2013-03-31T07:48:44+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2013-04-02T10:49:33+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running)\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#article\",\"name\":\"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!\",\"headline\":\"itek powered Raspberry Pi runs for over 7 hours\",\"author\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/author\\\/bipinu\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/projectbee.org\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/03\\\/RPi-iTek-1024x678.jpg\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#articleImage\"},\"datePublished\":\"2013-03-31T13:18:44+02:00\",\"dateModified\":\"2013-04-02T16:19:33+02:00\",\"inLanguage\":\"en-US\",\"commentCount\":9,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#webpage\"},\"articleSection\":\"guide, hack, hackers, presentation, security, technology\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/projectbee.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/category\\\/guide\\\/#listItem\",\"name\":\"guide\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/category\\\/guide\\\/#listItem\",\"position\":2,\"name\":\"guide\",\"item\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/category\\\/guide\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#listItem\",\"name\":\"itek powered Raspberry Pi runs for over 7 hours\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#listItem\",\"position\":3,\"name\":\"itek powered Raspberry Pi runs for over 7 hours\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/category\\\/guide\\\/#listItem\",\"name\":\"guide\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/#organization\",\"name\":\"Code in my Bug!\",\"description\":\"Bipin's experiments with life, society, programming, hacking, & other stuff\",\"url\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/author\\\/bipinu\\\/#author\",\"url\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/author\\\/bipinu\\\/\",\"name\":\"Bipin Upadhyay\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0cbcf466ee2121969cf17f09ff0339a10196172f82611bf4c43d2fe67c8b4c97?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"Bipin Upadhyay\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#webpage\",\"url\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/\",\"name\":\"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!\",\"description\":\"Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running)\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/itek-powered-raspberry-pi-runs-for-over-7-hours\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/author\\\/bipinu\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/archive\\\/author\\\/bipinu\\\/#author\"},\"datePublished\":\"2013-03-31T13:18:44+02:00\",\"dateModified\":\"2013-04-02T16:19:33+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/\",\"name\":\"Code in my Bug!\",\"description\":\"Bipin's experiments with life, society, programming, hacking, & other stuff\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/projectbee.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!","description":"Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running)","canonical_url":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#article","name":"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!","headline":"itek powered Raspberry Pi runs for over 7 hours","author":{"@id":"https:\/\/projectbee.org\/blog\/archive\/author\/bipinu\/#author"},"publisher":{"@id":"https:\/\/projectbee.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"http:\/\/projectbee.org\/blog\/wp-content\/uploads\/2013\/03\/RPi-iTek-1024x678.jpg","@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#articleImage"},"datePublished":"2013-03-31T13:18:44+02:00","dateModified":"2013-04-02T16:19:33+02:00","inLanguage":"en-US","commentCount":9,"mainEntityOfPage":{"@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#webpage"},"isPartOf":{"@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#webpage"},"articleSection":"guide, hack, hackers, presentation, security, technology"},{"@type":"BreadcrumbList","@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/projectbee.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/projectbee.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/projectbee.org\/blog\/archive\/category\/guide\/#listItem","name":"guide"}},{"@type":"ListItem","@id":"https:\/\/projectbee.org\/blog\/archive\/category\/guide\/#listItem","position":2,"name":"guide","item":"https:\/\/projectbee.org\/blog\/archive\/category\/guide\/","nextItem":{"@type":"ListItem","@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#listItem","name":"itek powered Raspberry Pi runs for over 7 hours"},"previousItem":{"@type":"ListItem","@id":"https:\/\/projectbee.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#listItem","position":3,"name":"itek powered Raspberry Pi runs for over 7 hours","previousItem":{"@type":"ListItem","@id":"https:\/\/projectbee.org\/blog\/archive\/category\/guide\/#listItem","name":"guide"}}]},{"@type":"Organization","@id":"https:\/\/projectbee.org\/blog\/#organization","name":"Code in my Bug!","description":"Bipin's experiments with life, society, programming, hacking, & other stuff","url":"https:\/\/projectbee.org\/blog\/"},{"@type":"Person","@id":"https:\/\/projectbee.org\/blog\/archive\/author\/bipinu\/#author","url":"https:\/\/projectbee.org\/blog\/archive\/author\/bipinu\/","name":"Bipin Upadhyay","image":{"@type":"ImageObject","@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0cbcf466ee2121969cf17f09ff0339a10196172f82611bf4c43d2fe67c8b4c97?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"Bipin Upadhyay"}},{"@type":"WebPage","@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#webpage","url":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/","name":"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!","description":"Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running)","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/projectbee.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/#breadcrumblist"},"author":{"@id":"https:\/\/projectbee.org\/blog\/archive\/author\/bipinu\/#author"},"creator":{"@id":"https:\/\/projectbee.org\/blog\/archive\/author\/bipinu\/#author"},"datePublished":"2013-03-31T13:18:44+02:00","dateModified":"2013-04-02T16:19:33+02:00"},{"@type":"WebSite","@id":"https:\/\/projectbee.org\/blog\/#website","url":"https:\/\/projectbee.org\/blog\/","name":"Code in my Bug!","description":"Bipin's experiments with life, society, programming, hacking, & other stuff","inLanguage":"en-US","publisher":{"@id":"https:\/\/projectbee.org\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Code in my Bug! | Bipin's experiments with life, society, programming, hacking, &amp; other stuff","og:type":"article","og:title":"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!","og:description":"Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running)","og:url":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/","article:published_time":"2013-03-31T07:48:44+00:00","article:modified_time":"2013-04-02T10:49:33+00:00","twitter:card":"summary","twitter:title":"itek powered Raspberry Pi runs for over 7 hours | Code in my Bug!","twitter:description":"Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running)"},"aioseo_meta_data":{"post_id":"273","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-04-18 23:39:21","updated":"2025-06-04 01:12:12","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/projectbee.org\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/projectbee.org\/blog\/archive\/category\/guide\/\" title=\"guide\">guide<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\titek powered Raspberry Pi runs for over 7 hours\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/projectbee.org\/blog"},{"label":"guide","link":"https:\/\/projectbee.org\/blog\/archive\/category\/guide\/"},{"label":"itek powered Raspberry Pi runs for over 7 hours","link":"https:\/\/projectbee.org\/blog\/archive\/itek-powered-raspberry-pi-runs-for-over-7-hours\/"}],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pf2XR-4p","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/posts\/273","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/comments?post=273"}],"version-history":[{"count":21,"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/posts\/273\/revisions"}],"predecessor-version":[{"id":294,"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/posts\/273\/revisions\/294"}],"wp:attachment":[{"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/media?parent=273"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/categories?post=273"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/projectbee.org\/blog\/wp-json\/wp\/v2\/tags?post=273"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}