├── .gitignore ├── Dockerfile ├── INSTALL.sh ├── LICENSE ├── Makefile ├── README.md ├── bindings ├── lifepo4wered.js └── lifepo4wered.py ├── boards └── Allwinner-H3 │ ├── README.txt │ └── gpio-poweroff.dts ├── initscript ├── lifepo4wered-access.c ├── lifepo4wered-access.h ├── lifepo4wered-cli.c ├── lifepo4wered-daemon.c ├── lifepo4wered-data.c ├── lifepo4wered-data.h └── systemdscript /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/INSTALL.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/README.md -------------------------------------------------------------------------------- /bindings/lifepo4wered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/bindings/lifepo4wered.js -------------------------------------------------------------------------------- /bindings/lifepo4wered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/bindings/lifepo4wered.py -------------------------------------------------------------------------------- /boards/Allwinner-H3/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/boards/Allwinner-H3/README.txt -------------------------------------------------------------------------------- /boards/Allwinner-H3/gpio-poweroff.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/boards/Allwinner-H3/gpio-poweroff.dts -------------------------------------------------------------------------------- /initscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/initscript -------------------------------------------------------------------------------- /lifepo4wered-access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/lifepo4wered-access.c -------------------------------------------------------------------------------- /lifepo4wered-access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/lifepo4wered-access.h -------------------------------------------------------------------------------- /lifepo4wered-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/lifepo4wered-cli.c -------------------------------------------------------------------------------- /lifepo4wered-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/lifepo4wered-daemon.c -------------------------------------------------------------------------------- /lifepo4wered-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/lifepo4wered-data.c -------------------------------------------------------------------------------- /lifepo4wered-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/lifepo4wered-data.h -------------------------------------------------------------------------------- /systemdscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorbit/LiFePO4wered-Pi/HEAD/systemdscript --------------------------------------------------------------------------------