{"id":24427727,"url":"https://github.com/sunfounder/pipower5","last_synced_at":"2026-02-22T19:05:54.765Z","repository":{"id":255609492,"uuid":"852579580","full_name":"sunfounder/pipower5","owner":"sunfounder","description":"Python Library for PiPower 5","archived":false,"fork":false,"pushed_at":"2026-02-04T09:45:43.000Z","size":19104,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-04T21:58:32.232Z","etag":null,"topics":["pipower","pipower5","raspberry-pi","raspberrypi","sunfounder"],"latest_commit_sha":null,"homepage":"https://docs.sunfounder.com/projects/pipower5/en/latest/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sunfounder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-05T03:50:32.000Z","updated_at":"2026-02-04T09:46:00.000Z","dependencies_parsed_at":"2025-01-16T08:40:42.994Z","dependency_job_id":"070f66c0-3f5e-426e-a20d-a3e7354d755d","html_url":"https://github.com/sunfounder/pipower5","commit_stats":null,"previous_names":["sunfounder/pipower5"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/sunfounder/pipower5","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunfounder%2Fpipower5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunfounder%2Fpipower5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunfounder%2Fpipower5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunfounder%2Fpipower5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sunfounder","download_url":"https://codeload.github.com/sunfounder/pipower5/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunfounder%2Fpipower5/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29723578,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T15:10:41.462Z","status":"ssl_error","status_checked_at":"2026-02-22T15:10:04.636Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pipower","pipower5","raspberry-pi","raspberrypi","sunfounder"],"created_at":"2025-01-20T12:12:43.708Z","updated_at":"2026-02-22T19:05:54.760Z","avatar_url":"https://github.com/sunfounder.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PiPower 5\n\n## Installation\n\nInstall the required packages:\n\n```bash\nsudo apt-get update\nsudo apt-get install git python3-pip python3-dev python3-setuptools\n```\n\nInstall PiPower 5\n```bash\nsudo python install.py\n```\n\n\u003e Note: This will also install a dashboard to monitor the PiPower 5 and your Raspberry Pi. If you don't need it, you can add a flag `--disable-dashboard` to the installation command.\n\u003e ```bash\n\u003e sudo python install.py --disable-dashboard\n\u003e ```\n\u003e Or you can uninstall the dashboard later by cli\n\u003e ```bash\n\u003e sudo pipower5 --remove-dashboard\n\u003e ```\n\n## Debug\n\nClone the dependency you want to debug or edit\n\n```bash\ngit clone https://github.com/sunfounder/pipower5.git\ngit clone https://github.com/sunfounder/pm_dashboard.git\ngit clone https://github.com/sunfounder/sf_rpi_status.git\n```\n\nMake adjustments, and manually install the package\n\n```bash\ncd ~/pipower5 \u0026\u0026 sudo rm -rf build pipower5.egg-info \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 uninstall pipower5 -y \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 install . --no-build-isolation\ncd ~/pm_dashboard \u0026\u0026 sudo rm -rf build pm_dashboard.egg-info \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 uninstall pm_dashboard -y \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 install . --no-build-isolation\ncd ~/pm_auto \u0026\u0026 sudo rm -rf build pm_auto.egg-info \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 uninstall pm_auto -y \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 install . --no-build-isolation\ncd ~/sf_rpi_status \u0026\u0026 sudo rm -rf build sf_rpi_status.egg-info \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 uninstall sf_rpi_status -y \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 install . --no-build-isolation\nsudo /opt/pipower5/venv/bin/pip3 uninstall spc -y \u0026\u0026 sudo /opt/pipower5/venv/bin/pip3 install git+https://github.com/sunfounder/spc.git --no-build-isolation\n\nsudo rm -r /opt/pipower5/email_templates/ \u0026\u0026 sudo cp -r ~/pipower5/email_templates/ /opt/pipower5/\njournalctl -xefu pipower5.service\n```\n\nStart/stop the service for debug\n\n```\nsudo systemctl stop pipower5.service\nsudo systemctl start pipower5.service\nsudo systemctl restart pipower5.service\nsudo pipower5 start\n\nsudo /opt/pipower5/venv/bin/python3\n```\n\n## Setting power-off singal for Pi 3B+ / Pi Zero\nedit `/boot/firmware/config.txt` and add the following line:\n```\ndtoverlay=gpio-poweroff,gpio_pin=26,active_low=1\ngpio=26=op,dh\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunfounder%2Fpipower5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunfounder%2Fpipower5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunfounder%2Fpipower5/lists"}