{"id":10332,"date":"2021-11-23T04:09:32","date_gmt":"2021-11-23T04:09:32","guid":{"rendered":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10332"},"modified":"2024-03-26T23:12:48","modified_gmt":"2024-03-26T23:12:48","slug":"piz-supercap","status":"publish","type":"product","link":"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/","title":{"rendered":"PiZ \u2013 SuperCap"},"content":{"rendered":"<p><b>The Problem<\/b><span style=\"font-weight: 400;\">: On our Raspberry Pi Zeros, we\u2019ve all experienced unexpected shutdowns. Whether it\u2019s a faulty connection or a power outage, SD Card corruption can result in the loss of important data! Simply put, no one enjoys unexpected shutdowns and losing work-in-progress programs and projects.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><\/p>\n<p><b>The Solution<\/b><span style=\"font-weight: 400;\">: The PiZ-SupCap enters the picture at this point. Simply put in your USB Power cord to the PiZ-SupCap and connect it straight out of the box via the 40 GPIO pins, and you\u2019re good to go!<\/span><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"size-medium wp-image-10326 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-600x510.png\" alt=\"piz-supercap\" width=\"600\" height=\"510\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The Raspberry Pi will be powered directly from the USB connector\u2019s 5V ports. When the power is turned off for any reason, the Pi Supercapacitor will take over and provide power for up to 15 seconds.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For a proper shutdown, we can use the 15 seconds provided to deliver a soft shutdown instruction.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If you don\u2019t want to issue a soft shutdown command every time the power is pulled, we can develop a program that will do so automatically when the USB cable is pulled.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">When the power cord is connected, it detects a high level on GPIO Pin #4. When the power is turned off, the GPIO Pin begins to read LOW. We can use this to write a program that advises the Raspberry Pi to shut down when the status of GPIO pin #4 is LOW.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Finally, we\u2019ll execute this program as background software that performs this operation in the background so that if the power cable is disconnected, the background software issues the shutdown command automatically.<\/span><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"size-medium wp-image-10327 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-close-600x510.png\" alt=\"piz-supercap-close\" width=\"600\" height=\"510\" \/><\/p>\n<p>&nbsp;<\/p>\n<h3><b>The Hardware<\/b><span style=\"font-weight: 400;\">:\u00a0<\/span><\/h3>\n<p><span style=\"font-weight: 400;\">The PiZ-simplified Sucap\u2019s schematics are shown below. The power enters the PiZ-Sucap through the J1 Connector. Fuse F1 protects against overcurrent. The SuperCap C1 is at the heart of its design. When the connection at J1 is pulled out, the Raspberry Pi Zero is powered by the charged capacitor C1.<\/span><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"size-medium wp-image-10328 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-hardware-circuit-600x493.png\" alt=\"piz-supercap-hardware-circuit\" width=\"600\" height=\"493\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The software can detect if the Cable is pulled out thanks to the resistor Divider R3 and R4. When the Power Cable at J1 supplies power, the junction of R3 and R4 is at 2.5V. When the power cable is removed, the voltage drops to 0V.<\/span><\/p>\n<h3><b>The Software<\/b><span style=\"font-weight: 400;\">: <\/span><\/h3>\n<p><span style=\"font-weight: 400;\">We already know that the status of GPIO Pin #4 indicates whether the USB cable is giving power to the board, so we can develop the software to send a gentle shutdown when the USB wire is withdrawn.<\/span><\/p>\n<p><b>Step 1<\/b><span style=\"font-weight: 400;\">:\u00a0 To write our software, open Thonny IDE or any other Python IDE of your choosing. Copy and paste the code below (to see what\u2019s going on, read the comments).\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Once you\u2019ve finished, save the application to a file of your choice.<\/span><\/p>\n<blockquote><p>#Made for Pi Z SuperCap<br \/>\n#Code by Abhinav Shukla<br \/>\nImport RPI.GPIO as GPIO<br \/>\n#Import to read state of GPIO Pin<br \/>\nimport os<br \/>\n#Import to execute sudo shutdown command<br \/>\nimport time<br \/>\n#Import for sleep function, gives the user time to plug the cable back in<br \/>\nGPIO.setmode(GPIO.BCM)<br \/>\n#Uses BCM pin numbering (i.e., the GPIO number, not the pin number)<br \/>\nGPIO.setup(4, GPIO.IN)<br \/>\n#Setup to receive input from GPIO pin #4 as HIGH(1) or LOW(0)<br \/>\nwhile True:<br \/>\nif GPIO.input(4) == 0: #0==Low, if it detects cable is pulled<br \/>\ntime.sleep(9) #Sleep for 9 seconds, allows user to plug the cable back in in the allotted time,<br \/>\n#change as needed for up to 30 seconds<br \/>\nIf GPIO.input(4) == 1: #If after 9 seconds, user plugs cable back in and GPIO 4 reads<br \/>\n#HIGH passes<br \/>\nPass<br \/>\nelse:<br \/>\nos.system(\u201csudo shutdown -h now\u201d) #If cable not plugged back in, execute shutdown #command<br \/>\nif GPIO.input(4) == 1:<br \/>\nPass<\/p><\/blockquote>\n<p><b>Step 2<\/b><span style=\"font-weight: 400;\">: Now, we want the program to execute every time the Raspberry Pi is turned on. To do so, simply open a command prompt and enter the following command: <\/span><b>\u201csudo nano \/etc\/rc.local\u201d<\/b><\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">Now scroll down to the bottom of the file and add \u201cpython\u201d and your file location immediately before the line \u201cexit 0.\u201d \u201cpython \/home\/pi\/supercap shutdown.py\u201d was the command in my instance.<\/span><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"size-medium wp-image-10330 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/cod-piz-supercap-600x510.png\" alt=\"code-piz-supercap\" width=\"600\" height=\"510\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Exit by pressing \u201cCTRL + X,\u201d then \u201cY,\u201d then \u201cENTER\u201d once you\u2019ve added that line.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">That\u2019s all there is to it! We\u2019ve completed our task. Reboot the Raspberry Pi for the modifications to take effect, and you won\u2019t have to worry about losing crucial data or corrupting your SD Card the next time it loses power!<\/span><\/p>\n<h3><b>FAQs:<\/b><\/h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Is the Pi SuperCapacitor compatible with any Raspberry Pi?<\/strong> No, the Pi SuperCapatiator only works on the Raspberry Pi Zero, as far as we know.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>How long does the SuperCapacitator\u2019s battery last on the Pi Zero?<\/strong> When completely charged, the SuperCapacitator\u2019s battery lasts about 15 seconds.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>How long will the boards take to arrive?<\/strong> Early December is the target date for US buyers, while early January 2021 is the target date for overseas buyers.<\/span><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>Abhinav S. is a senior year student at Foxboro High School in Massachusetts. He is involved in solving problems related to Raspberry Pi and coding when he is not doing School Homeworks or when not enjoying Basketball. He is applying for College Admission ( A computer Science from NYU\u00a0 or Columbia in New York and NorthEastern in MA are his favorite)\u00a0 \u00a0Learning and creating products with Moonpreneur is going to help in the College Admissions.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone  wp-image-10354\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-600x600.png\" alt=\"\" width=\"390\" height=\"390\" srcset=\"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-600x600.png 600w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-180x180.png 180w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-300x300.png 300w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-24x24.png 24w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-48x48.png 48w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-96x96.png 96w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-150x150.png 150w\" sizes=\"(max-width: 390px) 100vw, 390px\" \/><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p><span style=\"font-weight: 400;\">Resolve Raspberry Pi SD Card Corruption issue using soft Shutdown with a Super Capacitor<\/span><\/p>\n","protected":false},"featured_media":10331,"comment_status":"open","ping_status":"closed","template":"","meta":{"inline_featured_image":false},"product_cat":[70],"product_tag":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v16.4 (Yoast SEO v20.11) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PiZ \u2013 SuperCap - Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PiZ \u2013 SuperCap - Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur\" \/>\n<meta property=\"og:description\" content=\"Resolve Raspberry Pi SD Card Corruption issue using soft Shutdown with a Super Capacitor\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/\" \/>\n<meta property=\"og:site_name\" content=\"Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-26T23:12:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1100\" \/>\n\t<meta property=\"og:image:height\" content=\"950\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/\",\"url\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/\",\"name\":\"PiZ \u2013 SuperCap - Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur\",\"isPartOf\":{\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/#website\"},\"datePublished\":\"2021-11-23T04:09:32+00:00\",\"dateModified\":\"2024-03-26T23:12:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shop\",\"item\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/shop\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"PiZ \u2013 SuperCap\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/#website\",\"url\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/\",\"name\":\"Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/#organization\",\"name\":\"Moonpreneur\",\"url\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/10\/Moonshotjr-logo.png\",\"contentUrl\":\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/10\/Moonshotjr-logo.png\",\"width\":298,\"height\":100,\"caption\":\"Moonpreneur\"},\"image\":{\"@id\":\"https:\/\/mp.moonpreneur.com\/moonfunded\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"PiZ \u2013 SuperCap - Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur","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:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/","og_locale":"en_US","og_type":"article","og_title":"PiZ \u2013 SuperCap - Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur","og_description":"Resolve Raspberry Pi SD Card Corruption issue using soft Shutdown with a Super Capacitor","og_url":"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/","og_site_name":"Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur","article_modified_time":"2024-03-26T23:12:48+00:00","og_image":[{"width":1100,"height":950,"url":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/","url":"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/","name":"PiZ \u2013 SuperCap - Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur","isPartOf":{"@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/#website"},"datePublished":"2021-11-23T04:09:32+00:00","dateModified":"2024-03-26T23:12:48+00:00","breadcrumb":{"@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mp.moonpreneur.com\/moonfunded\/"},{"@type":"ListItem","position":2,"name":"Shop","item":"https:\/\/mp.moonpreneur.com\/moonfunded\/shop\/"},{"@type":"ListItem","position":3,"name":"PiZ \u2013 SuperCap"}]},{"@type":"WebSite","@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/#website","url":"https:\/\/mp.moonpreneur.com\/moonfunded\/","name":"Moonfunded: We Crowdfund &amp; Support Innovations | Moonpreneur","description":"","publisher":{"@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mp.moonpreneur.com\/moonfunded\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/#organization","name":"Moonpreneur","url":"https:\/\/mp.moonpreneur.com\/moonfunded\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/#\/schema\/logo\/image\/","url":"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/10\/Moonshotjr-logo.png","contentUrl":"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/10\/Moonshotjr-logo.png","width":298,"height":100,"caption":"Moonpreneur"},"image":{"@id":"https:\/\/mp.moonpreneur.com\/moonfunded\/#\/schema\/logo\/image\/"}}]}},"column":"2","wpcf_product":{"display_name":"Abhinav Shukla","location":"","funding_goal":"200","total_raised":0,"raised_percent":"0%","desc":"The Problem: On our ","days_remaining":0,"product_thumb":"<img width=\"300\" height=\"300\" src=\"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded-300x300.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded-300x300.jpg 300w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded-600x600.jpg 600w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded-180x180.jpg 180w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded-24x24.jpg 24w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded-48x48.jpg 48w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded-96x96.jpg 96w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded-150x150.jpg 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>"},"wpcf_dashboard":"<div class=\"woocommerce\"><div class=\"woocommerce-info\">Please log in first? <a class=\"wpneoShowLogin\" href=\"#\">Click here to login<\/a><\/div><div class=\"wpneo_login_form_div\" style=\"display: none;\"><form name=\"loginform\" id=\"loginform\" action=\"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-login.php\" method=\"post\"><p class=\"login-username\">\n\t\t\t\t<label for=\"user_login\">Username or Email Address<\/label>\n\t\t\t\t<input type=\"text\" name=\"log\" id=\"user_login\" autocomplete=\"username\" class=\"input\" value=\"\" size=\"20\" \/>\n\t\t\t<\/p><p class=\"login-password\">\n\t\t\t\t<label for=\"user_pass\">Password<\/label>\n\t\t\t\t<input type=\"password\" name=\"pwd\" id=\"user_pass\" autocomplete=\"current-password\" spellcheck=\"false\" class=\"input\" value=\"\" size=\"20\" \/>\n\t\t\t<\/p><p class=\"login-remember\"><label><input name=\"rememberme\" type=\"checkbox\" id=\"rememberme\" value=\"forever\" \/> Remember Me<\/label><\/p><p class=\"login-submit\">\n\t\t\t\t<input type=\"submit\" name=\"wp-submit\" id=\"wp-submit\" class=\"button button-primary\" value=\"Log In\" \/>\n\t\t\t\t<input type=\"hidden\" name=\"redirect_to\" value=\"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/product\/10332\" \/>\n\t\t\t<\/p><\/form><\/div><\/div>","wpcf_single_campaign":"\n<div class=\"wpneo-list-details\">\n    <div itemscope itemtype=\"http:\/\/schema.org\/ItemList\">\n     <div class=\"campaign-top\">\n        <div class=\"container\">\n           <div class=\"row\">\n              \n              <div class=\"col-xl-7 col-lg-6 col-md-6 col-sm-12 col-xs-12\">\n                 <div class=\"campaign-single-left\">\n            <div class=\"wpneo-post-img\">\n            <div class=\"wpneo-video-wrapper\"><iframe title=\"PiZ - SuperCap by Abhinav S - Moonfunded\" width=\"900\" height=\"506\" src=\"https:\/\/www.youtube.com\/embed\/n51Trs51bf0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/div>                    <\/div>\n        <div style=\"clear: both\"><\/div>\n<div class=\"wpneo-single-short-description\">\n    <h2>Short Story<\/h2>\n    <div itemprop=\"description\">\n        <p><span style=\"font-weight: 400;\">Resolve Raspberry Pi SD Card Corruption issue using soft Shutdown with a Super Capacitor<\/span><\/p>\n    <\/div>\n<\/div>\n    \n<\/div>              <\/div> \n\n              <div class=\"col-xl-5 col-lg-6 col-md-6 col-sm-12 col-xs-12\">\n                 <div class=\"campaign-single-summary campaign-single-right\">\n                    <div class=\"wpneo-campaign-summary-inner\" itemscope itemtype=\"http:\/\/schema.org\/DonateAction\">\n                       \n                       <div class=\"campaign-meta clearfix\">\n                          <div class=\"campaign-categories\">\n                             <span class=\"posted_in\"> <a href=\"https:\/\/mp.moonpreneur.com\/moonfunded\/product-category\/tech\/\" rel=\"tag\">Tech<\/a><\/span>                          <\/div>\n                                                 <\/div>\n                          \n                       <h2 class=\"wpneo-campaign-title\">PiZ \u2013 SuperCap<\/h2>\n                       \n                       <div class=\"campaign-info\">\n                          <div class=\"campaign-pledged info-item\">\n                             <span class=\"info-value\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>0.00<\/bdi><\/span><\/span>\n                             <span class=\"info-label\">Pledged<\/span>\n                          <\/div>\n                          <div class=\"campaign-backers info-item\">\n                             <span class=\"info-value\">0<\/span>\n                             <span class=\"info-label\">Backers<\/span>\n                          <\/div>\n                          <div class=\"camapign-time_remaining info-item\">    <div class=\"campaign-time-remaining\">\n                                <span class=\"info-value time-remaining-desc\">0<\/span>\n            \n                 \n                <span class=\"info-label time-remaining-name\">Days Left<\/span>\n              \n\n            <\/div>\n<\/div>\n                       <\/div>\n\n                       <!-- Campaign Raised -->\n                       <div class=\"campaign-raised clearfix\">\n                          <div class=\"campaign-raised-label\">Raised: <\/div>\n                          <div class=\"campaign-percent_raised\">0.0%<\/div>\n                       <\/div>\n                       <div class=\"campaign-progress clearfix\">\n                          <div class=\"progress\">\n                             <div class=\"progress-bar\" data-progress-animation=\"0%\">\n                                <span class=\"percentage\"><span><\/span><\/span>\n                             <\/div>\n                          <\/div>\n                       <\/div>\n                       <!-- End Campaign Raised -->\n\n                       <div class=\"campaign-goal\">\n                          <span class=\"label-goal\">Goal:<\/span>\n                          <span class=\"value-goal\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;<\/span>200.00<\/bdi><\/span><\/span>\n                       <\/div> \n\n                       <div class=\"wpneo-single-sidebar ASA\">\n\tThe days are over.<\/div>\n                       \n<div class=\"wpneo-campaign-creator-info-wrapper\">\n    <div class=\"wpneo-campaign-creator-avatar\">\n                                    <img alt='' src='https:\/\/secure.gravatar.com\/avatar\/a1c6e756310a49c2cd24268ae38fdd85?s=80&#038;d=mm&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/a1c6e756310a49c2cd24268ae38fdd85?s=160&#038;d=mm&#038;r=g 2x' class='avatar avatar-80 photo' height='80' width='80' loading='lazy' decoding='async'\/>                        <\/div>\n    <div class=\"wpneo-campaign-creator-details\">\n        <div><span>By<\/span>&nbsp;<a href=\"javascript:;\" data-author=\"24\" class=\"wpneo-fund-modal-btn\" >Abhinav Shukla<\/a> <\/div>\n        <div>1 Campaigns | <span id=\"likecounter\">2<\/span>  <img class=\"campainglikeimg\" style=\"width: 10%;\" src=\"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/themes\/msjcrowdfunding\/images\/like.png\"\/> \n\t\t\t<p id=\"votemsg\"><\/p>\n\t\t\t<div class=\"invalid-feedback invalid-email\">Please fill out this field.<\/div>\n\t\t\t<form id=\"voting\" method=\"post\"><input type=\"hidden\" name=\"activepost\" id=\"activepost\" value=\"10332\" \/><input type=\"hidden\" name=\"vote\"  value=\"vote\" \/><input type=\"email\" name=\"email\" id=\"vemail\" placeholder=\"Enter email id to like\"><input type=\"button\" value=\"Like\" id=\"votecamp\" class=\"btn-color-pr btn-color-pr-lar\"><\/form>\n\t\t<\/div>\n            <\/div>\n<\/div>\n                    <\/div>\n                 <\/div>\n              <\/div>  \n\n           <\/div>\n\n        <\/div>\n     <\/div>         \n     \n     <div class=\"campaign-bottom\">\n        <div class=\"container\">\n           <div class=\"row\">\n\n              <!-- Main content -->\n              <div class=\"\">\n                                                     <div class=\"social-container\">\n                <span>Share: <\/span>\n                <div class=\"links\">\n                                            <a href=\"javascript:void(0)\" class=\"wpcf-share s_facebook\"><i class=\"wpneo-icon wpneo-icon-facebook\"><\/i> <\/a>\n                                                                <a href=\"javascript:void(0)\" class=\"wpcf-share s_twitter\"><i class=\"wpneo-icon wpneo-icon-twitter\"><\/i> <\/a>\n                                                                <a href=\"javascript:void(0)\" class=\"wpcf-share s_pinterest\"><i class=\"wpneo-icon wpneo-icon-pinterest\"><\/i> <\/a>\n                                                                <a href=\"javascript:void(0)\" class=\"wpcf-share s_linkedin\"><i class=\"wpneo-icon wpneo-icon-linkedin\"><\/i> <\/a>\n                                                                                                                                                                                                                                <a href=\"javascript:void(0)\" class=\"wpcf-share s_whatsapp\"><i class=\"wpneo-icon wpneo-icon-whatsapp\"><\/i> <\/a>\n                                                                <a href=\"javascript:void(0)\" class=\"embedlink\" data-postid=\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/\"><i class=\"wpneo-icon wpneo-icon-embed\" data-postid=\"10332\"><\/i><\/a>\n                                    <\/div>\n            <\/div>\n\n            <script type=\"text\/javascript\">\n                jQuery(document).ready(function($){\n                    $('.wpcf-share').ShareLink({\n                        title: \"PiZ \u2013 SuperCap\",\n                        text: \"resolve-raspberry-pi-sd-card-corruption-issue-using-soft-shutdown-with-a-super-capacitor\",\n                        image: \"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-moonfunded.jpg\",\n                        url: \"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/\"\n                    });\n                });\n            <\/script>\n            \n    \n    <div class=\"wpneo-tabs\">\n        <ul class=\"wpneo-tabs-menu\">\n                            <li class=\"wpneo-current description_tab\">\n                    <a href=\"#wpneo-tab-description\">Story<\/a>\n                <\/li>\n                            <li class=\" reviews_tab\">\n                    <a href=\"#wpneo-tab-reviews\">Reviews (1)<\/a>\n                <\/li>\n                    <\/ul>\n        <div class=\"wpneo-tab\">\n                            <div id=\"wpneo-tab-description\" class=\"wpneo-tab-content\">\n                    <div class=\"row\">\n          <div class=\"tab-description tab-campaign-story-left col-xl-12 col-lg-12 col-md-12 col-sm-12 col-xs-12\">\n           <h2>Story<\/h2>\n           <p><b>The Problem<\/b><span style=\"font-weight: 400;\">: On our Raspberry Pi Zeros, we\u2019ve all experienced unexpected shutdowns. Whether it\u2019s a faulty connection or a power outage, SD Card corruption can result in the loss of important data! Simply put, no one enjoys unexpected shutdowns and losing work-in-progress programs and projects.<\/span><span style=\"font-weight: 400;\"><br \/>\n<\/span><\/p>\n<p><b>The Solution<\/b><span style=\"font-weight: 400;\">: The PiZ-SupCap enters the picture at this point. Simply put in your USB Power cord to the PiZ-SupCap and connect it straight out of the box via the 40 GPIO pins, and you\u2019re good to go!<\/span><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"size-medium wp-image-10326 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-600x510.png\" alt=\"piz-supercap\" width=\"600\" height=\"510\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The Raspberry Pi will be powered directly from the USB connector\u2019s 5V ports. When the power is turned off for any reason, the Pi Supercapacitor will take over and provide power for up to 15 seconds.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For a proper shutdown, we can use the 15 seconds provided to deliver a soft shutdown instruction.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">If you don\u2019t want to issue a soft shutdown command every time the power is pulled, we can develop a program that will do so automatically when the USB cable is pulled.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">When the power cord is connected, it detects a high level on GPIO Pin #4. When the power is turned off, the GPIO Pin begins to read LOW. We can use this to write a program that advises the Raspberry Pi to shut down when the status of GPIO pin #4 is LOW.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Finally, we\u2019ll execute this program as background software that performs this operation in the background so that if the power cable is disconnected, the background software issues the shutdown command automatically.<\/span><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"size-medium wp-image-10327 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-close-600x510.png\" alt=\"piz-supercap-close\" width=\"600\" height=\"510\" \/><\/p>\n<p>&nbsp;<\/p>\n<h3><b>The Hardware<\/b><span style=\"font-weight: 400;\">:\u00a0<\/span><\/h3>\n<p><span style=\"font-weight: 400;\">The PiZ-simplified Sucap\u2019s schematics are shown below. The power enters the PiZ-Sucap through the J1 Connector. Fuse F1 protects against overcurrent. The SuperCap C1 is at the heart of its design. When the connection at J1 is pulled out, the Raspberry Pi Zero is powered by the charged capacitor C1.<\/span><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"size-medium wp-image-10328 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/piz-supercap-hardware-circuit-600x493.png\" alt=\"piz-supercap-hardware-circuit\" width=\"600\" height=\"493\" \/><\/p>\n<p><span style=\"font-weight: 400;\">The software can detect if the Cable is pulled out thanks to the resistor Divider R3 and R4. When the Power Cable at J1 supplies power, the junction of R3 and R4 is at 2.5V. When the power cable is removed, the voltage drops to 0V.<\/span><\/p>\n<h3><b>The Software<\/b><span style=\"font-weight: 400;\">: <\/span><\/h3>\n<p><span style=\"font-weight: 400;\">We already know that the status of GPIO Pin #4 indicates whether the USB cable is giving power to the board, so we can develop the software to send a gentle shutdown when the USB wire is withdrawn.<\/span><\/p>\n<p><b>Step 1<\/b><span style=\"font-weight: 400;\">:\u00a0 To write our software, open Thonny IDE or any other Python IDE of your choosing. Copy and paste the code below (to see what\u2019s going on, read the comments).\u00a0<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Once you\u2019ve finished, save the application to a file of your choice.<\/span><\/p>\n<blockquote><p>#Made for Pi Z SuperCap<br \/>\n#Code by Abhinav Shukla<br \/>\nImport RPI.GPIO as GPIO<br \/>\n#Import to read state of GPIO Pin<br \/>\nimport os<br \/>\n#Import to execute sudo shutdown command<br \/>\nimport time<br \/>\n#Import for sleep function, gives the user time to plug the cable back in<br \/>\nGPIO.setmode(GPIO.BCM)<br \/>\n#Uses BCM pin numbering (i.e., the GPIO number, not the pin number)<br \/>\nGPIO.setup(4, GPIO.IN)<br \/>\n#Setup to receive input from GPIO pin #4 as HIGH(1) or LOW(0)<br \/>\nwhile True:<br \/>\nif GPIO.input(4) == 0: #0==Low, if it detects cable is pulled<br \/>\ntime.sleep(9) #Sleep for 9 seconds, allows user to plug the cable back in in the allotted time,<br \/>\n#change as needed for up to 30 seconds<br \/>\nIf GPIO.input(4) == 1: #If after 9 seconds, user plugs cable back in and GPIO 4 reads<br \/>\n#HIGH passes<br \/>\nPass<br \/>\nelse:<br \/>\nos.system(\u201csudo shutdown -h now\u201d) #If cable not plugged back in, execute shutdown #command<br \/>\nif GPIO.input(4) == 1:<br \/>\nPass<\/p><\/blockquote>\n<p><b>Step 2<\/b><span style=\"font-weight: 400;\">: Now, we want the program to execute every time the Raspberry Pi is turned on. To do so, simply open a command prompt and enter the following command: <\/span><b>\u201csudo nano \/etc\/rc.local\u201d<\/b><\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">Now scroll down to the bottom of the file and add \u201cpython\u201d and your file location immediately before the line \u201cexit 0.\u201d \u201cpython \/home\/pi\/supercap shutdown.py\u201d was the command in my instance.<\/span><\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"size-medium wp-image-10330 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/cod-piz-supercap-600x510.png\" alt=\"code-piz-supercap\" width=\"600\" height=\"510\" \/><\/p>\n<p><span style=\"font-weight: 400;\">Exit by pressing \u201cCTRL + X,\u201d then \u201cY,\u201d then \u201cENTER\u201d once you\u2019ve added that line.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">That\u2019s all there is to it! We\u2019ve completed our task. Reboot the Raspberry Pi for the modifications to take effect, and you won\u2019t have to worry about losing crucial data or corrupting your SD Card the next time it loses power!<\/span><\/p>\n<h3><b>FAQs:<\/b><\/h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Is the Pi SuperCapacitor compatible with any Raspberry Pi?<\/strong> No, the Pi SuperCapatiator only works on the Raspberry Pi Zero, as far as we know.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>How long does the SuperCapacitator\u2019s battery last on the Pi Zero?<\/strong> When completely charged, the SuperCapacitator\u2019s battery lasts about 15 seconds.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>How long will the boards take to arrive?<\/strong> Early December is the target date for US buyers, while early January 2021 is the target date for overseas buyers.<\/span><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>Abhinav S. is a senior year student at Foxboro High School in Massachusetts. He is involved in solving problems related to Raspberry Pi and coding when he is not doing School Homeworks or when not enjoying Basketball. He is applying for College Admission ( A computer Science from NYU\u00a0 or Columbia in New York and NorthEastern in MA are his favorite)\u00a0 \u00a0Learning and creating products with Moonpreneur is going to help in the College Admissions.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone  wp-image-10354\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-600x600.png\" alt=\"\" width=\"390\" height=\"390\" srcset=\"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-600x600.png 600w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-180x180.png 180w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-300x300.png 300w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-24x24.png 24w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-48x48.png 48w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-96x96.png 96w, https:\/\/mp.moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/11\/Abhinav-S-150x150.png 150w\" sizes=\"(max-width: 390px) 100vw, 390px\" \/><\/p>\n<p>&nbsp;<\/p>\n       <\/div>\n   \n   <div class=\"tab-rewards tab-campaign-story-right col-xl-9 col-lg-9 col-md-9 col-sm-9 col-xs-12\">\n      <div style=\"clear: both\"><\/div>   \t<div style=\"clear: both\"><\/div>\n   <\/div>\n<\/div>                <\/div>\n                            <div id=\"wpneo-tab-reviews\" class=\"wpneo-tab-content\">\n                                    <\/div>\n                    <\/div>\n        <div class=\"clear-float\"><\/div>\n    <\/div>\n\n\n                 <meta itemprop=\"url\" content=\"https:\/\/mp.moonpreneur.com\/moonfunded\/project\/piz-supercap\/\" \/>\n              <\/div>  \n              <!-- End Main content -->\n           <\/div>   \n        <\/div>   \n     <\/div> \n  <\/div>\n\n        <\/div>    ","wpcf_popular_campaign":[{"ID":10571,"post_author":"34","post_date":"2022-06-16 14:22:21","post_date_gmt":"2022-06-16 14:22:21","post_content":"<b>What is a Home Buddy - Smart Door Lock System? What does it do?<\/b>\r\n\r\nI have created a door lock system using the Raspberry Pi Pico. The door lock creates a safe and calm environment for you and your family, especially in your home office.\u00a0You can use it for any room in the house.\r\n\r\n<img class=\"alignnone wp-image-10602 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-4-scaled.jpg\" alt=\"What is a Home Buddy - Smart Door Lock System? What does it do?\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>What is in the box? What is the function of the components in the box?<\/b>\r\n<ul>\r\n \t<li aria-level=\"1\">Raspberry Pi Pico - Programming Board<\/li>\r\n \t<li aria-level=\"1\">Solenoid: Electrical lock<\/li>\r\n \t<li aria-level=\"1\">MOSFET Driver: To control solenoid<\/li>\r\n \t<li aria-level=\"1\">Buck converter: To supply power to Pico Board<\/li>\r\n \t<li aria-level=\"1\">Barrel Jack: Input Supply<\/li>\r\n \t<li aria-level=\"1\">Keypad: To enter the password enclosure<\/li>\r\n \t<li aria-level=\"1\">\u00a0Screen: To view the pin-entry details<\/li>\r\n<\/ul>\r\n<b>Raspberry Pi Pico with case cover: <\/b>The Raspberry Pi Pico is a tiny, fast, and affordable board built using RP2040. This is a new microcontroller chip from the Raspberry Pi family and you can use it to learn to program fun, practical projects.\r\n\r\n<b>The Solenoid acts as an electrical lock.<\/b>\r\n\r\n<b>MOSFET Driver is used to control solenoid<\/b>\r\n\r\n<b>Buck converter supplies power to PicoBoard<\/b>\r\n\r\n<b>Barrel Jack is for input supply<\/b>\r\n\r\n<b>Keypad to enter password enclosure<\/b>\r\n\r\n<b>The screen helps in viewing the pin-entry details.<\/b>\r\n\r\n<img class=\"alignnone wp-image-10605 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-7-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>What problem is your product solving?<\/b>\r\n\r\nAs the world embraces working from home, we need an innovative solution to help stop family members from barging into rooms unannounced and ensure privacy or safety in each room. It helps prevent disruptions during meetings; place it outside your home office to stop kids\/adults from entering the room without your knowledge during calls\/meetings.\r\n\r\n<img class=\"alignnone wp-image-10600 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-2-scaled.jpg\" alt=\"What problem is your product solving?\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>How is your product better at solving the problem as compared to the competition? Why should a person choose your product? \u00a0<\/b>\r\n\r\nIt is an all-in-one simple automated door lock system that operates using a pin-code entry system. Home Buddy enables the user to feel safe enough to leave their laptop unattended without the worry of it being tampered with by kids. The door lock won\u2019t allow people to walk in during video conferences.\r\n\r\nThis is a multi-purpose lock, making it a perfect choice in this post-pandemic age. It\u2019s a simple, light design and easy to operate, even for the elderly and non-techies!\r\n\r\n<img class=\"alignnone wp-image-10603 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-5-scaled.jpg\" alt=\"Featres\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>Who are you?<\/b>\r\n\r\nHello, my name is Yusuf Sherrief. I\u2019m from London and I have lived in South Africa and the UAE. I am 10 years old and have a brother, a sister, and a cat named Lila. I enjoy racing, and when I grow up, I want to be an F1 driver for Mercedes Benz or McClaren. On my thirteen birthday, I will get a Go-Kart and compete in races.\r\n\r\n<em><img class=\"alignnone wp-image-10599 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-1-scaled.jpg\" alt=\"About creator\" width=\"2560\" height=\"1688\" \/><\/em>\r\n\r\n<b>Where did this project come from?<\/b>\r\n\r\nThe thing that inspired me to create this product was the time when we were all at home during the pandemic lockdown. My dad was working from home. He used to be on calls and meetings in the home office, but he wouldn\u2019t lock the door. My younger siblings would run into the room whilst he was on calls, and it became a problem. That\u2019s when I decided to create this product.\r\n\r\n<img class=\"alignnone wp-image-10601 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-3-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>Why do you care about privacy and security?<\/b>\r\n\r\nBoth parents and children need to have uninterrupted time. For example, a student preparing for their final exam to graduate can study properly after putting the lock outside.\r\n\r\n<b>Who will benefit from this product the most?<\/b><b>\u00a0<\/b>\r\n\r\nAll the parents working from home and those who have meetings and calls often. It can also help teenagers or university students by providing them with privacy to study or do online learning peacefully. And it can come in handy when you just need some time alone.\r\n\r\n<img class=\"alignnone wp-image-10604 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-6-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>There are other smart door locks on the market. What makes your system unique?<\/b>\r\n\r\nYou can easily set it up. The best part is that you assembled it out of a box! So, no need to waste hours and hours watching YouTube videos or hiring a locksmith. We even have instructions if you get stuck. The door lock is compatible with all doors, no matter the size.\r\n\r\n<b><\/b><b>Why do you want this to be on a crowdfunding platform?\u00a0<\/b>\r\n\r\nThis is the prototype of my product. I want\u00a0<b>to enhance the experience further. For that, I have to buy more<\/b>\u00a0<b>parts. I also want to iterate this product.<\/b>\u00a0I also wanted to create more such products. I need funds to fulfill my goals. That is why I want to take it to a crowdfunding platform. After raising the funds from there, I would be able to work on my ideas.\r\n\r\n<b>What will you do with the funds you receive?<\/b><b>\u00a0<\/b>\r\n\r\nI will use $200 to make the product, $250 for marketing this product, and 70 $ for shipping and logistics.","post_title":"Home Buddy - Smart Door Lock System","post_excerpt":"This 10-year-old young innovator Yusuf Sherrief not just empathized with his father but solved his problem by inventing Home Buddy, a smart door lock system that helps to maintain privacy by keeping intrusions at bay. He created this easy to install lock system using the Raspberry Pi Pico. University students and teenagers can enjoy its benefits too.\r\n\r\n&nbsp;","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"home-buddy-smart-door-lock-system-2","to_ping":"","pinged":"","post_modified":"2022-06-25 16:05:45","post_modified_gmt":"2022-06-25 16:05:45","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10571","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10498,"post_author":"35","post_date":"2022-04-12 13:36:14","post_date_gmt":"2022-04-12 13:36:14","post_content":"<strong>Where Did This Project Come From?<\/strong>\r\n\r\nThe idea of making a smart light bulb struck me when I was playing with my LED lights and lights in my room. I had to go all the way across my room just to turn off both the lights! They were both in different places, by the way. As I was thinking about this problem, I realized how great it would be if I could combine the two and make automatic switches! This would make my life so much easier and I can play tricks on my friends.\r\n\r\n<img class=\"alignnone size-medium wp-image-10510\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/2-600x408.jpg\" alt=\"Smart Light Bulb Idea\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>How is it Solving This Problem?<\/strong>\r\n\r\nThis is solving the problem as instead of having to manually put up the LED light strips, we can just screw the light bulb onto the ceiling. It will save so much time and we won't get neck aches from looking up for so long! It changes colors. It also solves the problem of saving electricity, meaning that whenever there is no movement in the room, it'll turn off automatically. Our parents won\u2019t have to remind us all the time to turn the lights off. Not only that, it makes our lives easier because it is a combination of both LEDs and light bulbs essentially making it a 3-in-1.\r\n\r\n<img class=\"alignnone size-medium wp-image-10511\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/3-600x408.jpg\" alt=\"Multipurpose Lighting Solution\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>Why Do You Care?<\/strong>\r\n\r\nI want to make everyone\u2019s lives easier and I love LEDs so I thought why not make something that would improve light bulbs and turn them into multifunctional LEDs!\r\nEveryone loves LEDs and multifunctional ones are even cooler!\r\n\r\n<strong>Why Are You Creating This?<\/strong>\r\n\r\nI am creating this to make our lives simpler. Now, not only do we get to enjoy the beautiful LEDs, but they also have multiple functions that will save us time and energy!\r\n\r\n<strong>Who Will This Product Benefit Most?<\/strong>\r\n\r\nWho doesn\u2019t like cool LEDs? The kind of RGB lights that make teenage gamers smile. Its cool functions and disco mode make gaming or even anything so much more enjoyable. With my new project, it will be gaming at a whole other level. The sensors in it will make life easier. It has motion-detecting sensors and sound detecting sensors which means that at the sound of a clap, your light will turn on!\r\n\r\n<img class=\"alignnone size-medium wp-image-10521\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/Smart-Light-Bulb-Carol-Yan-5-600x408.jpg\" alt=\"Smart light bulb benefits\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>What Makes Your Product Unique?<\/strong>\r\n\r\nIf we could combine LEDs and light bulbs, we could make the most epic creation, a LED light bulb that would combine the features of both the lights and improve upon them. This product is better than my competitors because it has multiple features in one and can make someone\u2019s life a lot easier. It has different sensors and controls. It is a combination of a light bulb and LED lights that make it better than most light bulbs\/LEDs.\r\n\r\n<strong>Why Do You Want it to Be on a Crowdfunding Platform?<\/strong>\r\n\r\nI want my product to be on a crowdfunding platform so that more people are aware of the release of this amazing 3-in-1 LED light bulb that will make everyone happy and help me raise enough funds so that I can start the production of this product. By helping me reach my goal and raising enough money, they can get their 3-in-1 LED light bulb that will make their lives so much simpler!\r\n\r\n<b>What are the Features of the Smart Light?<\/b>\r\n<ul>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Color of light can be changed with an IR remote.<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Brightness of light can be changed with an IR remote.<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Turning the light ON and OFF after sensing the sound and motion.<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Changing the mode of operation to fade-in fadeout with IR remote.<\/span><\/li>\r\n<\/ul>\r\n<img class=\"alignnone size-medium wp-image-10522\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/slide-2-600x408.jpg\" alt=\"Smart light bulb features\" width=\"600\" height=\"408\" \/>\r\n\r\n<b>What are the Components of the Smart Light?<\/b>\r\n\r\nSmart Light has the following components:\r\n<ul>\r\n \t<li aria-level=\"1\"><b>Arduino Nano board<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>PIR sensor<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>Microphone sensor<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>16-pixel Neopixel ring,\u00a0<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>Power source,\u00a0<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>Light enclosure<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>\u00a0IR remote<\/b><\/li>\r\n<\/ul>\r\n<img class=\"alignnone size-medium wp-image-10523\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/slide-1-600x408.jpg\" alt=\"Smart Light Bulb components\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>What\u2019s in the Box? (Product Specifications)<\/strong>\r\n\r\nInside the box, I am going to have the light bulb, instructions, and a remote.\r\n\r\n<img class=\"alignnone size-medium wp-image-10514\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/4-600x408.jpg\" alt=\"Smart light bulb components\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>About the Creator<\/strong>\r\n\r\nHello! I am Carol Yan, an 8th grader. I love to read and play golf. I love to play the piano. I also like engineering and because of that, I constantly have ideas for inventions to make the world a better place!\r\n\r\n<img class=\"alignnone size-medium wp-image-10515\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/1-600x408.jpg\" alt=\"About the author\" width=\"600\" height=\"408\" \/>","post_title":"Smart Light Bulb: Multipurpose sustainable lighting solution","post_excerpt":"Smart Light Bulb is a multifunctional and a multipurpose lighting solution that is a combination of both LEDs and light bulbs. It not only looks cool as a room decoration, especially for gamers, but can make love easier for the user as well. This 3-in-1 Smart Light Bulb can be remotely operated, detects motion and sound to automatically turn on or off that helps save time, energy, and money.\r\n\r\n<img class=\"alignnone size-medium wp-image-10519\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/2-in-1-Smart-Light-Bulb-image-600x408.jpg\" alt=\"3 in 1 Smart Light Bulb\" width=\"600\" height=\"408\" \/>","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"smart-led-led-lightsa-light-bulb-to-make-your-room-the-coolest-thing-ever","to_ping":"","pinged":"","post_modified":"2026-01-11 17:25:27","post_modified_gmt":"2026-01-11 17:25:27","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10498","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10452,"post_author":"32","post_date":"2022-03-11 20:55:13","post_date_gmt":"2022-03-11 20:55:13","post_content":"<strong>About the Creator<\/strong>\r\n\r\n<span style=\"font-weight: 400;\">Hi, my name is Arham. I'm in 3rd grade. Let me tell you about my background. When I was 7-year-old, I launched a book called\u00a0<\/span><a href=\"https:\/\/www.amazon.com\/dp\/B084C69D1X\/ref=cm_sw_r_fa_awdo_t1_bqnqEb68VRSP9?fbclid=IwAR33Me_4Qx-2QTLlUluY1N26ZoKMnXwgIMv0seT_3exiteWv4mlmTu2vwY8\"><b><i>Adventure of the Wicked!<\/i><\/b><\/a><span style=\"font-weight: 400;\">\u00a0My book received an excellent response. I was always passionate about learning new things, especially science subjects. It was not possible to learn new topics in school because those subjects were beyond my age group. So I joined an online course. Also, I started a YouTube channel called\u00a0<\/span><b><i><a href=\"https:\/\/youtube.com\/channel\/UC8foqWGTYyFkW68L6NMzl3A\">Arham\u2019s World<\/a> where<\/i><\/b><span style=\"font-weight: 400;\">\u00a0I upload new science topics so that kids of my age can join me on my journey and learn new things. There is no age limit to learn things early on if you want to. I have improved since then and always think about ideas that can help kids.<\/span>\r\n\r\n<img class=\"alignnone size-medium wp-image-10480\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/03\/Moonfunded-arham-1-1-600x408.jpg\" alt=\"Candy Dispenser Author\" width=\"600\" height=\"408\" \/>\r\n\r\n&nbsp;\r\n\r\n<b>Why do you want to take your project on a crowd-funding platform?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">I understand moms are important and they inculcate the best habits in us, but the kid\/kids can be difficult. So, I focused on helping mothers in controlling children\u2019s sweet tooth or you can say the children\u2019s caffeine. Instead of toiling around the clock to innovate recipes for healthy cookies, you can preorder my invention that will keep the unhealthy cookies out of their reach.<\/span>\r\n\r\n<b>Where did this project come from?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">It started when I was seven or eight-year-old. We were moving into a new house. When I unpacked the kitchen box in the new house, my candy box was not there. We forgot to pack my candy box. That was my supply for a year. My parents refused to replenish the stock. I didn\u2019t have an option. Eventually, my habits changed. It was a forced change, but I started enjoying healthy stuff. That is when I realized only self-control can diminish your craving for unhealthy food. And the idea of the\u00a0<\/span><b><i>Candy Dispenser<\/i><\/b><span style=\"font-weight: 400;\">\u00a0clicked to me.\u00a0<\/span>\r\n\r\n<img class=\"alignnone size-medium wp-image-10481\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/03\/Moonfunded-arham-2-1-600x408.jpg\" alt=\"Kids eating candies\" width=\"600\" height=\"408\" \/>\r\n\r\n&nbsp;\r\n\r\n<b>How is it solving this problem?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">This invention takes away the worries of adults by not letting children sneak into cookies. The\u00a0<\/span><b><i>Candy Dispenser<\/i><\/b><span style=\"font-weight: 400;\">\u00a0uses code that\u2019s programmed to dispense only one candy a day unless the parent uses their fingerprint to activate a fingerprint sensor to dispense a second or third candy.<\/span>\r\n\r\n<b>Why do you care?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">As I said earlier, my eating habits became healthier, I started enjoying healthy food, and I felt other kids should also adopt healthy eating habits. To make it a reality, I invented\u00a0<\/span><b><i>Candy Dispenser<\/i><\/b><span style=\"font-weight: 400;\">\u00a0and solve the problem.<\/span>\r\n\r\n<img class=\"alignnone size-medium wp-image-10482\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/03\/Moonfunded-arham-4-1-600x408.jpg\" alt=\"Components of Candy Dispenser\" width=\"600\" height=\"408\" \/>\r\n\r\n&nbsp;\r\n\r\n<b>Why are you creating this? What problem does it solve?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">Adopting a healthy lifestyle is important, and I vouch for it. But most kids do not understand that, and here I come into the picture. My invention helps kids understand the benefits of this lifestyle.<\/span>\r\n\r\n<b>Who will benefit from this product the most?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">I aim to help moms. I want to make their lives easier to control the candy intakes of their kids around the world. The intention of helping kids fuels this mission. Helping kids means helping moms!<\/span>\r\n\r\n<img class=\"alignnone size-medium wp-image-10483\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/03\/Moonfunded-arham-5-1-600x408.jpg\" alt=\"Benefits of Candy Dispenser \" width=\"600\" height=\"408\" \/>\r\n\r\n&nbsp;\r\n\r\n<strong>Why should moms choose this over competitors? What makes the product unique?<\/strong>\r\n\r\n<span style=\"font-weight: 400;\">They should buy my\u00a0<\/span><b><i>Candy Dispenser<\/i><\/b><span style=\"font-weight: 400;\">\u00a0because I'm a kid. I understand kids and their tricks. If moms will buy my invention, their cookies are going to be safe from their kids.<\/span>\r\n\r\n<img class=\"alignnone size-medium wp-image-10484\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/03\/Moonfunded-arham-3-1-600x408.jpg\" alt=\"Product Features\" width=\"600\" height=\"408\" \/>\r\n\r\n&nbsp;","post_title":"Kids Candy Dispenser with Fingerprint Scanner","post_excerpt":"<span style=\"font-weight: 400;\">Candy Dispenser is an excellent way to control a child\u2019s indulgence in candies. It has a code system that is programmed to give only one candy a day. It has a fingerprint sensor and unless the parent uses their fingerprint to activate the fingerprint sensor, it won\u2019t dispense a second or third candy.<\/span>\r\n\r\n<img class=\"alignnone size-medium wp-image-10485\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/03\/Moonfunded-arham-0-2-600x408.jpg\" alt=\"Candy Dispenser\" width=\"600\" height=\"408\" \/>","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"candy-dispenser","to_ping":"","pinged":"","post_modified":"2026-01-11 17:25:06","post_modified_gmt":"2026-01-11 17:25:06","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10452","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"2","filter":"raw"},{"ID":10347,"post_author":"29","post_date":"2021-12-02 15:30:21","post_date_gmt":"2021-12-02 15:30:21","post_content":"<span style=\"font-weight: 400;\">Do you have an old, unused Raspberry PI\/Linux\/Windows machine? Make use of it with our Multi OS Oscilloscope device which is versatile and supported on multiple platforms.<\/span>\r\n\r\n<span style=\"font-weight: 400;\">This device is an extremely helpful tool for electronics engineers or people who want to automate sequences of analog-digital output.<\/span>\r\n\r\n<img class=\"size-medium wp-image-10339 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/oscope-v01-600x510.png\" alt=\"\" width=\"600\" height=\"510\" \/>\r\n<h2><b>OScope Plugin Feature<\/b><b><\/b><\/h2>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">Simple TCP\/IP pipe-based plugin interface which is written in \u201cC\u201d, the plugin may operate on the same host, or it can be a remote computer. All features of the plugin interface, sample code have been provided. <\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">The plugin is a simple client socket code that can be replaced with Python\/C#\/Labview API, as per the need. (At some point support for adding python2.x\/3.0 and C# with examples will be provided).<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Multiplatform (ARM, Linux, x86, Windows). Raspberry Pi\/Beagle bone Black\/Freescale\/Windows\/Intel Ubuntu and XP\/7\/8.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">The plugin may control all parts of GUI with interface including message display\/graph\/signal with lots of feedback, which makes it useful for production floor calibration utility.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Field firmware is upgradeable without the need for a programmer.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Flexible framework and powerful programmable intuitive and simple interface, and best of all it works on most operating systems.\u00a0<\/span><\/li>\r\n<\/ul>\r\n&nbsp;\r\n<h2><b>Use Cases<\/b><b><\/b><\/h2>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">Handy tools which can perform multifunctional, dual-channel, signal generators or oscilloscope devices can be quickly customized for close loop system testing needs.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Up to 1 MHz when used with other 10-bit ADC (Internal PIC32).\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Easily integrable with python script for doing complex tasks.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Field firmware is upgradeable without ICD\/JTAG programmer device.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Flexible framework and powerful programmable intuitive and simple interface, and best of all it works on most operating systems.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">The plugin feature enables users to communicate with an array of devices.\u00a0<\/span><\/li>\r\n<\/ul>\r\n&nbsp;\r\n<h2><b>Features<\/b><b><\/b><\/h2>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">Dual-channel, independent multifunctional generator.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">A dual-channel Oscilloscope may operate parallel to the signal generator.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Twin two I2C Master which (7-bit addressing\/400KHz Clock).<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Read\/Write 21 GPIO from plugin interface.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Single-channel 32bit PWM input capture for measuring pulse width modulation very accurately.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Single-channel output capture can be controlled by a plugin interface.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Dual ADC\/DAC can capture and generate continuous signals.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Flexible communication library functions are well documented along with GUI\/console. Sample code provided.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Dual-channel TTL UART may receive and transmit data up to 460800 baud.\u00a0<\/span><\/li>\r\n<\/ul>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-10340 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/oscope-topology-600x510.png\" alt=\"oscope-topology\" width=\"600\" height=\"510\" \/>\r\n<h2><b>Features<\/b><\/h2>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">Oscilloscope (Dual-channel 12-bit 5V Max, Max 100KHz).<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Signal generator (Dual-channel 12-bit 5V Max, Max 100KHz).<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">I2C Master\/Slave (5V, Max 400KHz Clock). Sample app included.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Input capture.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Single-channel PWM generation.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Channel digital 3.3V IO.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Output capture for creating PWM.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">TTL 3.3.V UART (5V Tolerance, up to 460800 baud).\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Direct runtime import signal from csv file via plugin\/direct interface.\u00a0<\/span><\/li>\r\n<\/ul>\r\n<img class=\"size-medium wp-image-10341 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/pic32mx795f512l-600x510.png\" alt=\"\" width=\"600\" height=\"510\" \/>\r\n<h2><b>Possible Use Cases\u00a0\u00a0<\/b><\/h2>\r\n<span style=\"font-weight: 400;\">A powerful tool when implementing iterated real complex automated long sequence of calibration which requires read\/write\/i2c\/uart\/gpio\/pwm where interaction between sets of operation is heavily interdependent on previous or next.\u00a0<\/span>\r\n\r\n<span style=\"font-weight: 400;\">For example \u2013 User A calibrates a magnetic measurement in a feedback loop. Calibration of such a system will require feeding a known calibrated signal and measuring its system output in multiple steps and while varying temperature and other parameters, calibrating such a system manually by using a traditional signal generator and while controlling temperature is a very tedious task with the possibility of human error.\u00a0<\/span>\r\n\r\n<span style=\"font-weight: 400;\">This tool enables you to generate variable signals and capture output while controlling other sequences, which can be done directly using the plugin interface. It also enables the end-user to create his own C++\/C#\/Qt GUI. The plugin feature has been covered heavily in the next slides.<\/span>\r\n\r\n<span style=\"font-weight: 400;\">As a feature of the plugin, a lot of colorful feedback along with log file generation can be added, which reduces the chance of human error.<\/span>\r\n\r\n<img class=\"size-medium wp-image-10342 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/signal-generator-600x510.png\" alt=\"\" width=\"600\" height=\"510\" \/>\r\n\r\n<img class=\"size-medium wp-image-10343 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/oscilloscope-600x510.png\" alt=\"\" width=\"600\" height=\"510\" \/>\r\n<h2><b>Using First Time (Linux)\u00a0<\/b><\/h2>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">Open the command prompt on the Linux terminal (Username vs).\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Run a Sudo command $ sudo addgroup vs dialout.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Run a Sudo command $ sudo addgroup vs plugdev.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Reboot: Linux Desktop and open a Linux terminal $ prompt.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">$ sudo dmesg -C; clears dmesg buffer.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Connect USB hardware to Linux machines.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Enter the $ dmesg command in the terminal.\u00a0<\/span><\/li>\r\n<\/ul>\r\n<h2><b>Running Oscilloscope App<\/b><\/h2>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">Launch iwscope application. <\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">C<\/span><span style=\"font-weight: 400;\">lose application, it creates script.ini file.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Edit script.ini using a lightweight editor like VI or gedit, enter the index of comport number, ttyACM0 has COMPORT=0 and ttyACM1 =&gt; COMPORT=1.\u00a0<\/span><\/li>\r\n<\/ul>\r\n<img class=\"size-medium wp-image-10344 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/running-oscope-app-600x510.png\" alt=\"\" width=\"600\" height=\"510\" \/>\r\n<ol>\r\n \t<li style=\"list-style-type: none;\"><\/li>\r\n<\/ol>\r\n<h2><b>Troubleshooting Linux<\/b><\/h2>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">Check if the user has permission to read and write the serial port using minicom or picocom.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Provided libraries for the following Linux platforms. (Make sure hw\/OS matches) - <\/span><span style=\"font-weight: 400;\">Raspberry Pi (Raspebian),\u00a0<\/span><span style=\"font-weight: 400;\">Beagle Bone Black (Debian),\u00a0<\/span><span style=\"font-weight: 400;\">Intel x86 x64 (Ubuntu 32 &amp; 64 bit),\u00a0<\/span><span style=\"font-weight: 400;\">Intel Edison\u00a0\u00a0<\/span><\/li>\r\n<\/ul>\r\n<h2><b>Using First Time (Windows)<\/b><\/h2>\r\n<ol>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Press Windows + R dvmgmnt.msc, open devices.\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Run device manager and locate com port section:\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">This com port should disappear and appear as a Scope device disconnected or connected over the USB port.\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The next page shows Edit oscope.ini file, enter the correct COM port. <\/span><\/li>\r\n<\/ol>\r\n<h2><b>External Custom Application Integration<\/b><\/h2>\r\n<ol>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">C++ compiled libraries for easy integration with external frameworks. Example \u2013 for provided Linux ARM\/Intel\/Windows x86 x64.\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Sample open-source library interfaces Qt 4.0 code provided as an example.\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Open-source TCP\/IP plugin interface example code.\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fully tested platforms - <\/span>Windows XP, Windows 7 (32\/64), Linux 32\/64 (Intelx86, x64, Beagle Bone Black, Raspberry Pi)<\/li>\r\n<\/ol>\r\n<h2><b>How to Upgrade Firmware\u00a0<\/b><\/h2>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">Download the latest firmware for this device.\u00a0 <\/span><a href=\"https:\/\/github.com\/vijayandra\/oscopev1\">https:\/\/github.com\/vijayandra\/oscopev1\u00a0<\/a><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Connect Rx\/TX of UART 1 as shown in the picture, connect a USB device, device maps as HID device.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Start the boot loader application and browse to the downloaded file and start boot loader. Estimated boot time is around 30 seconds.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Unplug USB device, remove jumper joining Rx\/TX so device does not enter in bootloader mode.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">Start using the device, Oscilloscope application should show a new version of the app when connected.\u00a0<\/span><\/li>\r\n \t<li><span style=\"font-weight: 400;\">The main application does not need any installer. It can be downloaded as a single zipped file.\u00a0<\/span><\/li>\r\n<\/ul>\r\n<h2><b>Limitation\/Known Issues\u00a0<\/b><\/h2>\r\n<ol>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Because of Microsoft WHQL device certification serial port does not enumerate for Windows 7 x64 bit (Need to disable driver signing enforcement, press F12 during boot up to disable).\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">USB 2.0 full speed is speed limitation. The onboard LED is reversed mounted so it does not function.\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Basic Linux\/Windows comport configuration is needed to enumerate the com port.\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The use of plug-in features requires basic \u201cC\u201d programming knowledge.<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">All examples use the Qt4.0 framework.\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Open-source TCP\/IP plug-in interface example code.\u00a0<\/span><\/li>\r\n<\/ol>\r\n<h2><b>How to USE Software<\/b><\/h2>\r\n<span style=\"font-weight: 400;\">Users may choose to interact with hardware using the following three possible modes:\u00a0<\/span>\r\n<ol>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Local direct GUI mode (Under this mode user may choose to run a scope that is connected to the host system directly via USB CDC).\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Local Direct Custom Application Plugin Mode (Under this mode user creates application interaction with hardware, types of Qt sample C++ cli application library and header files provided along with support library).\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Remote Plugin Mode (Under this mode user\u2019s custom application interacts via TCP\/IP pipes (Port 9999 and 9998 respectively).\u00a0<\/span><\/li>\r\n<\/ol>\r\n<span style=\"font-weight: 400;\">Mode #2 and #3 are ideal for creating automated test sequences, Sample C# application also has been provided which generates a waveform, reads GPI, creates PWM and measures PWM.\u00a0<\/span>\r\n\r\n<span style=\"font-weight: 400;\">All libraries and main application are fully tested on Ubuntu (ARM &amp; Intel), Windows (XP, 7, 8).<\/span>\r\n\r\n<img class=\"size-medium wp-image-10345 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/i2c-example-600x510.png\" alt=\"\" width=\"600\" height=\"510\" \/>\r\n<h2><b>How to Control Scope\/Signal Sampling Freq<\/b><\/h2>\r\n<span style=\"font-weight: 400;\">User may control sampling freq like example given below:\u00a0<\/span>\r\n\r\n<span style=\"font-weight: 400;\">PIC32 running at 80 MHz (80x1000000\/TMR) = 80 KHz, provided the selected (TMRDiv) divider is 0. Similar calculations are applicable for signal generators.\u00a0<\/span>\r\n<ul>\r\n \t<li><span style=\"font-weight: 400;\">0=Main Clock Divided by 1 (Above 80MKhz Clock) <\/span><\/li>\r\n \t<li>1=Main Clock Divided by 4 (Replace 80 with 20, Result 20 KHz)<\/li>\r\n \t<li>2= Main Clock Divided by 8 (Replace 80 with 10, Result 10 KHz)<\/li>\r\n \t<li>3=Main Clock Divided by 16<\/li>\r\n \t<li>4=Main Clock Divided by 32<\/li>\r\n \t<li>5=Main Clock Divided by 64<\/li>\r\n \t<li>6=Main Clock Divided by 256<\/li>\r\n<\/ul>\r\n<h2><b>Risks and Challenges<\/b><\/h2>\r\n<span style=\"font-weight: 400;\">As far as driver, application, and interface libraries are concerned there is no risk as they are fully developed and tested. Board is only good for 0 to 5V signals or scope. One feature which was not described supports a boot loader, which means firmware can be updated from time to time. <\/span>","post_title":"Mutliplatform\/Multi OS Oscilloscope\/Signal Generator","post_excerpt":"<div class=\"NS_project_profiles__blurb\">\r\n<div class=\"project-profile__blurb editable-field\"><span class=\"relative\"><span class=\"content edit-profile-blurb js-edit-profile-blurb\">Signal Generator\/Oscilloscope\/I2C Master\/GPIO runs on following platforms RaspberryPI\/Beagle Bone\/Intel x86,x64 (Debian\/Ubuntu\/Windows)<\/span><\/span><\/div>\r\n<\/div>\r\n<div class=\"NS_project_profiles__project_link editable-field\"><\/div>","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"mutliplatform-multi-os-oscilloscope-signal-generator","to_ping":"","pinged":"","post_modified":"2025-12-03 21:24:50","post_modified_gmt":"2025-12-03 21:24:50","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10347","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":9822,"post_author":"10","post_date":"2021-10-04 19:25:01","post_date_gmt":"2021-10-04 19:25:01","post_content":"<div>\r\n<div class=\"rte__content\">\r\n\r\nAll of us would love to wake up, drink water first thing in the morning, and stay healthy, refreshed, and energetic for the entire day. Oh, but how many of us can do that? We all want to maintain a healthy and enriching lifestyle but fail to do so for various reasons.\r\n\r\nWater is an essential component of our body and a necessity for survival. Even then, it has been observed that a huge proportion of people do not drink adequate quantities of water necessary for their bodies. Dehydration invites many health issues, and we struggle to survive through them in our lives.\r\n\r\nThe truth is, in today\u2019s day and age, we all lead an extremely frenetic lifestyle, and more often than not, we simply forget the most important activity of the day, which is to drink water. But hey, what if we tell you that there is a product that could remind you to drink at regular intervals of time. Wouldn\u2019t that be awesome?\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"\" data-id=\"34122641\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/5eaa8275e5669e4f03d9ab429f362c46_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1625588770&amp;auto=format&amp;frame=1&amp;q=92&amp;s=2312190fcc5736d5390b741668641655\" alt=\"\" \/><\/figure>\r\n<\/div>\r\n<h2 id=\"h:water-bottle-reminde\" class=\"page-anchor\"><span class=\"bold\">WATER BOTTLE REMINDER\u00a0<\/span><\/h2>\r\nIntroducing to you our new project - Water Bottle Reminder. Water Bottle Reminder is a portable product that could be wrapped around any Water Bottle. It calls for your attention when there is a need for you to drink water. Not only that, the best part about it is that the product can be customized based on the age group of the user.\r\n\r\n<img class=\"wp-image-10358 size-full aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/danazia-dayanara.png\" alt=\"Danazia Briskey, Dayanara Ruiz Mendez\" width=\"356\" height=\"181\" \/>\r\n<p style=\"text-align: center;\"><em>Danazia Briskey and Dayanara Ruiz Mendez (Innovator of Water Bottle Reminder)<\/em><\/p>\r\nDepending on the age, the device will trigger an alarm after equal intervals of time, let\u2019s say 1 hour, in order to remind the user to drink some water. This functionality makes this product a fantastic addition to your lifestyle and a giant step towards leading a healthier life.\r\n\r\n<\/div>\r\n<\/div>\r\n<div>\r\n<div class=\"rte__content\">\r\n<h2 id=\"h:anywhere-anytime\" class=\"page-anchor\"><span class=\"bold\">ANYWHERE ANYTIME<\/span><\/h2>\r\nWe all have that one favorite water bottle that we always carry when we step out of the house. Keeping that in mind, the Water Bottle Reminder has been designed to go with any bottle. It is a strap-on device that can be used with any of your bottles. Just put it on your favorite bottle, and you are good to go and stay hydrated throughout the day.\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"\" data-id=\"34122651\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/128850eea80c9525f0bcbb2f69ea70df_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1625588810&amp;auto=format&amp;frame=1&amp;q=92&amp;s=e5780e936acb78a0ced7a4272846d514\" alt=\"\" \/><\/figure>\r\n<\/div>\r\n<h2 id=\"h:what-does-water-bott\" class=\"page-anchor\"><span class=\"bold\">WHAT DOES WATER BOTTLE REMINDER CONSIST OF?\u00a0<\/span><\/h2>\r\nWater Bottle Reminder consists of various features such as:\r\n<ul>\r\n \t<li>Small circular PCB that consists of Atmega 328p IC, which is programmable through the header<\/li>\r\n \t<li>Tilt Sensor<\/li>\r\n \t<li>Accelerometer on board which helps to detect if the bottle has been tilted in combination with tilt sensor<\/li>\r\n \t<li>A Buzzer to generate alarms<\/li>\r\n<\/ul>\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"\" data-id=\"34122807\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/5f49efba89f2ef14d9584166f181169c_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1625589596&amp;auto=format&amp;frame=1&amp;q=92&amp;s=15da0c3464856473ea32a7433166ec25\" alt=\"\" \/><\/figure>\r\n<\/div>\r\n<h2 id=\"h:components-and-how-t\" class=\"page-anchor\"><span class=\"bold\">COMPONENTS AND HOW THEY WORK<\/span><\/h2>\r\n<ul>\r\n \t<li>Atmega328p IC: To get the minimalist design, the Atmega 328p IC is directly soldered to the board. The same IC, which we find on the classic Arduino board. Thus making reprogramming and updating this board very easy.<\/li>\r\n \t<li>6 Pin Header: A 6 pin ICSP header is given to program the IC using Arduino as ISP or any other ISP programmer this IC can be programmed.<\/li>\r\n \t<li>Tilt Sensor and Accelerometer: Working in combination, these two sensors help to identify the motion of a water bottle.<\/li>\r\n<\/ul>\r\n<h2 id=\"h:steps-to-deisgn-prot\" class=\"page-anchor\"><span class=\"bold\">STEPS TO DEISGN PROTOTYPING<\/span>\u00a0<span class=\"bold\">-<\/span><\/h2>\r\nStep 1. Process was initiated by manufacturing printed circuit board that worked as a motherboard for the entire project.\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"PCB Designing\" data-id=\"34429752\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/46a4347f89d1f653fd89f6769841ef5e_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628177654&amp;auto=format&amp;frame=1&amp;q=92&amp;s=16d81bd09f935a8455a1debeb6fb2f35\" alt=\"\" \/><figcaption class=\"px2\">PCB Designing<\/figcaption><\/figure>\r\n<\/div>\r\nStep 2. Followed by careful assembly of critical components on the PCB.\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"Components Assembly\" data-id=\"34429871\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/bb2c1f9013c78a487c1a88e5927e8f5a_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628178192&amp;auto=format&amp;frame=1&amp;q=92&amp;s=ad29f3b62d9653b5f28f7f6d99296806\" alt=\"\" \/><figcaption class=\"px2\">Components Assembly<\/figcaption><\/figure>\r\n<\/div>\r\nStep 3. To ensure every components and PCB are in sync, then conducted manual tests.\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"Manual Testing\" data-id=\"34429932\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/2fa277ffba94422a10aa22893ed93bf0_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628178450&amp;auto=format&amp;frame=1&amp;q=92&amp;s=d0ad1fa6f0ee235b6090d196e5447745\" alt=\"\" \/><figcaption class=\"px2\">Manual Testing<\/figcaption><\/figure>\r\n<\/div>\r\nStep 4. Conducted functional test to ensure every components is functioning flawlessly\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"Functional testing using multimeter\" data-id=\"34429983\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/3c418044eccacde38b285b3c447723d8_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628178656&amp;auto=format&amp;frame=1&amp;q=92&amp;s=3b4708ad23fb7af36099486d09f5d38d\" alt=\"\" \/><figcaption class=\"px2\">Functional testing using multimeter<\/figcaption><\/figure>\r\n<\/div>\r\nStep 5. The final program, specially designed for the project was loaded in the PCB\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"Bootload and Programming\" data-id=\"34430011\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/c28edb3f6c429df6f1acb9c7fb48f645_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628178789&amp;auto=format&amp;frame=1&amp;q=92&amp;s=81e7cc6e33fa04983774309294053487\" alt=\"\" \/><figcaption class=\"px2\">Bootload and Programming<\/figcaption><\/figure>\r\n<\/div>\r\nStep 6. To ensure everything is in line with the initial idea and works perfectly.\r\n<div class=\"template asset\" data-id=\"34430089\">\r\n<figure id=\"asset-34430089\" class=\"page-anchor\">\r\n<div class=\"video-player\" data-video-url=\"https:\/\/v.kickstarter.com\/1633534284_60ab1d346d0e80883782c98fad09743912679f22\/assets\/034\/430\/089\/942e838ae9d68c778be7a3dbdcf9f40a_h264_high.mp4\" data-image=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/942e838ae9d68c778be7a3dbdcf9f40a_h264_base.jpg?2021\" data-dimensions=\"{&quot;width&quot;:680,&quot;height&quot;:907}\" data-context=\"Story Description\">\r\n\r\n<img class=\"has_played_hide full-width poster portrait\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/942e838ae9d68c778be7a3dbdcf9f40a_h264_base.jpg?2021\" alt=\" project video thumbnail\" \/>\r\n<div class=\"play_button_container absolute-center has_played_hide\"><button class=\"play_button_big play_button_dark radius2px\" type=\"button\" aria-label=\"Play video\">\u00a0PLAY<\/button><\/div>\r\n<\/div><\/figure>\r\n<\/div>\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"Mechanical Enclosure\" data-id=\"34122810\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2023\/01\/8f49864f8a336582fd5decd0be4282c1_original.PNG?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1625589621&amp;auto=format&amp;frame=1&amp;lossless=true&amp;s=489c0394b09a10c50e2afc8e3df8bd40\" alt=\"\" \/><figcaption class=\"px2\">Mechanical Enclosure<\/figcaption><\/figure>\r\n<\/div>\r\n<h2 id=\"h:how-does-it-work\" class=\"page-anchor\"><span class=\"bold\">HOW<\/span>\u00a0<span class=\"bold\">DOES IT WORK?<\/span><\/h2>\r\n<ul>\r\n \t<li>\u00a0<span class=\"bold\">Step 1:\u00a0<\/span>The module needs to be strapped around the bottle using the Velcro provided in the pack.<\/li>\r\n \t<li>\u00a0<span class=\"bold\">Step 2:<\/span>\u00a0If it has been an hour since you last drank water the alarm will go off indicating that you need to drink water. The quantity of water that to be consumed depends on the individual.<\/li>\r\n \t<li>\u00a0<span class=\"bold\">Step 3:<\/span>\u00a0If you have already consumed water within an hour or after the alarm goes off, in both situations the timer will reset and wait for an hour before reminding you again.<\/li>\r\n<\/ul>\r\n<\/div>\r\n<\/div>\r\n<div>\r\n<div>\r\n<div class=\"pt8\">\r\n<div id=\"risks-and-challenges\" class=\"mb3 mb10-sm mb3 js-risks\">\r\n<h2 class=\"normal mb4\">Risks and Challenges<\/h2>\r\n<p class=\"js-risks-text text-preline\">a) The water bottle reminder module being sturdy and portable faces the challenge of battery life. Currently, the module is powered by a CR2032 coin cell with a capacity of 225 mAh, which makes the module thin and compact but at the same time, wasting even 1 mA of current is not acceptable. Our team is working to reduce the power consumption of the overall module and give it a battery life of approximately 30 days. b) Electronics, the 3D printed mechanicals, and screws - all will be shipped separately. Users will have to assemble these on their own and use the product . c) The finished product is of 3D printed quality and may not look great.<\/p>\r\n\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>","post_title":"Water Bottle Reminder","post_excerpt":"A device that reminds you to drink water regularly and stay hydrated","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"water-bottle-reminder","to_ping":"","pinged":"","post_modified":"2025-12-03 21:25:09","post_modified_gmt":"2025-12-03 21:25:09","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=9822","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":9820,"post_author":"9","post_date":"2021-10-04 19:16:58","post_date_gmt":"2021-10-04 19:16:58","post_content":"<div class=\"rte__content\">\r\n<div class=\"rte__content\">\r\n\r\n<span class=\"bold\">Introducing NRF Attention Reminder<\/span>- an electronic device designed to send alerts. A simple, single-button RF Transmitter sends a signal to a central RF Receiver, which displays the information and generates an alarm. Multiple transmitters can communicate with the same receiver.\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"\" data-id=\"34499994\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/499\/994\/6f0a740fcbde089d745598487c673bdb_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738490&amp;auto=format&amp;frame=1&amp;q=92&amp;s=2e262084b91daa947216fed28e1076e3\" alt=\"\" data-src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/499\/994\/6f0a740fcbde089d745598487c673bdb_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738490&amp;auto=format&amp;frame=1&amp;q=92&amp;s=2e262084b91daa947216fed28e1076e3\" \/><\/figure>\r\n<\/div>\r\nNRF Attention Reminders can be used for a plethora of motives!\r\n\r\nNRF Attention Reminder consists of two separate rectangular PCBs both having Arduino Nano. One board is a transmitter that consists of a push-button and NRF module. The receiver board consists of an NRF module, a push button, an LCD, a buzzer, and 5 LEDs.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-10356 aligncenter\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2021\/12\/adi-liza.png\" alt=\"\" width=\"367\" height=\"193\" \/>\r\n<p style=\"text-align: center;\">Liza Stallings &amp; Adelyn Foster (Innovator of NRF Attention Reminder)<\/p>\r\n\r\n<\/div>\r\n<\/div>\r\n<h2><\/h2>\r\n<h2 style=\"text-align: left;\">How Does it Work?<\/h2>\r\n<div class=\"rte__content\">\r\n<div>\r\n<div class=\"rte__content\">\r\n\r\nNRF Attention Reminder works on a multi-transmitter and single receiver network. The NRF on the receiver module is in listening mode and accepts data from the transmitters. The data from transmitters that are already paired is accepted and all other data is rejected.\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"\" data-id=\"34500004\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/500\/004\/f0df6ae17e98aca87a542853e927f1bc_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738547&amp;auto=format&amp;frame=1&amp;q=92&amp;s=dbac73cf834f995e94190613a5195bf2\" alt=\"\" data-src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/500\/004\/f0df6ae17e98aca87a542853e927f1bc_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738547&amp;auto=format&amp;frame=1&amp;q=92&amp;s=dbac73cf834f995e94190613a5195bf2\" \/><\/figure>\r\n<\/div>\r\nYou press a push button on the transmitter, which causes the transmitter to send a specific message to the receiver. The receiver then shows a message on the LCD, along with that, the receiver switches on the corresponding LED indicating the transmitter number which has sent the message. Also, an alarm is generated using a buzzer to bring focus to the receiver.\r\n<h1 id=\"h:components-and-how-t\" class=\"page-anchor\"><span class=\"bold\">Components and How They Work<\/span><\/h1>\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"\" data-id=\"34500006\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/500\/006\/b4cedb008e8d1782465cb0ef66a91b2f_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738596&amp;auto=format&amp;frame=1&amp;q=92&amp;s=ae3901bd506610581245d1f7204a4b9d\" alt=\"\" data-src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/500\/006\/b4cedb008e8d1782465cb0ef66a91b2f_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738596&amp;auto=format&amp;frame=1&amp;q=92&amp;s=ae3901bd506610581245d1f7204a4b9d\" \/><\/figure>\r\n<\/div>\r\n<ul>\r\n \t<li><span class=\"bold\">Arduinos<\/span>\u00a0are codable circuits that help you easily create the base circuit for a transceiver module.<\/li>\r\n \t<li><span class=\"bold\">NRF Modules<\/span>\u00a0or NRF24L01 Modules are Radio Frequency based transceiver modules that can act as both a transmitter or receiver.<\/li>\r\n \t<li><span class=\"bold\">The push-button\u00a0<\/span>is used to generate input from the user. On the transmitter, it is used to initiate the transmission of a message. On the receiver, it is used to clear the display and reset the LEDs.<\/li>\r\n \t<li><span class=\"bold\">USB Plug<\/span>\u00a0connects the transmitter and receiver circuits to the power bank or computer to power them and to help upload the code from the computer into the Arduino.<\/li>\r\n<\/ul>\r\n<h1 id=\"h:the-real-world-appli\" class=\"page-anchor\"><span class=\"bold\">The Real-World Application<\/span><\/h1>\r\nNRF Attention Reminders can be used in places such as hospitals, home security, long-term care facilities, restaurants, and more.\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"\" data-id=\"34500022\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/500\/022\/cececb923df60075c78d623932c4e691_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738663&amp;auto=format&amp;frame=1&amp;q=92&amp;s=b9248c40fd06563bd270bb397839ab8f\" alt=\"\" data-src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/500\/022\/cececb923df60075c78d623932c4e691_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738663&amp;auto=format&amp;frame=1&amp;q=92&amp;s=b9248c40fd06563bd270bb397839ab8f\" \/><\/figure>\r\n<\/div>\r\n<h1 id=\"h:rewards\" class=\"page-anchor\"><span class=\"bold\">Rewards<\/span><\/h1>\r\n<span class=\"bold\">30$<\/span>\u00a0- One Receiver Module and One Transmitter Module - NRF Attention Reminder (Basic Package)\r\n\r\n<span class=\"bold\">45$<\/span>\u00a0- One Receiver Module and Two Transmitter Modules - NRF Attention Reminder (Explorer\u2019s Package)\r\n\r\n<span class=\"bold\">55$<\/span>\u00a0- One Receiver Module and One Transmitter Module along with 3D enclosure for One Receiver and One Transmitter - NRF Attention Reminder (Advanced Package)\r\n\r\n<span class=\"bold\">70$<\/span>\u00a0- One Receiver Module and Two Transmitter Modules along with 3D enclosure for One Receiver and Two Transmitters - NRF Attention Reminder (Full Package)\r\n<div class=\"template asset\" data-alt-text=\"\" data-caption=\"\" data-id=\"34500031\">\r\n<figure><img class=\"fit lazyloaded\" src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/500\/031\/93d1d5f20584398d1334f3e2400a0122_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738713&amp;auto=format&amp;frame=1&amp;q=92&amp;s=2d4b13e4c2d4eec177d08bdc08dd5065\" alt=\"\" data-src=\"https:\/\/ksr-ugc.imgix.net\/assets\/034\/500\/031\/93d1d5f20584398d1334f3e2400a0122_original.jpg?ixlib=rb-4.0.2&amp;w=680&amp;fit=max&amp;v=1628738713&amp;auto=format&amp;frame=1&amp;q=92&amp;s=2d4b13e4c2d4eec177d08bdc08dd5065\" \/><\/figure>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<div>\r\n<div>\r\n<div class=\"pt8\">\r\n<div id=\"risks-and-challenges\" class=\"mb3 mb10-sm mb3 js-risks\">\r\n<h2 class=\"normal mb4\">Risks and challenges<\/h2>\r\n<p class=\"js-risks-text text-preline\">These modules are still under the prototype stage. This Kickstarter campaign is done to share these kids' innovations with everyone. These modules are suitable for testing and learning about RF communication systems. The NRF module is FCC certified and is safe to use. However, the whole Receiver and Transmitter boards have not been FCC certified. Hence, we highly recommend it for personal use and learning purposes only.<\/p>\r\n\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>","post_title":"NRF Attention Reminder","post_excerpt":"Simple, single-button RF Transmitter sends a message to a central Radio Frequency Receiver.","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"nrf-attention-reminder","to_ping":"","pinged":"","post_modified":"2021-12-06 17:23:34","post_modified_gmt":"2021-12-06 17:23:34","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=9820","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"}],"wpcf_project_listing":[{"ID":10806,"post_author":"59","post_date":"2022-11-05 13:47:54","post_date_gmt":"0000-00-00 00:00:00","post_content":"<strong>\u00a0Crowdfunding Content - Your name<\/strong>\r\n\r\n<strong>Emily Ng\u2019ang\u2019a<\/strong>\r\n\r\n<strong>Product Title \/ Product Name<\/strong>\r\n\r\n<strong>Door Lock sensor<\/strong>\r\n\r\n<strong>Short Story about your Product<\/strong>\r\n\r\n<strong>Am Emily nganga, am 16 years am interested in Home automation\u2026a door lock sensor\u00a0 helps to minimize theft around\u00a0 home, <\/strong>\r\n\r\n<strong>In companies and also sensitive institution eg Banks.The door sensor will have a certain sound, sensor or even a secret code. It\u2019s supposed to be punctual\u00a0 and also to be in control with or without data<\/strong><strong>.<\/strong>\r\n\r\n<strong> <img class=\"alignnone wp-image-10751 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/2-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n<ol>\r\n \t<li><strong> What are You Working On?<\/strong><\/li>\r\n \t<li><strong>A<\/strong><strong>. Door lock sensor<\/strong><\/li>\r\n<\/ol>\r\n<strong> <img class=\"alignnone size-medium wp-image-10750\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/1-600x600.jpg\" alt=\"\" width=\"600\" height=\"600\" \/><\/strong>\r\n<ol>\r\n \t<li><strong> What is Your Problem statement?<\/strong><\/li>\r\n \t<li><strong>A<\/strong><strong>. <\/strong>the biometric system sometimes is sensitive and will not be able to sense the biological pattern of the employer's fingerprint due to sweat and other factors. Next, people tend to misplace their key or RFID card. Apart from that, people tend to forget their pin number for a door lock.<\/li>\r\n<\/ol>\r\n<strong> <img class=\"alignnone wp-image-10752 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/3-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n<ol>\r\n \t<li><strong> Where Did This Idea Come From?<\/strong><\/li>\r\n \t<li><strong>A<\/strong><strong>. when I experienced the same in our home, and then I learnt the problem can be solved through the idea.<\/strong><\/li>\r\n<\/ol>\r\n<strong> <img class=\"alignnone wp-image-10753 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/4-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n<ol>\r\n \t<li><strong>Why do you want to take your project on a crowd-funding platform?<\/strong><\/li>\r\n \t<li>Crowdfunding is a great alternative way to fund a venture, and it can be done without giving up equity or accumulating debt. Rewards-based crowdfunding platforms allow entrepreneurs to raise funds from the community in exchange for simply giving their tangible products or other relative gifts.<\/li>\r\n<\/ol>\r\n<strong> <img class=\"alignnone wp-image-10754 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/5-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n<ol>\r\n \t<li><strong> How is It Solving This Problem?<\/strong><\/li>\r\n \t<li><strong>A<\/strong><strong>. it is having an alarm that\u2019s alerts the owner of any unauthorised activities within a system its also allows one to give passcodes to different people so as you know exactly who is entering. <\/strong><strong>The door lock system offers intesified security, keep away intruders, easy monitoring and access.\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 <img class=\"alignnone wp-image-10755 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/6-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong><\/li>\r\n<\/ol>\r\n<ol>\r\n \t<li><strong> Who Would Benefit The Most From Your Product?<\/strong><\/li>\r\n \t<li><strong> Every one at large because <\/strong>electronic door locks are an exemplary substitute for those looking to magnify the security of their business and develop receptiveness, eliminating the necessity for a set of keys that can be easily lost.<\/li>\r\n<\/ol>\r\n<strong> <img class=\"alignnone wp-image-10756 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/7-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n<ol>\r\n \t<li><strong> Who Are Your Competitors and How is Your Product Better?<\/strong><\/li>\r\n \t<li><strong>my competitors are Electric fences companies. My product is better since electric fences require regular maintenance also <\/strong>there are many rules and regulations involved, one that you need to check with local council to ensure even installing one is approved. Another is that you must constantly maintain the surrounding plant life.<\/li>\r\n<\/ol>\r\n<strong> <img class=\"alignnone wp-image-10757 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/8-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n<ol>\r\n \t<li><strong> Tell Us About the Product Specifications and What is In the Box?<\/strong><\/li>\r\n<\/ol>\r\n<strong> <img class=\"alignnone size-medium wp-image-10758\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/9-600x600.jpg\" alt=\"\" width=\"600\" height=\"600\" \/><\/strong>\r\n\r\n<strong>The product is a door lock sensor and inside it you will find a complete door lock sensor kit with motion detector and alarms. It is already connected and ready to be put\u00a0 in use.<\/strong>","post_title":"Door Lock sensor","post_excerpt":"<strong>a door lock sensor\u00a0 helps to minimize theft around\u00a0 home, <\/strong>\r\n\r\n<strong>In companies and also sensitive institution eg Banks.The door sensor will have a certain sound, sensor or even a secret code. It\u2019s supposed to be punctual\u00a0 and also to be in control with or without data<\/strong><strong>.<\/strong>","post_status":"pending","comment_status":"open","ping_status":"closed","post_password":"","post_name":"","to_ping":"","pinged":"","post_modified":"2022-11-05 13:47:54","post_modified_gmt":"2022-11-05 13:47:54","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10806","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10748,"post_author":"68","post_date":"2022-11-05 12:53:32","post_date_gmt":"0000-00-00 00:00:00","post_content":"By using a code, phone or a card to make our things safer. But there are\r\nLimits, which are lack of features. To solve this problem, we need to combine\r\nAll the modern security features into one lock as well as monitoring features\r\nThus, we have high security, comfortable opening and closing systems, and\r\nFeatures that help us easier and faster, all requirements do not conflict and help\r\nTo make our homes safer than before.\r\n\r\nQ. What are You Working On?\r\nA. Smart door lock system.\r\n\r\n<img class=\"wp-image-10707 alignnone\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/1-600x600.png\" alt=\"\" width=\"328\" height=\"328\" \/>\r\n\r\nQ. What is Your Problem statement?\r\nA. Our doors can be forgotten and this is a common occurrence\r\nFor most people. Locks are trying these days to depend on technology\r\n\r\n<img class=\"alignnone wp-image-10713\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/7-600x600.png\" alt=\"\" width=\"393\" height=\"221\" \/>\r\n\r\nQ. Where Did This Idea Come From?\r\nA. The idea came to me when there was a bomb blast in our biggest\r\nMall in Kenya. That\u2019s when I started thinking of better ways to improve\r\nOur security so that it can be able such occurrences\r\n\r\nQ. Why do you want to take your project on a crowd-funding platform?\r\nA. The reason why I would want to take my product to crown-funding\r\nIs because it will enable investors to share my project with their own\r\nNetworks and enable people to invest and produce my product\r\n\r\nQ. How is It Solving This Problem?\r\nA. Taking my product to crowdfunding helps me; Allowing investors\r\nTo fund campaigns, which helps me to expand my financial opportunities\r\nAnd diversity\r\n\r\nQ. Who Would Benefit the Most from Your Product?\r\nA. The people who would benefit most from my product\r\nAre people from big institutions like universities, banks\r\nBig hotels, schools hospitals and any other big institutions\r\nIt can also work at homes.\r\n\r\nQ. Who Are Your Competitors and How is Your Product Better?\r\nA. My main competitors are the ones who produce the same product\r\nAs me but mine is a unique one. What makes my product better is that\r\nAs a home security guard has simple and easy to-understand operations.\r\nThe visual man-machine interference and intelligent voice navigations\r\nFunction can clearly understand the working status of the door lock\r\n\r\nQ. Tell Us About the Product Specifications and What is In the Box?\r\nGENERAL DESCRIPTION\r\nThe door leaf is made of two 1.25 mm thick galvanized steel sheets with vertical and horizontal steel reinforcements for optimal security structure.\r\nThe door leaf is filled with Rockwool or honeycomb for thermal and acoustic insulation.\r\nThe door leaf is 50 mm thick.\r\nVarious designs and finishes.\r\nThe door includes a telescopic bottom insert to enable easy adjustment during installation.\r\nLOCKING SYSTEM\r\nA -4way door lock system, with four 10 mm diameter front bolts and spring-loaded latch. One bottom hook reinforcement mechanism.\r\nUpper and rear 13 mm bolts operated by the lock. Special rear hook fixed bolt - optional. Super Nemmers High Security cylinders.\r\nImproved cylinder protector preventing picking and drilling as well as forcing of the lock cylinder.\r\nVERTICAL STIFFENERS\r\n1.25mm galvanized steel stiffeners are used to give a stronger shape.\r\nINSULATION\r\nRock wool is used to give high thermal and acoustic insulation.\r\nFRAME\r\nConstruction frame made of 1.5 mm thick galvanized steel. The frame is mounted directly on the wall with anchors and cemented to the building structure.\r\nCover frame made of 1.5 mm thick steel for installation on existing wood or metal frames, also available.\r\nDOOR FINISHES\r\nPowder c","post_title":"Door lock sensor","post_excerpt":"Smart door lock sensor is a small-alarm system that allows you to monitor\r\nWhen your door is opened and closed. Smart door lock sensors are easy\r\nTo install and security system components that one can purchase individually.\r\nCommonly used in big hotels, banks and also homes","post_status":"pending","comment_status":"open","ping_status":"closed","post_password":"","post_name":"","to_ping":"","pinged":"","post_modified":"2022-11-05 12:53:32","post_modified_gmt":"2022-11-05 12:53:32","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10748","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10782,"post_author":"63","post_date":"2022-11-05 12:50:28","post_date_gmt":"0000-00-00 00:00:00","post_content":"&nbsp;\r\n<table width=\"1028\">\r\n<tbody>\r\n<tr>\r\n<td width=\"1028\">Inbox\r\n<table width=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"625\">\r\n<table width=\"625\">\r\n<tbody>\r\n<tr>\r\n<td><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<td>07:01 (0 minutes ago)<\/td>\r\n<td><\/td>\r\n<td rowspan=\"2\"><\/td>\r\n<\/tr>\r\n<tr>\r\n<td colspan=\"3\">\r\n<table width=\"864\">\r\n<tbody>\r\n<tr>\r\n<td><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<strong>\u00a0Crowdfunding Content - Your name<\/strong>\r\n\r\nMonica Wambui\r\n\r\n<strong>Product Title \/ Product Name<\/strong>\r\n\r\n<strong>Door Lock sensor<\/strong>\r\n\r\n<strong>Short Story about your Product<\/strong>\r\n\r\n<strong>This is a door lock sensor which helps to minimize theft either around a home or<\/strong>\r\n\r\n<strong>In companies. The door sensor will have a certain sound, finger<\/strong> <strong>prints or even a secret code. This door lock sensor is supposed to be control with or without data<\/strong><strong>.it can also be used to operate electric strike or an Electromagnetic. You <\/strong>\r\n\r\nCan use a key to retract the lockbolt and open the door. Also, when the key is removed the doors locked on\r\n\r\nOutside.\r\n\r\n<img class=\"alignnone wp-image-10760 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/2-1-1024x576.jpg\" alt=\"\" width=\"825\" height=\"464\" \/>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>\u00a0What are You Working On?<\/strong>\r\n\r\n<strong>A. My working on smart door lock sensor is to minimize theft in the society and also to ensure that people <\/strong>\r\n\r\nAround my village they benefited and also, I myself I have benefited from it. And also, would ensure that I myself\r\n\r\nAlso, smart door lock sensor it can alert me someone is interring in the house.\r\n\r\n<img class=\"alignnone wp-image-10761 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/3-1-1024x576.jpg\" alt=\"\" width=\"767\" height=\"431\" \/>\r\n\r\n<strong>\u00a0What is Your Problem statement?<\/strong>\r\n\r\n<strong>\u00a0<\/strong><strong>The problems are that locking the door this day is not safe and can be easily bypassed. And also <\/strong>\r\n\r\nUnauthorized can access to building easily without permission of the owner and also lost of keys can force the\r\n\r\nOwner to change locked convectional and lock are. And also, they hide warm places such as security sensor and\r\n\r\nControl boxes from time time you may need to put your digital door lock.\r\n\r\n<img class=\"alignnone wp-image-10762 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/4-1-1024x576.jpg\" alt=\"\" width=\"841\" height=\"473\" \/>\r\n\r\n<strong>\u00a0Where Did This Idea Come From?<\/strong>\r\n\r\n<strong>\u00a0<\/strong><strong>I fast saw my friends and relatives advertising door lock sensor on internet and that encourage me to do<\/strong>\r\n\r\nSo, or to start the same. They also show different ways and different steps to follow while starting my business.\r\n\r\nI saw that was very a better and good idea which it would help me\u00a0 \u00a0and also, I could benefit from and also, and\r\n\r\nAlso, I can give the same idea to my relatives.\r\n\r\n<img class=\"alignnone wp-image-10769 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/11-1024x576.jpg\" alt=\"\" width=\"779\" height=\"438\" \/>\r\n\r\n<strong>\u00a0<\/strong><strong>Why do you want to take your project on a crowd-funding platform?<\/strong>\r\n\r\nI need to take it so that to increase my funds. And also, through crowd _funding platform it will help me to promote\r\n\r\nAnd raise through a collective effort of my supporters will help to raise my capitals and also my supporters will have\r\n\r\nOne place to quickly donate.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-10765 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/7-1-1024x576.jpg\" alt=\"\" width=\"792\" height=\"445\" \/>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>\u00a0How is It Solving This Problem?<\/strong>\r\n\r\nIt can minimize theft in the society\r\n\r\nIt can alert you when the door is open\r\n\r\nIt can also allow you to give different passcodes so that you can know who is entering in the house\r\n\r\nYou can also pair your lock with a smart doorbell camera allowing you to physically see who\u2019s at\r\n\r\nYour door with the click of a button.\r\n\r\n<strong> <img class=\"alignnone wp-image-10768 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/10-1024x576.jpg\" alt=\"\" width=\"854\" height=\"480\" \/><\/strong>\r\n\r\n<strong>\u00a0Who Would Benefit the Most from Your Product?<\/strong><strong> the society around\u00a0<\/strong><strong>me and also, I myself can also benefited from me because minimizing. And also, it helps to reduce the number of thefts to those who they have benefit to me <\/strong>\r\n\r\n<strong>Product and also from my ideas. And also, the society they will enjoy mostly on my product especially<\/strong>\r\n\r\n<strong>When new products they are brought, they will the first people to benefit most.<\/strong>\r\n\r\n<strong>\u00a0<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10767 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/9-1-1024x576.jpg\" alt=\"\" width=\"854\" height=\"480\" \/>\r\n\r\n&nbsp;\r\n\r\n<strong>\u00a0Who Are Your Competitors and How is Your Product Better?<\/strong>\r\n\r\n<strong>.<\/strong><strong> My competitors are people like Local business directory, Local chambers <\/strong>\r\n\r\n<b>of Comer's. And also, to make my product better I need to niche down and be the expert of <\/b>\r\n\r\n<strong>generic.<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10764 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/6-1-1024x576.jpg\" alt=\"\" width=\"863\" height=\"485\" \/>\r\n\r\n<strong>Q. Tell Us About the Product Specifications and What is In the Box?<\/strong>\r\n\r\n&nbsp;\r\n\r\n<strong>The product is a door lock sensor, and inside it you will find a complete door lock sensor. <\/strong><strong>add this <\/strong>\r\n\r\nDoor lock sensor it will help me and other relatives and friends to avoid think like thefts sensing when\r\n\r\nSomeone is entering in house.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-10763 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/5-1-1024x576.jpg\" alt=\"\" width=\"777\" height=\"437\" \/>\r\n\r\n&nbsp;\r\n\r\nThankyou very much for your support which you have provided to us you have been good to us a very nice teacher to us may GOD\r\n\r\nbless you .THANKYOU AND WE LOVE YOU VERY MUCH.\r\n\r\n<img class=\"alignnone wp-image-10770 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/12-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/>\r\n\r\n&nbsp;\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"44\"><\/td>\r\n<td width=\"864\"><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/td>\r\n<\/tr>\r\n<tr>\r\n<td width=\"1028\"><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<a class=\"more-link\" href=\"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&amp;p=10782#more-10782\"><span aria-label=\"Continue reading SMART DOOR LOCK SENSOR REMOTE\">(more\u2026)<\/span><\/a>","post_title":"SMART DOOR LOCK SENSOR REMOTE","post_excerpt":"<strong>This is a door lock sensor which helps to minimise theft either around a home or<\/strong>\r\n\r\n<strong>In companies. The door sensor will have a certain sound, finger<\/strong> <strong>prints or even a secret code. This door lock sensor is supposed to be control with or without data<\/strong><strong>.it can also be used to operate electric strike or an Electromagnetic. You <\/strong>\r\n\r\nCan use a key to retract the lockbolt and open the door. Also, when the key is removed the doors locked on\r\n\r\nOutside","post_status":"pending","comment_status":"open","ping_status":"closed","post_password":"","post_name":"","to_ping":"","pinged":"","post_modified":"2022-11-05 12:50:28","post_modified_gmt":"2022-11-05 12:50:28","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10782","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10828,"post_author":"67","post_date":"2022-11-05 12:46:28","post_date_gmt":"0000-00-00 00:00:00","post_content":"<strong>Crowdfunding Content - Your name<\/strong>\r\n\r\n<strong>Michelle Wanjiku<\/strong>\r\n\r\n<strong>Product Title \/ Product Name<\/strong>\r\n\r\n<strong>A Door Lock sensor<\/strong>\r\n\r\n<strong>Short Story about your Product<\/strong>\r\n\r\n<strong>This a Door Lock Sensor. It is used to enhance security in different places like; home , hotels and banks.<\/strong> <strong>A smart lock is an electromechanical lock which is designed to perform locking and unlocking operations on a door when it receives such instructions from an authorized device using a wireless protocol and a cryptographic key to execute the authorization process.<\/strong>\r\n\r\n<strong>\u00a0<\/strong>\r\n\r\n<strong>Short Introduction about the Product Creator.<\/strong>\r\n\r\n<strong>(Start with your name, Then Age and your area of interest, as you are making your Resume, Talk about your achievements)<\/strong>\r\n\r\n<strong>My name is Michelle Wanjiku Bakhita, I\u2019m 16 yrs old. My area of interest is on Robotics and Home Automation since it helps me be more creative on my upcoming projects. I\u2019ve been able to learn about robotics and create various prototypes projects such as Motion sensor system<\/strong>\r\n\r\n<strong> What are You Working On?<\/strong>\r\n\r\n<strong>A<\/strong><strong>.Door lock sensor <\/strong>\r\n\r\n<strong> <img class=\"alignnone wp-image-10817 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/1-7-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n\r\n<strong> What is Your Problem statement?<\/strong>\r\n\r\n<strong>A<\/strong><strong> Conventional locks and keys are the simplest and the cheapest way to secure a place. However, this method is not the best way to use. In the eye of security experts, it is being considered as a very poor security method that has lots of disadvantages. The disadvantages of conventional method are as follows: There is high chances of duplicating keys .Conventional keys can be duplicated easily by unauthorized user by sending the original keyed person who is trying to access the pattern so that he\/she can get in secretly. Electronic access control system is a modern system that commonly used to protect properties of owner.<\/strong>\r\n\r\n<strong> <img class=\"alignnone wp-image-10821 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/4-6-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n\r\n<strong> Where Did This Idea Come From?<\/strong>\r\n\r\n<strong>A<\/strong><strong>.In my hometown there many cases of houses being broken into hence I got the urge to try and improve the locking systems and make them more advanced .For that reason I came up with the idea to develop a smart door lock system.<\/strong>\r\n\r\n<strong> <img class=\"alignnone wp-image-10822 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/5-6-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n\r\n<strong>Why do you want to take your project on a crowd-funding platform?<\/strong>\r\n\r\n<strong>You can minimize your financial risks. Crowdfunding allows you to test the waters and see if there's demand for your product .You can validate your business idea as well as create a solid fanbase for your business .Crowdfunding is a great alternative to seeking bank loans.<\/strong>\r\n\r\n<strong> <img class=\"alignnone wp-image-10823 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/6-6-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n\r\n<strong> How is It Solving This Problem?<\/strong>\r\n\r\n<strong>A<\/strong><strong>.To help in reducing issues of theft and others social evils happening without people knowledge. <\/strong><strong>Smart door locks can alert you when doors open and close, and some systems even allow you to give different people their own passcodes, so you know exactly who is entering.<\/strong>\r\n\r\n<strong>\u00a0<\/strong>\r\n\r\n<strong>You can also pair your lock with a smart doorbell camera, allowing you to physically see who\u2019s at your door with the click of a button. The personalized passcode feature is perfect for kids, guests, in-home deliveries.<\/strong>\r\n\r\n<strong> <img class=\"alignnone wp-image-10824 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/7-6-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n\r\n<strong> Who Would Benefit The Most From Your Product?<\/strong>\r\n\r\n<strong> The society people, more so those who lack ability to apply other security methods like; fencing their home with electric fences. <\/strong><strong>smart locks allow a homeowner to enter their home or provide others access without requiring a traditional key. Instead, the user uses their smartphone or a key fob to wirelessly verify and mechanically unlock the door. Smart locks are an extension of home automation into home security.<\/strong>\r\n\r\n<strong> <img class=\"alignnone wp-image-10825 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/8-6-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n<ol>\r\n \t<li><strong> Who Are Your Competitors and How is Your Product Better?<\/strong><\/li>\r\n \t<li><strong> The electric fences company. My product is better because it can be installed in a hindden place therefore people cannot be aware about it presence unlike to electric fence which cann\u2019t be hidden. Also, it will help business people because it is affordable to anyone in need of it.<\/strong><\/li>\r\n<\/ol>\r\n<strong> <img class=\"alignnone wp-image-10826 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/11\/9-6-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/><\/strong>\r\n\r\n<strong> Tell Us About the Product Specifications and What is In the Box?<\/strong>\r\n\r\n<strong>\u00a0<\/strong>\r\n\r\n<strong>The product is a Door Lock Sensor and when you open inside you will find a complete Door Lock Sensor which is already connected and which ready for use.<\/strong>\r\n\r\n<strong>\u00a0<\/strong>","post_title":"A Door Lock sensor","post_excerpt":"<strong>This a Door Lock Sensor. It is used to enhance security in different places like; home , hotels and banks.<\/strong> <strong>A smart lock is an electromechanical lock which is designed to perform locking and unlocking operations on a door when it receives such instructions from an authorized device using a wireless protocol and a cryptographic key to execute the authorization process.<\/strong>","post_status":"pending","comment_status":"open","ping_status":"closed","post_password":"","post_name":"","to_ping":"","pinged":"","post_modified":"2022-11-05 12:46:28","post_modified_gmt":"2022-11-05 12:46:28","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10828","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10746,"post_author":"54","post_date":"2022-11-05 12:30:28","post_date_gmt":"0000-00-00 00:00:00","post_content":"<h1><strong>A SMART DOOR LOCK SYSTEM<\/strong><\/h1>\r\n<a href=\"https:\/\/moonpreneur.com\/moonfunded\/projects\/\">Projects<\/a><img class=\"alignnone wp-image-10735 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/1-3-1024x576.jpg\" alt=\"\" width=\"727\" height=\"409\" \/>\r\n\r\n&nbsp;\r\n\r\n<strong>\u00a0<\/strong>\r\n<ol>\r\n \t<li><strong> What is Your Problem statement?<\/strong><\/li>\r\n \t<li><strong> INSECURITY <\/strong><strong>This has been a major issue in our community. When the corona pandemic hit the whole world people were so desperate and they started stealing this gave me the idea that I can be able to create a system that can be able to detect intruders especially in work places like the banks<\/strong><\/li>\r\n<\/ol>\r\n<strong><img class=\"alignnone wp-image-10719 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/INSECURITY-This-has-been-a-major-issue-in-our-community-2-1024x576.jpg\" alt=\"\" width=\"702\" height=\"395\" \/><\/strong>\r\n<h1><strong>Where Did This Idea Come From?<\/strong><\/h1>\r\n<strong>A.<\/strong><strong>one day in the middle of the night I saw some thieves near our home in a certain chemist and I thought to myself if only there was an alarm the thieves could have been caught even before they did what they had planned and that's where\u00a0 I decided why not help My community by developing a door lock sensor<\/strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-10736 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/3-1-1024x576.jpg\" alt=\"\" width=\"746\" height=\"420\" \/>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1><strong>\u00a0<\/strong><strong>Why do you want to take your project on a crowd-funding platform?<\/strong><\/h1>\r\n<strong>it has been so had to get funds so that i can be able to make more systems and even advance them to even better system than other systems I know that through crowdfunding I can be able to get funds that is going to be advanced and more reliable<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10706 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/INSECURITY-This-has-been-a-major-issue-in-our-community-7-1024x576.jpg\" alt=\"\" width=\"643\" height=\"362\" \/>\r\n<h1><strong>How is It Solving This Problem?<\/strong><\/h1>\r\n<strong>Like for instance the robbery that i witnessed could have been avoided so the system is going to reduce robber in our community and ensure security in households and take our community to another level in the field of technology<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10737 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/INSECURITY-This-has-been-a-major-issue-in-our-community-6-1024x576.jpg\" alt=\"\" width=\"784\" height=\"441\" \/>\r\n<h1><strong>\u00a0<\/strong><strong>Who Would Benefit The Most From MY Product?<\/strong><\/h1>\r\n<strong>it would benefit the young enterprenuers who are really intrested in the tech world because no one had this idea the enterprenuers will develop more and more advanced ones. Most importantly I will benefit and benefit the community members because this system is going to minimize theft in the community<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10738 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/6-1-1024x576.jpg\" alt=\"\" width=\"707\" height=\"398\" \/>\r\n<h1><strong>Who Are Your Competitors and How is Your Product Better?<\/strong><\/h1>\r\n<strong>The security firms. <\/strong><strong>\u00a0<\/strong><strong>Since the system is still new in the community people still prefer hiring security guards who have ensured security since time in memorial than having a small system which it is believed to ensure security. What the people are so wrong about is that this system may be small and may look insufficient. It is more significant than even the security guards. One, is that there is no day that it will become tired and sleep like in the case of security guards . Second, is that it has been made affordable to everyone and soon <\/strong><strong>available to everyone <\/strong><strong>it is so cheaper <\/strong><strong>than hiring a security guard<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10739 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/7-1-1024x576.jpg\" alt=\"\" width=\"688\" height=\"387\" \/>\r\n\r\n<strong>\u00a0<\/strong><strong>Tell Us About the Product Specifications and What is In the Box?<\/strong>\r\n\r\n<strong>THE SMART DOOR LOCK SYSTEM has got an LED that can be used to signal an intruder for people who are deaf since they cannot here the buzzer\u2019s sound the LED has very bright lightings and it also has a buzzer that has some different frequencies that is so helpful for sound output. The box has in it a screen that displays that the door is opened or the door is closed this makes the product outstand itself it doesn\u2019t need any hyperbole explanation the product just speaks for itself. Just buy one for yourself and you will live to thank yourself for buying it<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10740 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/8-1-1024x576.jpg\" alt=\"\" width=\"693\" height=\"390\" \/>\r\n\r\n<img class=\"alignnone wp-image-10741 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/9-1-1024x576.jpg\" alt=\"\" width=\"627\" height=\"353\" \/> <img class=\"alignnone wp-image-10742 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/10-2-1024x576.jpg\" alt=\"\" width=\"628\" height=\"354\" \/> <img class=\"alignnone wp-image-10743 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/11-1024x576.jpg\" alt=\"\" width=\"625\" height=\"352\" \/>\r\n\r\n<img class=\"alignnone wp-image-10744 \" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/12-1024x576.jpg\" alt=\"\" width=\"626\" height=\"352\" \/>","post_title":"THE SMART DOOR LOCK SYSTEM","post_excerpt":"<h1><strong>Short Story about your Product <\/strong><\/h1>\r\n&nbsp;\r\n\r\n<img class=\"alignnone wp-image-10699 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/INSECURITY-This-has-been-a-major-issue-in-our-community-1-1-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/>","post_status":"pending","comment_status":"open","ping_status":"closed","post_password":"","post_name":"","to_ping":"","pinged":"","post_modified":"2022-11-05 12:30:28","post_modified_gmt":"2022-11-05 12:30:28","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10746","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10749,"post_author":"72","post_date":"2022-11-05 11:50:12","post_date_gmt":"0000-00-00 00:00:00","post_content":"<strong>\u00a0<\/strong>\r\n<ol>\r\n \t<li><strong> What are You Working On?<\/strong><\/li>\r\n<\/ol>\r\n<strong>A Door lock sensor<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10720\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/1-1-600x600.jpg\" alt=\"\" width=\"302\" height=\"302\" \/>\r\n\r\n<strong>What is Your Problem statement?<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10723\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/3-600x600.jpg\" alt=\"\" width=\"284\" height=\"284\" \/>\r\n\r\n<strong>it should be able to identify all new or strange patterns used by unauthoriz<\/strong><strong>ed conventional locks and keys are the simplest and the cheapest way to secure a place. However, this method is not the best way to choose. In the eye of security experts, it is being considered as a very poor security method that has a lot of demerits. The demerits of conventional method are as follows: Easiness to duplicate keys, Conventional keys can be duplicated easily by unauthorized user by sending the original key send person who is trying to access the pattern so that they can get in secretly. Electronic access control system is a modern system that commonly used to protect properties of owner. And is more safer.<\/strong>\r\n\r\n<strong>Where Did This Idea Come From?<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10724\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/4-600x600.jpg\" alt=\"\" width=\"333\" height=\"333\" \/>\r\n\r\n&nbsp;\r\n\r\n<strong>When thieves broke into our neighbor\u2019s house and got away with their things. And there had been many complains on theft in the community. <\/strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Why do you want to take your project on a crowd-funding platform?<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10725\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/5-600x600.jpg\" alt=\"\" width=\"271\" height=\"271\" \/>\r\n\r\nUnlike traditional methods of raising finance, crowdfunding is innovative and based on the concept of raising funding via crowds of people.\u00a0Crowdfunding enables businesses and individuals to attract investors in the business through the practice of funding a project by raising sums of money from a crowd of people who are willing to invest in the business. Some of those offering funds will do so altruistically, expecting nothing in return until the crowdfunding goal is achieved.\r\n\r\n<strong>How is It Solving This Problem?<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10726\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/6-600x600.jpg\" alt=\"\" width=\"305\" height=\"305\" \/>\r\n\r\n<strong>\u00a0<\/strong>Smart door locks\u00a0<strong>can alert you when doors open and close, and some systems even allow you to give different people their own passcodes, so you know exactly who is entering<\/strong>. You can also pair your lock with a smart doorbell camera, allowing you to physically see who's at your door with the click of a button. <strong>In addition help in reducing issues of theft and others social evils happening without people knowledge. <\/strong><strong>The personalized passcode feature is perfect for kids, guests, in-home deliveries.<\/strong>\r\n\r\n<strong>Who Would Benefit The Most From Your Product?<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10727 size-large\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/7-1024x576.jpg\" alt=\"\" width=\"900\" height=\"506\" \/>\r\n\r\n<strong>People in the society, more so those who have no ability to apply other security methods like; fencing their homes with electric fences. Smart locks allow a homeowner to enter their home or provide others access without requiring a traditional key. The user uses their smartphone or a key fob to wirelessly verify <\/strong><strong>and mechanically unlock the door. Smart locks are an extension of home automation into home security.<\/strong>\r\n\r\n<strong>Who Are Your Competitors and How is Your Product Better\u00a0<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10728\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/8-600x600.jpg\" alt=\"\" width=\"354\" height=\"354\" \/>\r\n\r\n<strong>The electric fences company. My product is better because it can be installed in a hidden place therefore people cannot be aware about its presence unlike the electric fence which cannot be hidden. In addition it will help business people because it is affordable to anyone in need of it.<\/strong>\r\n\r\n<strong>Tell Us About the Product Specifications and What is In the Box?<\/strong>\r\n\r\n<img class=\"alignnone wp-image-10729\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/9-600x600.jpg\" alt=\"\" width=\"349\" height=\"349\" \/>\r\n\r\n<strong>\u00a0<\/strong>\r\n\r\n<strong>The product in the box is a door lock sensor and when you open inside you will find a complete Door Lock Sensor which is already connected and which ready to be put in use.<\/strong>\r\n\r\n<strong>\u00a0<\/strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;","post_title":"Door Lock sensor","post_excerpt":"<strong>This a Door Lock Sensor. <\/strong>Has its own sensor, it can\u00a0<strong>detect whether the door is fully closed or if the door is left ajar, it sends a notification as a reminder<\/strong>. It can also detect if someone is trying to break in through the door and send a break-in detection notification to the user's mobile device\r\n\r\n<img class=\"alignnone size-medium wp-image-10722\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/10\/2-600x600.jpg\" alt=\"\" width=\"600\" height=\"600\" \/>\r\n\r\n<strong>\u00a0<\/strong>\r\n\r\n&nbsp;\r\n\r\n<strong>\u00a0<\/strong>","post_status":"pending","comment_status":"open","ping_status":"closed","post_password":"","post_name":"","to_ping":"","pinged":"","post_modified":"2022-11-05 11:50:12","post_modified_gmt":"2022-11-05 11:50:12","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10749","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10571,"post_author":"34","post_date":"2022-06-16 14:22:21","post_date_gmt":"2022-06-16 14:22:21","post_content":"<b>What is a Home Buddy - Smart Door Lock System? What does it do?<\/b>\r\n\r\nI have created a door lock system using the Raspberry Pi Pico. The door lock creates a safe and calm environment for you and your family, especially in your home office.\u00a0You can use it for any room in the house.\r\n\r\n<img class=\"alignnone wp-image-10602 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-4-scaled.jpg\" alt=\"What is a Home Buddy - Smart Door Lock System? What does it do?\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>What is in the box? What is the function of the components in the box?<\/b>\r\n<ul>\r\n \t<li aria-level=\"1\">Raspberry Pi Pico - Programming Board<\/li>\r\n \t<li aria-level=\"1\">Solenoid: Electrical lock<\/li>\r\n \t<li aria-level=\"1\">MOSFET Driver: To control solenoid<\/li>\r\n \t<li aria-level=\"1\">Buck converter: To supply power to Pico Board<\/li>\r\n \t<li aria-level=\"1\">Barrel Jack: Input Supply<\/li>\r\n \t<li aria-level=\"1\">Keypad: To enter the password enclosure<\/li>\r\n \t<li aria-level=\"1\">\u00a0Screen: To view the pin-entry details<\/li>\r\n<\/ul>\r\n<b>Raspberry Pi Pico with case cover: <\/b>The Raspberry Pi Pico is a tiny, fast, and affordable board built using RP2040. This is a new microcontroller chip from the Raspberry Pi family and you can use it to learn to program fun, practical projects.\r\n\r\n<b>The Solenoid acts as an electrical lock.<\/b>\r\n\r\n<b>MOSFET Driver is used to control solenoid<\/b>\r\n\r\n<b>Buck converter supplies power to PicoBoard<\/b>\r\n\r\n<b>Barrel Jack is for input supply<\/b>\r\n\r\n<b>Keypad to enter password enclosure<\/b>\r\n\r\n<b>The screen helps in viewing the pin-entry details.<\/b>\r\n\r\n<img class=\"alignnone wp-image-10605 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-7-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>What problem is your product solving?<\/b>\r\n\r\nAs the world embraces working from home, we need an innovative solution to help stop family members from barging into rooms unannounced and ensure privacy or safety in each room. It helps prevent disruptions during meetings; place it outside your home office to stop kids\/adults from entering the room without your knowledge during calls\/meetings.\r\n\r\n<img class=\"alignnone wp-image-10600 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-2-scaled.jpg\" alt=\"What problem is your product solving?\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>How is your product better at solving the problem as compared to the competition? Why should a person choose your product? \u00a0<\/b>\r\n\r\nIt is an all-in-one simple automated door lock system that operates using a pin-code entry system. Home Buddy enables the user to feel safe enough to leave their laptop unattended without the worry of it being tampered with by kids. The door lock won\u2019t allow people to walk in during video conferences.\r\n\r\nThis is a multi-purpose lock, making it a perfect choice in this post-pandemic age. It\u2019s a simple, light design and easy to operate, even for the elderly and non-techies!\r\n\r\n<img class=\"alignnone wp-image-10603 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-5-scaled.jpg\" alt=\"Featres\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>Who are you?<\/b>\r\n\r\nHello, my name is Yusuf Sherrief. I\u2019m from London and I have lived in South Africa and the UAE. I am 10 years old and have a brother, a sister, and a cat named Lila. I enjoy racing, and when I grow up, I want to be an F1 driver for Mercedes Benz or McClaren. On my thirteen birthday, I will get a Go-Kart and compete in races.\r\n\r\n<em><img class=\"alignnone wp-image-10599 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-1-scaled.jpg\" alt=\"About creator\" width=\"2560\" height=\"1688\" \/><\/em>\r\n\r\n<b>Where did this project come from?<\/b>\r\n\r\nThe thing that inspired me to create this product was the time when we were all at home during the pandemic lockdown. My dad was working from home. He used to be on calls and meetings in the home office, but he wouldn\u2019t lock the door. My younger siblings would run into the room whilst he was on calls, and it became a problem. That\u2019s when I decided to create this product.\r\n\r\n<img class=\"alignnone wp-image-10601 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-3-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>Why do you care about privacy and security?<\/b>\r\n\r\nBoth parents and children need to have uninterrupted time. For example, a student preparing for their final exam to graduate can study properly after putting the lock outside.\r\n\r\n<b>Who will benefit from this product the most?<\/b><b>\u00a0<\/b>\r\n\r\nAll the parents working from home and those who have meetings and calls often. It can also help teenagers or university students by providing them with privacy to study or do online learning peacefully. And it can come in handy when you just need some time alone.\r\n\r\n<img class=\"alignnone wp-image-10604 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/06\/Slide-6-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>There are other smart door locks on the market. What makes your system unique?<\/b>\r\n\r\nYou can easily set it up. The best part is that you assembled it out of a box! So, no need to waste hours and hours watching YouTube videos or hiring a locksmith. We even have instructions if you get stuck. The door lock is compatible with all doors, no matter the size.\r\n\r\n<b><\/b><b>Why do you want this to be on a crowdfunding platform?\u00a0<\/b>\r\n\r\nThis is the prototype of my product. I want\u00a0<b>to enhance the experience further. For that, I have to buy more<\/b>\u00a0<b>parts. I also want to iterate this product.<\/b>\u00a0I also wanted to create more such products. I need funds to fulfill my goals. That is why I want to take it to a crowdfunding platform. After raising the funds from there, I would be able to work on my ideas.\r\n\r\n<b>What will you do with the funds you receive?<\/b><b>\u00a0<\/b>\r\n\r\nI will use $200 to make the product, $250 for marketing this product, and 70 $ for shipping and logistics.","post_title":"Home Buddy - Smart Door Lock System","post_excerpt":"This 10-year-old young innovator Yusuf Sherrief not just empathized with his father but solved his problem by inventing Home Buddy, a smart door lock system that helps to maintain privacy by keeping intrusions at bay. He created this easy to install lock system using the Raspberry Pi Pico. University students and teenagers can enjoy its benefits too.\r\n\r\n&nbsp;","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"home-buddy-smart-door-lock-system-2","to_ping":"","pinged":"","post_modified":"2022-06-25 16:05:45","post_modified_gmt":"2022-06-25 16:05:45","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10571","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10526,"post_author":"40","post_date":"2022-05-03 10:33:51","post_date_gmt":"2022-05-03 10:33:51","post_content":"<b>What are You Working On?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">I am working on a car alarm that will be efficient and safe. This car alarm will help me achieve my dream of making the roads safer. This car alarm will guarantee the safety of anyone as long as they drive responsibly. It features an audio and text alarm that will guarantee safety for all drivers. I estimate that my car alarm will decrease car accidents by 50% because of its high-tech features.<\/span>\r\n\r\n<img class=\"alignnone wp-image-10535 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/High-Tech-Car-Alarm-1-scaled.jpg\" alt=\"High Tech Car Alarm\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>What is Your Problem Statement?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">Have you ever been in a situation where you have crashed your car because of a lack of awareness? Every year, millions of people crash their cars and get into potentially fatal accidents. Often it is because drivers are unaware of the dangers around them and the proximity of objects that may cause an accident. The consequences of these crashes can range from expensive car damage to possible death. Every driver faces the threat of crashing their car every time they start their engine; it has become a severe problem all over the world. We should introduce new features to cut down on the fatal or near-fatal accidents that happen every year.<\/span>\r\n\r\n<img class=\"alignnone wp-image-10536 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/High-Tech-Car-Alarm-2-scaled.jpg\" alt=\"High tech car alarm problem startment\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>Where Did This Idea Come From?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">A friend of mine recently moved from an isolated, low populated country in Europe to Toronto. In that country, the roads were fairly spacious and empty. He moved to Toronto as he felt it was time for a change. He was so excited to come to Canada and when he finally arrived, he could not stop marveling at the infrastructure and people of the city. He spent a couple of weeks discovering the city before he felt he was ready to go behind the wheels. He was overjoyed, he could explore the city all by himself and be able to visit many landmarks. But he soon realized that driving in Toronto was difficult. There were a lot more cars and objects that he could crash in. Unfortunately, during his first car ride when he tried to change lanes, he was unaware of a speeding car coming from down the road. The cars collided leaving him injured. Thankfully, he survived, but he decided he will drive again only if he can be assured of safety on the roads. This is when the idea of building a car alarm struck me. If my friend had a car alarm, he would have been alerted about the incoming danger and would have been able to avoid the collision. I hope in the future, people like my friend would feel safer with my car alarm built into their vehicles.<\/span>\r\n\r\n<b>How is It Solving This Problem?<\/b>\r\n\r\n<b>\u00a0<\/b><span style=\"font-weight: 400;\">With the car alarm, drivers will learn about potential dangers in advance. If we add this feature to every car, I am hundred percent certain that it would make the roads a much safer place and it would save people their time, money, and lives. People would be more aware of their surroundings, which would reduce the chances of collisions. Of course, there will still be crashes due to irresponsible driving, but at least with the car alarm drivers will be comforted by the fact that they are not completely defenseless against the dangers of irresponsible driving.<\/span>\r\n\r\n<img class=\"alignnone wp-image-10537 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/High-Tech-Car-Alarm-3-scaled.jpg\" alt=\"High Tech car alarm idea\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>Who Would Benefit The Most From Your Product?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">My product would benefit all drivers as it will provide them with comfort and safety while driving. The car alarm comes with different features designed to keep drivers alert and aware of their surroundings. This will guarantee a driver\u2019s safety on the road. According to Esurance, 77% of drivers have gotten into a minor or major accident at least one time. This shows that car crashes are extremely common which is why I think drivers will benefit the most.<\/span>\r\n\r\n<img class=\"alignnone wp-image-10538 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/High-Tech-Car-Alarm-4-scaled.jpg\" alt=\"High tech car alarm benefits\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<b>Who Are Your Competitors and How is Your Product Better?<\/b>\r\n\r\n<span style=\"font-weight: 400;\">My competitors would all be high-end car companies designing car alarms for their cars. Companies such as Mercedes, BMW, and Honda would be my competitors as they equip their cars with some sort of car alarm. What sets my car alarm apart is the fact that it is Eco-friendly and easy to use. I made the car alarm up of simple parts and it depends on regular batteries to power it.\u00a0<\/span>\r\n\r\n<span style=\"font-weight: 400;\">Those who will purchase my car alarm would support a young entrepreneur who is trying to make the roads a safer place. Unlike big corporate companies, I designed my car alarm keeping the safety of drivers in mind and not to mint money.<\/span>\r\n\r\n<b>Tell Us About the Product Specifications and What is In the Box?<\/b>\r\n<ul>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">LCD screen that displays warnings and distance from the nearest object\u00a0<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The ultrasonic sensor will measure the distance from the nearest object<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">8 wires and directions on where to connect each of them<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The Embedded Learned Board comes with a buzzer, which we can use for the alarm<\/span><\/li>\r\n<\/ul>\r\n<img class=\"alignnone wp-image-10539 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/High-Tech-Car-Alarm-5-scaled.jpg\" alt=\"high tech car alarm components\" width=\"2560\" height=\"1688\" \/>\r\n\r\n<strong>About the creator\u00a0<\/strong>\r\n\r\nMy name is Brandon Raveendra. I am an 11th grader, and I have a great deal of experience in the programming and automobile field. A life-changing incident inspired me to invent something to make driving safer. After thorough research on car alarms, automobiles, and programming, I created this high-tech car alarm as I wanted to make the roads the safest place on the earth.\r\n\r\n<img class=\"alignnone wp-image-10546 size-full\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/05\/About-the-creator-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1688\" \/>","post_title":"Eco-friendly car alarm","post_excerpt":"<span style=\"font-weight: 400;\">The eco- friendly car alarm is an alarm designed with the driver\u2019s utmost safety in mind. It is coded to keep drivers alert at all times and will warn them of any potential dangers around them. The features of this alarm also keep drivers aware of nearby objects and notify them if they are at a close proximity with any object.<\/span>","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"eco-friendly-car-alarm","to_ping":"","pinged":"","post_modified":"2024-08-10 08:43:26","post_modified_gmt":"2024-08-10 08:43:26","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10526","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10498,"post_author":"35","post_date":"2022-04-12 13:36:14","post_date_gmt":"2022-04-12 13:36:14","post_content":"<strong>Where Did This Project Come From?<\/strong>\r\n\r\nThe idea of making a smart light bulb struck me when I was playing with my LED lights and lights in my room. I had to go all the way across my room just to turn off both the lights! They were both in different places, by the way. As I was thinking about this problem, I realized how great it would be if I could combine the two and make automatic switches! This would make my life so much easier and I can play tricks on my friends.\r\n\r\n<img class=\"alignnone size-medium wp-image-10510\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/2-600x408.jpg\" alt=\"Smart Light Bulb Idea\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>How is it Solving This Problem?<\/strong>\r\n\r\nThis is solving the problem as instead of having to manually put up the LED light strips, we can just screw the light bulb onto the ceiling. It will save so much time and we won't get neck aches from looking up for so long! It changes colors. It also solves the problem of saving electricity, meaning that whenever there is no movement in the room, it'll turn off automatically. Our parents won\u2019t have to remind us all the time to turn the lights off. Not only that, it makes our lives easier because it is a combination of both LEDs and light bulbs essentially making it a 3-in-1.\r\n\r\n<img class=\"alignnone size-medium wp-image-10511\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/3-600x408.jpg\" alt=\"Multipurpose Lighting Solution\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>Why Do You Care?<\/strong>\r\n\r\nI want to make everyone\u2019s lives easier and I love LEDs so I thought why not make something that would improve light bulbs and turn them into multifunctional LEDs!\r\nEveryone loves LEDs and multifunctional ones are even cooler!\r\n\r\n<strong>Why Are You Creating This?<\/strong>\r\n\r\nI am creating this to make our lives simpler. Now, not only do we get to enjoy the beautiful LEDs, but they also have multiple functions that will save us time and energy!\r\n\r\n<strong>Who Will This Product Benefit Most?<\/strong>\r\n\r\nWho doesn\u2019t like cool LEDs? The kind of RGB lights that make teenage gamers smile. Its cool functions and disco mode make gaming or even anything so much more enjoyable. With my new project, it will be gaming at a whole other level. The sensors in it will make life easier. It has motion-detecting sensors and sound detecting sensors which means that at the sound of a clap, your light will turn on!\r\n\r\n<img class=\"alignnone size-medium wp-image-10521\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/Smart-Light-Bulb-Carol-Yan-5-600x408.jpg\" alt=\"Smart light bulb benefits\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>What Makes Your Product Unique?<\/strong>\r\n\r\nIf we could combine LEDs and light bulbs, we could make the most epic creation, a LED light bulb that would combine the features of both the lights and improve upon them. This product is better than my competitors because it has multiple features in one and can make someone\u2019s life a lot easier. It has different sensors and controls. It is a combination of a light bulb and LED lights that make it better than most light bulbs\/LEDs.\r\n\r\n<strong>Why Do You Want it to Be on a Crowdfunding Platform?<\/strong>\r\n\r\nI want my product to be on a crowdfunding platform so that more people are aware of the release of this amazing 3-in-1 LED light bulb that will make everyone happy and help me raise enough funds so that I can start the production of this product. By helping me reach my goal and raising enough money, they can get their 3-in-1 LED light bulb that will make their lives so much simpler!\r\n\r\n<b>What are the Features of the Smart Light?<\/b>\r\n<ul>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Color of light can be changed with an IR remote.<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Brightness of light can be changed with an IR remote.<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Turning the light ON and OFF after sensing the sound and motion.<\/span><\/li>\r\n \t<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Changing the mode of operation to fade-in fadeout with IR remote.<\/span><\/li>\r\n<\/ul>\r\n<img class=\"alignnone size-medium wp-image-10522\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/slide-2-600x408.jpg\" alt=\"Smart light bulb features\" width=\"600\" height=\"408\" \/>\r\n\r\n<b>What are the Components of the Smart Light?<\/b>\r\n\r\nSmart Light has the following components:\r\n<ul>\r\n \t<li aria-level=\"1\"><b>Arduino Nano board<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>PIR sensor<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>Microphone sensor<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>16-pixel Neopixel ring,\u00a0<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>Power source,\u00a0<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>Light enclosure<\/b><\/li>\r\n<\/ul>\r\n<ul>\r\n \t<li aria-level=\"1\"><b>\u00a0IR remote<\/b><\/li>\r\n<\/ul>\r\n<img class=\"alignnone size-medium wp-image-10523\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/slide-1-600x408.jpg\" alt=\"Smart Light Bulb components\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>What\u2019s in the Box? (Product Specifications)<\/strong>\r\n\r\nInside the box, I am going to have the light bulb, instructions, and a remote.\r\n\r\n<img class=\"alignnone size-medium wp-image-10514\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/4-600x408.jpg\" alt=\"Smart light bulb components\" width=\"600\" height=\"408\" \/>\r\n\r\n<strong>About the Creator<\/strong>\r\n\r\nHello! I am Carol Yan, an 8th grader. I love to read and play golf. I love to play the piano. I also like engineering and because of that, I constantly have ideas for inventions to make the world a better place!\r\n\r\n<img class=\"alignnone size-medium wp-image-10515\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/1-600x408.jpg\" alt=\"About the author\" width=\"600\" height=\"408\" \/>","post_title":"Smart Light Bulb: Multipurpose sustainable lighting solution","post_excerpt":"Smart Light Bulb is a multifunctional and a multipurpose lighting solution that is a combination of both LEDs and light bulbs. It not only looks cool as a room decoration, especially for gamers, but can make love easier for the user as well. This 3-in-1 Smart Light Bulb can be remotely operated, detects motion and sound to automatically turn on or off that helps save time, energy, and money.\r\n\r\n<img class=\"alignnone size-medium wp-image-10519\" src=\"https:\/\/moonpreneur.com\/moonfunded\/wp-content\/uploads\/2022\/04\/2-in-1-Smart-Light-Bulb-image-600x408.jpg\" alt=\"3 in 1 Smart Light Bulb\" width=\"600\" height=\"408\" \/>","post_status":"publish","comment_status":"open","ping_status":"closed","post_password":"","post_name":"smart-led-led-lightsa-light-bulb-to-make-your-room-the-coolest-thing-ever","to_ping":"","pinged":"","post_modified":"2026-01-11 17:25:27","post_modified_gmt":"2026-01-11 17:25:27","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10498","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"},{"ID":10492,"post_author":"35","post_date":"2022-03-31 01:42:03","post_date_gmt":"0000-00-00 00:00:00","post_content":"<span style=\"font-weight: 400\">This is a combination of LED lights and a regular light bulb to make your room the coolest and brightest thing ever! It has more than 3 automatic\u00a0 features that will make your lights easy to control. Some of these features include clap controlled, motion controlled, and different alternating light modes.\u00a0<\/span>","post_title":"Smart LED \u2013 LED lights+a light bulb to make your room the coolest thing ever!","post_excerpt":"<span style=\"font-weight: 400\">A combination of LED lights and a light bulb to make your room the coolest thing ever!<\/span>","post_status":"pending","comment_status":"open","ping_status":"closed","post_password":"","post_name":"","to_ping":"","pinged":"","post_modified":"2022-03-31 01:42:03","post_modified_gmt":"2022-03-31 01:42:03","post_content_filtered":"","post_parent":0,"guid":"https:\/\/moonpreneur.com\/moonfunded\/?post_type=product&#038;p=10492","menu_order":0,"post_type":"product","post_mime_type":"","comment_count":"0","filter":"raw"}],"_links":{"self":[{"href":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/product\/10332"}],"collection":[{"href":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/types\/product"}],"replies":[{"embeddable":true,"href":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/comments?post=10332"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/media\/10331"}],"wp:attachment":[{"href":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/media?parent=10332"}],"wp:term":[{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/product_cat?post=10332"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/mp.moonpreneur.com\/moonfunded\/wp-json\/wp\/v2\/product_tag?post=10332"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}