├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── battery_update.py ├── battery_update.service ├── get_ar4k_voltage.py ├── images ├── ar_pi_wiring.png └── battery_status.png └── integrated_battery.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/README.md -------------------------------------------------------------------------------- /battery_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/battery_update.py -------------------------------------------------------------------------------- /battery_update.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/battery_update.service -------------------------------------------------------------------------------- /get_ar4k_voltage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/get_ar4k_voltage.py -------------------------------------------------------------------------------- /images/ar_pi_wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/images/ar_pi_wiring.png -------------------------------------------------------------------------------- /images/battery_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/images/battery_status.png -------------------------------------------------------------------------------- /integrated_battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a8ksh4/rpi-integrated-battery-module/HEAD/integrated_battery.c --------------------------------------------------------------------------------