JS>> acc>> 返回
项目作者: VR-25

项目描述 :
Advanced Charging Controller
高级语言: Shell
项目地址: git://github.com/VR-25/acc.git
创建时间: 2019-05-11T07:01:48Z
项目社区:https://github.com/VR-25/acc

开源协议:GNU General Public License v3.0

下载


Advanced Charging Controller (ACC)



DESCRIPTION

ACC is an Android software mainly intended for extending battery service life.
In a nutshell, this is achieved through limiting charging current, temperature and voltage.
Any root solution is supported.
Regardless of whether the system is rooted with KernelSU/Magisk, the installation is always “systemless”.


LICENSE

Copyright 2017-2024, VR25

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses.


DISCLAIMER

Always read/reread this reference prior to installing/upgrading this software.

While no cats have been harmed, the author assumes no responsibility for anything that might break due to the use/misuse of it.

To prevent fraud, do NOT mirror any link associated with this project.
Do NOT share builds (tarballs/zips)! Share official links instead.


WARNINGS

ACC manipulates Android low level (kernel) parameters which control the charging circuitry.
The author assumes no responsibility under anything that might break due to the use/misuse of this software.
By choosing to use/misuse it, you agree to do so at your own risk!

Some devices, notably from Xiaomi (e.g., Poco X3 Pro), have a faulty PMIC (Power Management Integrated Circuit) that can be triggered by acc.
The issue blocks charging.
Ensure the battery does not discharge too low.
Using acc’s auto shutdown feature is highly recommended (default shutdown_capacity is 5).

Refer to this XDA post for additional details.

lybxlpsv suggests booting into bootloader/fastboot and then back into system to reset the PMIC.

In case of bootloop, one can easily generate persistent logs and/or stop/disable acc.
ACC daemon initializes 60 seconds after the boot animation stops.
This gives plenty of time to run pkill -9 -f accd to kill the waiting process or accd -x to generate persistent logs (/sdcard/accd-*.log) for debugging the bootloop.
accd -x also sets the disable flag (/data/adb/vr25/acc-data/disable). This file prevents the daemon from starting again. It’s removed manually or by the installer.
acc -t always implies -x and tries to auto-blacklist switches that trigger unwanted reboots.


DONATIONS

Please, support the project with donations (links at the bottom).
As the project gets bigger and more popular, the need for coffee goes up as well.


PREREQUISITES

  • Must read - how to prolong lithium ion batteries lifespan
  • Android or KaiOS
  • Any root solution (e.g., KernelSU, Magisk, SuperSU, etc)
  • Busybox* (only if not rooted with KernelSU or Magisk)
  • Non KernelSU/Magisk installs require a way of running /data/adb/vr25/acc/service.sh on boot to initialize acc.
  • Terminal emulator
  • Root text editor (optional)

* A busybox binary can simply be placed in /data/adb/vr25/bin/.
Permissions (0755) are set automatically, as needed.
Precedence: /data/adb/vr25/bin/busybox > KernelSu’s or Magisk’s busybox > system’s busybox

Other executables or static binaries can also be placed in /data/adb/vr25/bin/ (with proper permissions) instead of being installed system-wide.


QUICK START GUIDE

  1. All commands/actions require root.

  2. Install/upgrade: flash* the zip or use a front-end app.
    There are two additional ways of upgrading: acc --upgrade (online) and acc --flash (zip flasher).
    Rebooting after installation/removal is generally unnecessary.
    Manual uninstall before upgrade is unnecessary.

  3. [Optional] run acc (wizard). That’s the main command to remember.

  4. [Optional] run acc pause_capacity resume_capacity (default 75 70) to set the battery levels at which charging should pause and resume, respectively.

  5. If you come across any issues, refer to the troubleshooting, tips and FAQ sections below.
    Read as much as you can, prior to reporting issues and/or asking questions.
    Oftentimes, solutions/answers will be right before your eyes.

Notes

Steps 2 and 3 are optional because there are default settings.
For details, refer to the default configuration section below.
Users are encouraged to try step 2 - to familiarize themselves with the available options.

Settings can be overwhelming. Start with what you understand.
The default configuration has you covered.
Don’t ever feel like you have to configure everything. You probably shouldn’t anyway - unless you really know what you’re doing.

Uninstall: run acc --uninstall or flash* /data/adb/vr25/acc-data/acc-uninstaller.zip.

ACC runs in some recovery environments as well.
Unless the zip is flashed again, manual initialization is required.
The initialization script is /data/adb/vr25/acc/service.sh.


BUILDING AND/OR INSTALLING FROM SOURCE

Dependencies (Build)

  • git, wget, or curl (pick one)
  • zip

Build Tarballs and Flashable Zips

  1. Download and extract the source code: git clone https://github.com/VR-25/acc.git
    or wget https://github.com/VR-25/acc/archive/master.tar.gz -O - | tar -xz
    or curl -L# https://github.com/VR-25/acc/archive/master.tar.gz | tar -xz

  2. cd acc*

  3. sh build.sh (or double-click build.bat on Windows 10+, if you have Windows subsystem for Linux (with zip) installed)

Notes

  • build.sh automatically sets/corrects id=* in *.sh and update-binary files.
    To skip generating archives, run the build script with a random argument (e.g. sh build.sh h).

  • To update the local source code, run git pull --force or re-download it (with wget/curl) as described above.

Install from Local Source or GitHub

  • [export installDir=<parent install dir>] sh install.sh installs acc from the extracted source.

  • sh install-online.sh [-c|--changelog] [-f|--force] [-k|--insecure] [-n|--non-interactive] [%parent install dir%] [commit] downloads and installs acc from GitHub - e.g., sh install-online.sh dev.
    The order of arguments doesn’t matter.
    For upgrades, if %parent install dir% is not supplied, the original/current is used.

  • sh install-tarball.sh [module id, default: acc] [parent install dir (e.g., /data/data/mattecarra.accapp/files)] installs the tarball (acc*gz) from the script’s location.
    The archive must be in the same directory as this script - and obtained from GitHub: https://github.com/VR-25/acc/archive/$commit.tar.gz ($commit examples: master, dev, v2020.5.20-rc).

  • One can also use a single command to download and install acc:

curl -sSL https://raw.githubusercontent.com/VR-25/acc/dev/install-online.sh | /system/bin/sh -s dev

wget -qO- https://raw.githubusercontent.com/VR-25/acc/dev/install-online.sh | /system/bin/sh -s dev

Notes

  • install-online.sh is the acc --upgrade back-end.

  • The default parent installation directories, in order of priority, are: /data/data/mattecarra.accapp/files/ (ACC App, but only for non KernelSU/Magisk installs), /data/adb/modules/ (KernelSU/Magisk) and /data/adb/vr25/ (other root solutions).

  • No argument/option is strictly mandatory.
    The exception is --non-interactive for front-end apps.

  • The --force option to install-online.sh is meant for re-installation and downgrading.

  • sh install-online.sh --changelog --non-interactive prints the version code (integer) and changelog URL (string) when an update is available.
    In interactive mode, it also asks the user whether they want to download and install the update.

  • You may also want to read Terminal Commands > Exit Codes below.


DEFAULT CONFIGURATION

  1. #DC#
  2. configVerCode=202505180
  3. allowIdleAbovePcap=true
  4. ampFactor=
  5. battStatusWorkaround=true
  6. capacity=(5 101 70 75 false)
  7. cooldownCurrent=
  8. cooldownRatio=()
  9. currentWorkaround=false
  10. forceOff=false
  11. language=en
  12. offMid=true
  13. prioritizeBattIdleMode=true
  14. rebootResume=false
  15. resetBattStats=(false false false)
  16. temperature=(45 50 40 55)
  17. tempLevel=0
  18. voltFactor=
  19. applyOnBoot=()
  20. applyOnPlug=()
  21. battStatusOverride=''
  22. chargingSwitch=()
  23. idleApps=()
  24. maxChargingCurrent=()
  25. maxChargingVoltage=()
  26. runCmdOnPause=''
  27. # SYNTAX
  28. # allowIdleAbovePcap=true|false
  29. # ampFactor=1000|1000000
  30. # applyOnBoot=([CTRL_FILE1::RAW_VALUE[::DEFAULT]] [CTRL_FILE2::RAW_VALUE[::DEFAULT]...] [--exit])
  31. # applyOnPlug=([CTRL_FILE1::RAW_VALUE[::DEFAULT]] [CTRL_FILE2::RAW_VALUE[::DEFAULT]...])
  32. # battStatusOverride=Idle|Discharging|'code to PRINT value for _status'
  33. # battStatusWorkaround=true|false
  34. # capacity=(shutdown_capacity=% cooldown_capacity=% resume_capacity=% pause_capacity=% capacity_mask=true|false)
  35. # chargingSwitch=([CTRL_FILE1 ON OFF [CTRL_FILE2 ON OFF...] [--]])
  36. # cooldownCurrent=mA|mA%
  37. # cooldownRatio=(cooldown_charge=seconds cooldown_pause=seconds)
  38. # currentWorkaround=true|false
  39. # forceOff=true|false
  40. # idleApps=(comma or space-separated patterns matching Android package names)
  41. # language=LANGUAGE_CODE
  42. # maxChargingCurrent=(MILLIAMPS [CTRL_FILE1::RAW_VALUE::DEFAULT CTRL_FILE2::RAW_VALUE::DEFAULT...])
  43. # maxChargingVoltage=(MILLIVOLTS [CTRL_FILE1::RAW_VALUE::DEFAULT CTRL_FILE2::RAW_VALUE::DEFAULT...] [--exit])
  44. # offMid=true|false
  45. # prioritizeBattIdleMode=true|false|no
  46. # rebootResume=true|false
  47. # resetBattStats=(reset_batt_stats_on_pause=true|false reset_batt_stats_on_unplug=true|false reset_batt_stats_on_plug=true|false)
  48. # runCmdOnPause='COMMAND...'
  49. # temperature=(cooldown_temp=ºC max_temp=ºC resume_temp=ºC shutdown_temp=ºC)
  50. # tempLevel=%
  51. # voltFactor=1000|1000000
  52. # NOTES
  53. # Do not edit this in Windows Notepad, ever!
  54. # It replaces LF (Linux/Unix) with CRLF (Windows) line endings.
  55. # Nullifying values that should not be null causes unexpected behavior.
  56. # However, doing it with "--set var=" restores the default value of "var".
  57. # In other words, for regular users, "--set" is safer than modifying the config file directly.
  58. # Do not feel like you must configure everything!
  59. # Do not change what you don't understand.
  60. # The daemon does not have to be restarted to apply changes. It picks them up automatically within seconds.
  61. # INTERNAL FUNCTIONS
  62. # at HH:MM command1, commmand2... scheduler
  63. # e.g.,
  64. # at 2:14 acc --notif 2:14 AM now\!
  65. # at 22:30 acc -n 22:30 now\!
  66. # batt_cap print battery level
  67. # calc <operation...> float calculator
  68. # set_temp_level <0-100> refer to temp_level (tl) below
  69. # voltage_now prints the instantaneous charging voltage
  70. # INTERNAL VARIABLES
  71. # $_DPOL discharge polarity (+|-)
  72. # $_status Charging|Discharging|Idle
  73. # $_STI switch test iterations (default: 35)
  74. # $batt expands to the /sys/class/power_supply/battery (or equivalent) directory
  75. # $battCapacity $batt/capacity file
  76. # $battStatus $batt/status file
  77. # $currFile current_now file
  78. # $idleThreshold mA absolute value to consider charging status=Idle (default: 10)
  79. # $temp temperature reporting file
  80. # ${isAccd:-false} true|false (whether accd in running)
  81. # The "date" command
  82. # $(date +FORMAT)
  83. # FORMAT specifies display format string using strftime(3) syntax:
  84. # %% literal % %n newline %t tab
  85. # %S seconds (00-60) %M minute (00-59) %m month (01-12)
  86. # %H hour (0-23) %I hour (01-12) %p AM/PM
  87. # %y short year (00-99) %Y year %C century
  88. # %a short weekday name %A weekday name %u day of week (1-7, 1=mon)
  89. # %b short month name %B month name %Z timezone name
  90. # %j day of year (001-366) %d day of month (01-31) %e day of month ( 1-31)
  91. # %N nanosec (output only)
  92. # %U Week of year (0-53 start sunday) %W Week of year (0-53 start monday)
  93. # %V Week of year (1-53 start monday, week < 4 days not part of this year)
  94. # %F "%Y-%m-%d" %R "%H:%M" %T "%H:%M:%S" %z numeric timezone
  95. # %D "%m/%d/%y" %r "%I:%M:%S %p" %h "%b" %s unix epoch time
  96. # %x locale date %X locale time %c locale date/time
  97. # ALIASES (for use with --set only)
  98. # allow_idle_above_pcap aiapc
  99. # amp_factor af
  100. # apply_on_boot ab
  101. # apply_on_plug ap
  102. # batt_status_override bso
  103. # batt_status_workaround bsw
  104. # capacity_mask cm
  105. # charging_switch s
  106. # cooldown_capacity cc
  107. # cooldown_charge cch
  108. # cooldown_current cdc
  109. # cooldown_pause cp
  110. # cooldown_temp ct
  111. # current_workaround cw
  112. # force_off fo
  113. # idle_apps ia
  114. # lang l
  115. # max_charging_current mcc
  116. # max_charging_voltage mcv
  117. # max_temp mt
  118. # resume_temp rt
  119. # off_mid om
  120. # pause_capacity pc
  121. # prioritize_batt_idle_mode pbim
  122. # reboot_resume rr
  123. # reset_batt_stats_on_pause rbsp
  124. # reset_batt_stats_on_plug rbspl
  125. # reset_batt_stats_on_unplug rbsu
  126. # resume_capacity rc
  127. # run_cmd_on_pause rcp
  128. # shutdown_capacity sc
  129. # shutdown_temp st
  130. # temp_level tl
  131. # volt_factor vf
  132. # FINE, BUT WHAT DOES EACH OF THESE VARIABLES ACTUALLY MEAN?
  133. # configVerCode #
  134. # This is checked during updates to determine whether the config should be patched. Do NOT modify.
  135. # The value is not necessarily the same as acc's version code.
  136. # allow_idle_above_pcap (aiapc) #
  137. #
  138. # Type: Boolean
  139. # Default: true
  140. #
  141. # If set to false, accd will avoid idle mode (if possible) when capacity > pause_capacity.
  142. # This is useful for forever-plugged setups, where battery longevity is a top priority.
  143. # Idle mode is good, but "storing" a highly charged battery for a LONG time is a bad idea.
  144. # The recommended capacity range for long-term/forever-plugged is 40-60%.
  145. # amp_factor (af) # volt_factor (vf) #
  146. #
  147. # Type: Integer (usually 1000000 or 1000)
  148. # Defaults: Null
  149. #
  150. # Unit multiplier for conversion (e.g., 1V = 1000000uV, 1A = 1000000mA).
  151. # ACC can automatically determine the units, but the mechanism is not 100% foolproof.
  152. # Leave those properties alone, unless acc -i misreports current/voltage values.
  153. # apply_on_boot (ab) # apply_on_plug (ap) #
  154. #
  155. # Type: String (CTRL_FILE1::VALUE::DEFAULT CTRL_FILE2::VALUE::DEFAULT... --exit)
  156. # Default: Null
  157. #
  158. # e.g., acc -s ab=wireless/voltage_max::9000000 (forces fast wireless charging on Pixel devices)
  159. #
  160. # This is for general kernel tweaking.
  161. # For ab, settings are applied on boot and on daemon start/restart.
  162. # For ap, settings are applied periodically, while charging.
  163. #
  164. # Default values (optional) are restored when the daemon stops.
  165. # "--exit" (for ab only) instructs accd to stop after applying settings.
  166. # batt_status_override (bso) #
  167. #
  168. # Type: String (Idle|Discharging|'code to PRINT value for _status')
  169. # Default: Null
  170. #
  171. # Overrides the battery status determined by the not_charging function.
  172. # It can be Idle, Discharging (both case sensitive), or a script to PRINT the desired value for the _status variable.
  173. # When it's Idle or Discharging, _status will be set to that value if the charging switch state is off.
  174. # This only works in conjunction with an enforced charging switch (set manually, has a trailing " --").
  175. #
  176. # Usage scenario: the switch "main/cool_mode 0 1" supports idle mode. However, sometimes it doesn't respond soon enough (e.g., due to fast charging).
  177. # The user can then enforce it with "acc -ss" and set "batt_status_override=Idle".
  178. # This means, when "main/cool_mode" is "on" (0), _status will be determined by the not_charging function (as usual), but when it's off (1), _status will be Idle, overriding the not_charging function's logic.
  179. #
  180. # If the user were to write their own logic, it would be something like the following:
  181. # batt_status_override='[ $(cat main/cool_mode) -eq 1 ] && printf Idle || :'
  182. # The "|| :" part is mandatory to avoid issues with "set -e", which acc uses extensively.
  183. # batt_status_workaround (bsw) #
  184. #
  185. # Type: Boolean
  186. # Default: true
  187. #
  188. # With this enabled (true), in addition to just reading POWER_SUPPLY_STATUS, if the battery is "Charging" and current is within 40mA (inclusive), battery status is considered "Idle".
  189. # Status is considered "Discharging", if the current's polarity changes after calling the disable_charging function.
  190. # By not relying solely on the information provided by POWER_SUPPLY_STATUS, this approach dramatically boosts compatibility.
  191. # This must be disabled on systems that report wrong/misleading charging current values.
  192. # capacity_mask (cm) #
  193. #
  194. # Type: Boolean
  195. # Default: false
  196. #
  197. # This forces Android to report "capacity = (capacity - shutdown _capacity) * 100 / (pause_capacity - shutdown_capacity)", effectively masking capacity limits.
  198. # It also prevents Android from getting capacity readings below 2%, since some systems shutdown before battery level actually drops to 0%.
  199. # Use case: Secretly install acc on a relative's device, and enable this, so that they always see the regular 0-100% battery level scale.
  200. # charging_switch (s) #
  201. #
  202. # Type: String (CTRL_FILE1 ON OFF CTRL_FILE2 ON OFF... --)
  203. # Default: Null (automatic)
  204. #
  205. # If unset, acc cycles through its database and sets the first switch/group that successfully disables charging.
  206. # If later, the set switch/group fails 3 times in a row, acc unsets it, moves it to the end of the list and repeats the above.
  207. # If all switches fail to disable charging, chargingSwitch is unset and acc/d exit with code 7.
  208. #
  209. # This automated process can be disabled by appending " --" to the switch/group.
  210. # e.g., acc -s s="battery/charging_enabled 1 0 --"
  211. # "acc -ss" always appends " --".
  212. #
  213. # Certain switches tend to be problematic/unreliable under specific condition (e.g., screen off, fast charging, heavy load).
  214. # Sometimes, this is caused by rogue thermal management programs (e.g., mi_thermald).
  215. # To mitigate this, one may want to try force_off or a thermal mod.
  216. # cooldown_capacity (cc) #
  217. #
  218. # Type: Integer (percentage)
  219. # Default: 101
  220. #
  221. # Battery level or millivolts at which the cooldown cycle starts.
  222. # Cooldown reduces battery stress induced by prolonged exposure to high temperature and high charging voltage.
  223. # It does so through periodically pausing charging for a few seconds (cooldown_pause, more details below).
  224. # Requires cooldown_current OR "cooldown_charge and cooldown_pause".
  225. # cooldown_charge (cch) # cooldown_pause (cp) #
  226. #
  227. # Type: Integer (seconds)
  228. # Defaults: null
  229. #
  230. # Those dictate the cooldown cycle intervals (seconds).
  231. # When not set, the cycle is disabled.
  232. # Suggested values are cch=50 and cp=10.
  233. # If charging gets slower than desired, try cch=50 and cp=5.
  234. # Note that cooldown_capacity and cooldown_temp can be disabled individually by assigning them values that would never be reached under normal circumstances.
  235. # cooldown_current optionally works with ratios as well (cooldown_charge: regular current, cooldown_pause: cooldown_current).
  236. # cooldown_current (cdc) #
  237. #
  238. # Type: Integer (milliamps)
  239. # Default: Null
  240. #
  241. # Instead of pausing charging for cooldown_pause seconds, limit the max charging current (e.g., to 500 (mA) or even 50% (of the max current).
  242. # cooldown_pause and cooldown_charge are optional.
  243. # When the value is a percentage, temp_level is used as back-end, rather than the regular current control logic.
  244. # cooldown_temp (ct) #
  245. #
  246. # Type: Integer (°C)
  247. # Default: 45
  248. #
  249. # Temperature (°C) at which the cooldown cycle starts.
  250. # Cooldown reduces the battery degradation rate by lowering the device's temperature.
  251. # Requires cooldown_current OR "cooldown_charge and cooldown_pause".
  252. # current_workaround (cw) #
  253. #
  254. # Type: Boolean
  255. # Default: false
  256. #
  257. # If set to true, acc only uses current control files whose paths match "batt".
  258. # This is necessary only if the current limit affects both input and charging current values.
  259. # Enable if low current values don't work.
  260. # force_off (fo) #
  261. #
  262. # Type: Boolean
  263. # Default: false
  264. #
  265. # Enable this only as last resort, if the set charging switch is stubbornly reset by the system.
  266. # Oftentimes, userspace thermal management daemons (e.g., mi_thermald) and/or driver bugs are behind charging control issues.
  267. # idle_apps (ia) #
  268. #
  269. # Type: String
  270. # Default: Null
  271. #
  272. # This is a list of comma or space-separated patterns matching Android package names.
  273. # When a matched app is running in the foreground, acc daemon enables idle mode.
  274. # e.g., acc -s ia=maps,codm,pokemon
  275. # lang (l) #
  276. #
  277. # Type: String
  278. # Default: en
  279. #
  280. # Display language, when null, English (en) is assumed.
  281. # WARNING: Current translations are poor/outdated.
  282. # max_charging_current (mcc) # max_charging_voltage (mcv) #
  283. #
  284. # Type: Integer (milliamps/millivolts)
  285. # Defaults: Null
  286. #
  287. # Control files are automatically added by accd when the array has just one element (the milliamps/millivolts value).
  288. # If the second element of the array (array[1]) starts with "-", accd recognizes it as an instruction to update the control files.
  289. # This is useful for setting/changing current and voltage limits without a frontend (--set or app).
  290. # Simply put, if the user has the following in their config, accd automatically adds/updates the control files:
  291. # maxChargingCurrent=(1000) # Control files will be added.
  292. # maxChargingVoltage=(4000 -battery/voltage_max bms/voltage_max) # Control files will be updated. The "-" is mandatory after changing the value (first element). Otherwise, the change has no effect.
  293. #
  294. # Notes: The maximum current that can be set via dedicated commands is 9999 mA. For voltage, the max is 4300 mV. One can override those by editing the config directly. When the charging current value is a percentage, temp_level is used as back-end, rather than the regular current control logic.
  295. # max_temp (mt) # resume_temp (rt) #
  296. #
  297. # Type: Integer (°C)
  298. # Defaults: mt=50, rt=40
  299. #
  300. # Those two work together and are NOT tied to the cooldown cycle.
  301. # At max_temp, charging is paused.
  302. # If charging is paused due to capacity >= pause_capacity, it resumes when capacity <= resume_capacity AND temp <= max_temp.
  303. # If charging is paused due to temp >= max_temp, it resumes when capacity < pause_capacity AND temp <= resume_temp
  304. # off_mid (om) #
  305. #
  306. # Type: Boolean
  307. # Default: true
  308. #
  309. # Whether to turn off charging after rebooting the system or restarting accd, if capacity is within resume_capacity and pause_capacity.
  310. # one-line scripts #
  311. #
  312. # Type: String
  313. # Default: Null
  314. #
  315. # Every line that begins with ":" is interpreted as a shell script.
  316. # This feature can be useful for many things, including setting up persistent config profiles (i.e., source a file that overrides the main config).
  317. # All script lines are executed whenever the config is loaded/sourced.
  318. # This happens regularly while the daemon is running, and at least once per command run.
  319. #
  320. # Note: Due to user data encryption, files used in one-line scripts must reside somewhere in /data/adb/, just like acc's own data files.
  321. # Ignore if your data isn't encrypted.
  322. #
  323. # Tip: One can schedule tasks with the following construct:
  324. # : sleep profile; at 22:00 acc -s pc=50 mcc=500 mcv=3900, acc -n Switched to night profile
  325. #
  326. # WARNING: All scripts must always return zero. Appending "|| :" ensures that.
  327. # pause_capacity (pc) # resume_capacity (rc) #
  328. #
  329. # Type: Integer (percentage)
  330. # Defaults: pc=75, rc=70
  331. #
  332. # Battery level or millivolts at which charging shall be paused/resumed.
  333. # prioritize_batt_idle_mode (pbim) #
  334. #
  335. # Type: Boolean | String (pbim=no)
  336. # Default: true
  337. #
  338. # Battery idle mode, also called "standby mode" or "charging bypass", is the ability of running off the charger, as if the battery were disconnected from the device.
  339. # Not all devices support this, but there's also emulated idle mode (refer to the readme), which works on all devices.
  340. #
  341. # If enabled, charging switches that support battery idle mode take precedence.
  342. # This is only relevant when the switch is automatically determined -- i.e., charging_switch is not set or it has no trailing " --".
  343. # In other words, this variable is only used when acc is automatically testing charging switches.
  344. # When set to "no", it has the opposite effect (prioritize non-idle mode).
  345. # reboot_resume (rr) #
  346. #
  347. # Type: Boolean
  348. # Default: false
  349. #
  350. # Reboot (when capacity capacity is at or below resume_capacity) to re-enable charging.
  351. # This is only for devices whose switches can't re-enable charging.
  352. # A warning Android notification is posted 60 seconds prior, for the user to block the action, if they so please.
  353. # reset_batt_stats_on_pause (rbsp) # reset_batt_stats_on_plug (rbspl) # reset_batt_stats_on_unplug (rbsu) #
  354. #
  355. # Type: Boolean
  356. # Default: false
  357. #
  358. # Reset battery stats after a given event.
  359. # run_cmd_on_pause (rcp) #
  360. #
  361. # Type: String
  362. # Default: Null
  363. #
  364. # Run commands* after pausing charging.
  365. # * Usually a script ("sh some_file" or ". some_file")
  366. # shutdown_capacity (sc) #
  367. #
  368. # Type: Integer (percentage)
  369. # Default: 5
  370. #
  371. # When the battery is discharging, its level/millivolts is at or below shutdown_capacity, and the device has been running for 15 minutes or more, acc daemon turns the device off to reduce the discharge rate, and protect the battery from potential damage, induced by voltage below the operating range.
  372. # A value less than 1 disables it.
  373. # An Android warning notification is posted shortly before the shutdown, giving some time to abort the process.
  374. # shutdown_temp (st) #
  375. #
  376. # Type: Integer (°C)
  377. # Default: 55
  378. #
  379. # Shutdown the system if battery temperature >= this value.
  380. # temp_level (tl) #
  381. #
  382. # Type: Integer (percentage)
  383. # Default: 0
  384. #
  385. # This is an alternate current limiting feature.
  386. # Some devices have adjustable "temperature levels" and/or charge_control_limit, siop_level parameters.
  387. # At the highest level, charging current is blocked.
  388. # The stock values are generally integers, ranging from 0 to 6, 7 or so. siop_level (Samsung) ranges from 0 to 100).
  389. # For greater flexibility, this variable stores a percentage value, which is internally mapped to the system's scales.
  390. # Tip: If mcc is ignored under high temperature, but you still want it forced, try setting tl=1.
  391. #/DC#

SETUP/USAGE

As the default configuration (above) suggests, ACC is designed to run out of the box, with little to no customization/intervention.

The only command you have to remember is acc.
It’s a wizard you’ll either love or hate.

If you feel uncomfortable with the command line, skip this section and use a front-end app instead.

Alternatively, you can use a text editor to modify /data/adb/vr25/acc-data/config.txt.
The config file itself has configuration instructions.
Those are the same found in the default configuration section, above.

Terminal Commands

  1. #TC#
  2. Usage
  3. acc Wizard
  4. accd [--init|-i] Start/restart accd; -i triggers a clean restart (recreates runtime cache)
  5. accd. Stop acc/daemon
  6. accd, Print acc/daemon status (running or not)
  7. acc [pause_capacity/millivolts [resume_capacity/millivolts, default: pause_capacity/millivolts - 5%/50mV]]
  8. e.g.,
  9. acc 75 70
  10. acc 80 (resume_capacity defaults to 80% - 5)
  11. acc 3900 (same as acc 3900 3870, great idle mode alternative)
  12. acc [options] [args] Refer to the list of options below
  13. acca [options] [args] acc optimized for front-ends
  14. acc[d] -x [options] [args] Sets log=/sdcard/Download/acc[d]-${device}.log; useful for debugging unwanted reboots
  15. A custom config path can be specified as first parameter (second if -x is used).
  16. If the file doesn't exist, the current config is cloned.
  17. e.g.,
  18. acc /data/acc-night-config.txt --set pause_capacity=45 resume_capacity=43
  19. acc /data/acc-night-config.txt --set --current 500
  20. accd /data/acc-night-config.txt --init
  21. Notes regarding accd:
  22. - The order of "--init|-i" does not matter.
  23. - The config path string shall not contain "--init|-i".
  24. Options
  25. -b|--rollback [nv] Restore previous installation; with "n" flag, the config is not restored; with "v" flag, nothing is done other than printing the version that would have been restored
  26. -c|--config [[editor] [editor_opts] | g for GUI] Edit config (default editor: nano/vim/vi)
  27. e.g.,
  28. acc -c (edit w/ nano/vim/vi)
  29. acc -c less
  30. acc -c cat
  31. -c|--config a|d string|regex Append (a) or delete (d) string/pattern to/from config
  32. e.g.,
  33. acc -c a : sleep profile, at 22:00 acc -s pc=50 mcc=500 mcv=3900, acc -n switched to sleep profile (append a schedule)
  34. acc -c d sleep (remove all lines matching "sleep")
  35. -c|--config h string Print config help text associated with "string" (config variable)
  36. e.g., acc -c h rt (or resume_temp)
  37. -d|--disable [#%, #s, #m, #h or #mv (optional)] Disable charging
  38. e.g.,
  39. acc -d 70% (do not recharge until capacity <= 70%)
  40. acc -d 1h (do not recharge until 1 hour has passed)
  41. acc -d 4000mv (do not recharge until battery voltage <= 4000mV)
  42. -D|--daemon Print daemon status, (and if running) version and PID
  43. e.g., acc -D (alias: "accd,")
  44. -D|--daemon [start|stop|restart] Manage daemon
  45. e.g.,
  46. acc -D start (alias: accd)
  47. acc -D restart (alias: accd)
  48. accd -D stop (alias: "accd.")
  49. -e|--enable [#%, #s, #m, #h or #mv (optional)] Enable charging
  50. e.g.,
  51. acc -e 75% (recharge to 75%)
  52. acc -e 30m (recharge for 30 minutes)
  53. acc -e 4000mv (recharge to 4000mV)
  54. -f|--force|--full [capacity] [-a] [additional opts/args] Charge once to a given capacity (default: 100%), without restrictions
  55. e.g.,
  56. acc -f 95 (charge to 95%)
  57. acc -f (charge to 100%)
  58. acc -f -s mcc=500 (charge to 100% with a 500 mA limit)
  59. acc -f 90 -a (the -a (auto) tries to restart accd automatically shortly after the charger is unplugged; not supported by all devices)
  60. -F|--flash ["zip_file"] Flash any zip files whose update-binary is a shell script
  61. e.g.,
  62. acc -F (lauches a zip flashing wizard)
  63. acc -F "file1" "file2" "fileN" ... (install multiple zips)
  64. acc -F "/sdcard/Download/Magisk-v20.0(20000).zip"
  65. -h|--help [[editor] [editor_opts] | g for GUI] Print this help text, plus the config
  66. -H|--health <mAh> Print estimated battery health
  67. -i|--info [case insensitive egrep regex (default: ".")] Show battery info
  68. e.g.,
  69. acc -i
  70. acc -i volt
  71. acc -i volt,curr (multiple patterns)
  72. -l|--log [-a|--acc] [[editor] [editor_opts] | g for GUI] Print/edit accd log (default) or acc log (-a|--acc)
  73. e.g.,
  74. acc -l (same as acc -l less)
  75. acc -l rm
  76. acc -l -a cat
  77. acc -l grep ': ' (show explicit errors only)
  78. -la Same as -l -a
  79. -l|--log -e|--export Export all logs to /sdcard/Download/acc-logs-$deviceName.tgz
  80. e.g., acc -l -e
  81. -le Same as -l -e
  82. -n|--notif [["STRING" (default: ":)")] [USER ID (default: 2000 (shell))]] Post Android notification; may not work on all systems
  83. e.g., acc -n "Hello, World!"
  84. -p|--parse [<base file> <file to parse>] | <file to parse>] Helps find potential charging switches quickly, for any device
  85. e.g.,
  86. acc -p Parse /logs/power_supply-\*.log and print potential charging switches not present in /ch-switches
  87. acc -p /sdcard/power_supply-harpia.log Parse the given file and print potential charging switches that are not already in /ch-switches
  88. acc -p /sdcard/charging-switches.txt /sdcard/power_supply-harpia.log Parse /sdcard/power_supply-harpia.log and print potential charging switches absent from /sdcard/charging-switches.txt
  89. -r|--readme [g for GUI]] Open the manual
  90. -R|--resetbs Reset battery stats
  91. e.g., acc -R
  92. -s|--set Print current config
  93. e.g., acc -s
  94. -s|--set file Get config from file (in "acc -s" format); the file's path must be absolute; partial config is supported
  95. e.g., acc -s /data/config
  96. -s|--set prop1=value "prop2=value1 value2" Set [multiple] properties
  97. e.g.,
  98. acc -s charging_switch=
  99. acc -s pause_capacity=60 resume_capacity=55 (shortcuts: acc -s pc=60 rc=55, acc 60 55)
  100. acc -s "charging_switch=battery/charging_enabled 1 0" resume_capacity=55 pause_capacity=60
  101. Note: all properties have short aliases for faster typing; run "acc -c cat" to see them
  102. -s|--set c|--current [milliamps|-] Set/print/restore_default max charging current (range: 0-9999 mA)
  103. e.g.,
  104. acc -s c (print current limit)
  105. acc -s c 500 (set)
  106. acc -s c - (restore default)
  107. -sc [milliamps|-] Same as above
  108. -s|--set l|--lang Change language
  109. e.g., acc -s l
  110. -sl Same as above
  111. -s|--set d|--print-default [egrep regex (default: ".")] Print default config without blank lines
  112. e.g.,
  113. acc -s d (print entire defaul config)
  114. acc -s d cap (print only entries matching "cap")
  115. acc -s cap,temp (multiple patterns)
  116. -sd [egrep regex (default: ".")] Same as above
  117. -s|--set p|--print [egrep regex (default: ".")] Print current config without blank lines (refer to previous examples)
  118. -sp [egrep regex (default: ".")] Same as above
  119. -s|--set r|--reset [a] Restore default config ("a" is for "all": config and control file blacklists, essentially a hard reset)
  120. e.g.,
  121. acc -s r
  122. -sr [a] Same as above
  123. -s|--set s|charging_switch Enforce a specific charging switch
  124. e.g., acc -s s
  125. -ss Same as above
  126. -s|--set s:|chargingSwitch: List known charging switches
  127. e.g., acc -s s:
  128. -ss: Same as above
  129. -s|--set s::|chargingSwitch:: List working charging switches and mcc, mcv & tl support status
  130. e.g., acc -s s::
  131. -ss:: Same as above
  132. -s|--set v|--voltage [millivolts|-] [--exit] Set/print/restore_default max charging voltage (range: 3700-4300 mV)
  133. e.g.,
  134. acc -s v (print)
  135. acc -s v 3900 (set)
  136. acc -s v - (restore default)
  137. acc -s v 3900 --exit (stop the daemon after applying settings)
  138. -sv [millivolts|-] [--exit] Same as above
  139. -t[#]|--test[#] [q] [ctrl_file1 on off [ctrl_file2 on off]] Test custom charging switches
  140. Implies -x, as in acc -x -t ...
  141. [q]: acca -t q ... (quiet test; reports Ok, Idle or Fail)
  142. e.g.,
  143. acc -t5 battery/charging_enabled 1 0 (test with _STI=5)
  144. acc -t battery/charging_enabled 1 0
  145. acc -t /proc/mtk_battery_cmd/current_cmd 0::0 0::1 /proc/mtk_battery_cmd/en_power_path 1 0 ("::" is a placeholder for " " - MTK only)
  146. -t[#]|--test[#] [q] [file] Test charging switches from a file (default: /ch-switches)
  147. Implies -x, as in acc -x -t ...
  148. [q]: acca -t q ... (quiet test; reports Ok, Idle or Fail)
  149. e.g.,
  150. acc -t (test known switches)
  151. acc -t /sdcard/experimental_switches.txt (test custom/foreign switches)
  152. -t[#]|--test[#] [q] [p|parse] Parse potential charging switches from the power supply log (as "acc -p"), test them all, and add the working ones to the list of known switches
  153. Implies -x, as in acc -x -t p
  154. [q]: acca -t q ... (quiet test; reports Ok, Idle or Fail)
  155. e.g., acc -t p
  156. -T|--logtail ['egrep regex, with "," in place of "|"'] Monitor accd log (tail -F)
  157. e.g.,
  158. acc -T
  159. acc -T 'cap,enable'
  160. -u|--upgrade [-c|--changelog] [-f|--force] [-n|--non-interactive] Online upgrade/downgrade
  161. e.g.,
  162. acc -u dev (upgrade to the latest dev version)
  163. acc -u (latest version from the current branch)
  164. acc -u master^1 -f (previous stable release)
  165. acc -u -f dev^2 (two dev versions below the latest dev)
  166. acc -u v2020.4.8-beta --force (force upgrade/downgrade to v2020.4.8-beta)
  167. acc -u -c -n (if update is available, prints version code (integer) and changelog)
  168. acc -u -c (same as above, but with install prompt)
  169. -U|--uninstall Completely remove acc and AccA
  170. e.g., acc -U
  171. -v|--version Print acc version and version code
  172. e.g., acc -v
  173. -w[#]|--watch[#] [pattern1,pattern2,...] Monitor battery uevent
  174. e.g.,
  175. acc -w (update info every second)
  176. acc -w0.5 (update info every half a second)
  177. acc -w0 (no extra delay)
  178. acc -w curr,volt
  179. Exit Codes
  180. 0. True/success
  181. 1. False or general failure
  182. 2. Incorrect command syntax
  183. 3. Missing busybox binary
  184. 4. Not running as root
  185. 5. Update available ("--upgrade")
  186. 6. No update available ("--upgrade")
  187. 7. Failed to disable charging
  188. 8. Daemon already running ("--daemon start")
  189. 9. Daemon not running ("--daemon" and "--daemon stop")
  190. 10. All charging switches fail (--test)
  191. 11. Current (mA) out of 0-9999 range
  192. 12. Initialization failed
  193. 13. Failed to lock /acc.lock
  194. 14. ACC won't initialize, because a "disable" flag is set
  195. 15. Idle mode is supported (--test)
  196. 16. Failed to enable charging (--test)
  197. Logs are exported automatically ("--log --export") on exit codes 1, 2 and 7.
  198. Tips
  199. Commands can be chained for extended functionality.
  200. e.g., charge for 30 minutes, pause charging for 6 hours, charge to 85% and restart the daemon
  201. acc -e 30m && acc -d 6h && acc -e 85 && accd
  202. One can take advantage of one-line scripts and the built-in "at" function to schedule profiles (refer back to -c|--config).
  203. Sample profile
  204. acc -s pc=60 mcc=500 mcv=3900
  205. This keeps battery capacity between 55-60%, limits charging current to 500 mA and voltage to 3900 millivolts.
  206. It's great for nighttime and "forever-plugged".
  207. Refer to acc -r (or --readme) for the full documentation (recommended)
  208. #/TC#

PLUGINS

Those are scripts that override functions and some global variables.
They should be placed in /data/adb/vr25/acc-data/plugins/.
Files are sorted and sourced.
Filenames shall not contain spaces.
Hidden files and those without the .sh extension are ignored.

There are also volatile plugins (gone on reboot, useful for debugging): /dev/.vr25/acc/plugins/.
Those override the permanent.

A daemon restart is required to load new/modified plugins.

An alternative to plugins are one-line scripts. Refer to the default configuration section above.


NOTES/TIPS FOR FRONT-END DEVELOPERS

Basics

ACC does not require KernelSU/Magisk.
Any root solution works, as long as busybox is installed.

Use /dev/acca instead of regular acc.
It’s optimized for front-ends, guaranteed to be readily available after installation/upgrades and significantly faster than its acc counterpart.
Additionally, /dev/acca --set prop1=bla prop2="bla bla" ... runs asynchronously (non-blocking mode) - meaning, multiple instances of it work in parallel.

It may be best to use long options over short equivalents - e.g., --set charging_switch= instead of -s s=.
This makes code more readable (less cryptic).

Include provided descriptions of ACC features/settings in your front-end.
Provide additional information (trusted) where appropriate.
Explain settings/concepts as clearly and as concisely as possible.

Take advantage of acc exit codes.
Refer back to SETUP/USAGE > [Terminal Commands](#terminal-commands) > Exit Codes.

Installing/Upgrading ACC

This should be trivial.
The simplest way is flashing acc from KernelSU/Magisk module manager.

Alternatively, install.sh, install-online.sh or install-tarball.sh can be used.
For details, refer back to install from local source or GitHub.

Developers can also use the updateJSON API.
The front-end downloads and parses this JSON file.
The format is as follows:

  1. {
  2. "busybox": "https://github.com/Magisk-Modules-Repo/busybox-ndk",
  3. "changelog": "https://raw.githubusercontent.com/VR-25/acc/master/changelog.md",
  4. "curl": "https://github.com/Zackptg5/Cross-Compiled-Binaries-Android/tree/master/curl",
  5. "tgz": "https://github.com/VR-25/acc/releases/download/$version/acc_${version}_${versionCode}.tgz",
  6. "tgzInstaller": "https://github.com/VR-25/acc/releases/download/$version/install-tarball.sh",
  7. "version": "STRING",
  8. "versionCode": INT,
  9. "zipUrl": "https://github.com/VR-25/acc/releases/download/$version/acc_${version}_${versionCode}.zip"
  10. }

Uninstalling ACC

Either run /data/adb/vr25/acc/uninstall.sh (no reboot required) or uninstall from KernelSU/Magisk module manager and reboot.

Initializing ACC

On boot_completed receiver and main activity, run:

test -f /dev/acca || /data/adb/vr25/acc/service.sh

Explanation:

ACC’s working environment must be initialized - i.e., by updating the stock charging config (for restoring without a reboot) and pre-processing data for greater efficiency.
This is done exactly once after boot.
If it were done only after installation/upgrade, one would have to reinstall/upgrade acc after every kernel update.
That’s because kernel updates often change the default power supply drivers’ settings.

Since acc’s core executables are dynamic ([expected to] change regularly), those are linked to /dev/ to preserve the APIs.
The links must be recreated once after boot (since /dev/ is volatile).

accd is a symbolic link to service.sh.
If service.sh is executed every time the main activity is launched, accd will be repeatedly restarted for no reason.
Thus, we run test -f /dev/acca || /data/adb/vr25/acc/service.sh, as opposed to just /data/adb/vr25/acc/service.sh

Notes

  • This “manual” initialization is only strictly required for non KernelSU/Magisk installs — and only once per boot session. In other words, KernelSU and Magisk already run service.sh shortly after boot.
  • ACC’s installer always initializes it.

Managing ACC

As already stated, front-ends shall use the executable /dev/acca.
Refer to the default configuration and terminal commands sections above.

The default config reference has a section entitled “aliases”.
Use ONLY those with /dev/acca --set!
i.e., /dev/acca --set chargingSwitch=... is not supported!
Use either s or charging_switch.
chargingSwitch and all the other “camelcase” style variables are for internal use only (i.e., private APIs).

Do not parse the config file directly.
Use --set --print ['regex'] and --set --print-default ['regex'].
Refer back to terminal commands for details.


TROUBLESHOOTING

acc -t Results Are Inconsistent

Refer to “default config > batt_status_workaround”.

Charging Switch

By default, ACC uses whichever charging switch works (“automatic” mode).
However, things don’t always go well.

  • Some switches are unreliable under certain conditions (e.g., while the screen is off).

  • Others hold a wakelock.
    This causes fast battery drain when charging is paused and the device remains plugged.

  • Charging keeps being re-enabled by the system, seconds after acc daemon disables it.
    As a result, the battery eventually charges to 100% capacity, regardless of pause_capacity.
    Refer to config > force_off.

  • High CPU load (drains battery) was also reported.

  • In the worst case scenario, the battery status is reported as discharging, while it’s actually charging.

In such situations, one has to enforce a switch that works as expected.
Here’s how to do it:

  1. Run acc -t to see which switches work.
  2. Run acc -ss to enforce a working switch.
  3. Test the reliability of the set switch. If it doesn’t work properly, try another.

Since not everyone is tech savvy, ACC daemon automatically applies settings for certain devices for greater compatibility.
These are in acc/oem-custom.sh.

Custom Max Charging Voltage And Current Limits

Unfortunately, not all kernels support these features.
While custom current limits are supported by most (at least to some degree), voltage tweaking support is exceptionally rare.

That said, the existence of potential voltage/current control file doesn’t necessarily mean these are writable* or the features, supported.

* Root is not enough.
Kernel level permissions forbid write access to certain interfaces.

Sometimes, restoring the default current may not work without a system reboot.
A workaround is setting the default max current value or any arbitrary high number (e.g., 9000 mA).
Don’t worry about frying things.
The device will only draw the max it can take.

WARNING: limiting voltage causes battery state of charge (SoC) deviation on some devices.
The battery management system self-calibrates constantly, though.
Thus, as soon as the default voltage limit is restored, it’ll start “fixing” itself.

Limiting current, on the other hand, has been found to be universally safe.
Some devices do not support just any current value, though.
That’s not to say out-of-range values cause issues.
These are simply ignored.

If low current values don’t work, try setting current_workaround=true.
Refer to the default configuration section for details.

One can override the default lists of max charging current/voltage control files by copying acc/ctrl-files.sh to /data/adb/vr25/acc-data/plugins/ and modifying it accordingly.
Note that default limits must be restored prior to that to avoid the need for a system reboot.
Reminder: A daemon restart is required to load new/modified plugins.

Diagnostics/Logs

Volatile logs (gone on reboot) are stored in /dev/.vr25/acc/ (.log files only).
Persistent logs reside in /data/adb/vr25/acc-data/logs/.

acc -le exports all acc logs, plus Magisk’s and extras to /data/adb/acc-data/logs/acc-$device_codename.tgz.
The logs do not contain any personal information and are never automatically sent to the developer.
Automatic exporting (local) happens under specific conditions (refer back to SETUP/USAGE > Terminal Commands > Exit Codes).

Install, Upgrade, Stop and Restart Processes Seem to Take Too Long

The daemon stop process implies complete reversal of changes made to the charging management system.
Sometimes, this requires the charger to be plugged.
That’s because some devices have kernel bugs and/or bad charging driver implementations.
That said, accd is always stopped gracefully to ensure the restoration takes place.
One who knows what they’re doing, can force-stop accd by running pkill -9 -f accd.

Kernel Panic and Spontaneous Reboots

Control files that trigger these are automatically backlisted (commented out in /data/adb/acc-data/logs/write.log).

Restore Default Config

This can potentially save a lot of time and grief.

acc --set --reset, acc -sr or rm /data/adb/vr25/acc-data/config.txt (failsafe)

Samsung, Charging Always Stops at 70% Capacity

This is a device-specific issue (by design?).
It’s caused by the store_mode charging control file.
Switch to batt_slate_mode to prevent it.
Refer back to charging switch above for details on that.

Slow Charging

At least one of the following may be the cause:

  • Charging current and/or voltage limits
  • Cooldown cycle (non optimal charge/pause ratio, try 50/10 or 50/5)
  • Troublesome charging switch (refer back to TROUBLESHOOTING > Charging Switch)
  • Weak adapter and/or power cord

Unable to Charge

Refer back to the warnings section above.

Unexpected Reboots

Wrong/troublesome charging control files may trigger unwanted reboots.
ACC blacklist [some of] these automatically (registered in /data/adb/vr25/acc-data/logs/write.log, with a leading hashtag).
Sometimes, there may be false positives in there - i.e., due to unexpected reboots caused by something else. Thus, if a control file that used to work, suddenly does not, see if it was blacklisted (acc -t also reveals blacklisted switches).
Send write.log to the developer once the reboots have stopped.

WARP, VOOC and Other Fast Charging Tech

Charging switches may not work reliably with the original power adapter.
This has nothing to do with acc.
It’s bad design by the OEMs themselves.
If you face issues, either try a different charging switch or a regular power brick (a.k.a., slow charger).
You may also want to try stopping charging by limiting current/voltage.

Why Did accd Stop?

Run acc -l tail to find out.
This will print the last 10 lines of the daemon log file.

A relatively common exit code is 7 - meaning all charging switches failed to disable charging.
It usually happens due to kernel issues (refer to the previous subsection - charging switch).
The daemon only stops due to this if acc is set to automatically determine the switches to use (default behavior).
Manually setting a working switch with acc -ss or acc -s s="SWITCHES GO HERE --" disables auto mode and prevents accd from stopping if the set the charging switches fail.


POWER SUPPLY LOGS (HELP NEEDED)

Please run acc -le and upload /data/adb/vr25/acc-data/logs/power_supply-*.log to my dropbox (no account/sign-up required).
This file contains invaluable power supply information, such as battery details and available charging control files.
A public database is being built for mutual benefit.
Your cooperation is greatly appreciated.

Privacy Notes

  • Name: random/fake
  • Email: random/fake

See current submissions here.


LOCALIZATION

Currently Supported Languages and Translation Levels (default, full, good, fair, minimal)

  • Chinese, simplified (zh-rCN): minimal
  • Chinese, traditional (zh-rTW): minimal
  • English (en): default
  • French (fr): good
  • German (de_DE): fair
  • Indonesia (id): minimal
  • Portuguese, Portugal (pt-PT): minimal
  • Turkish (tr): good

Translation Notes

  1. Start with copies of acc/strings.sh and, optionally, README.md.

  2. Modify the header of strings.sh to reflect the translation (e.g., # Español (es)).

  3. Anyone is free and encouraged to open translation pull requests.
    Alternatively, a compressed archive of translated strings.sh and README.md files can be sent to the developer via Telegram (link below).

  4. Use acc -sl (—set —lang): language switching wizard or acc -s l=<lang_string> to set a language.


TIPS

Always Limit the Charging Current If Your Battery is Old and/or Tends to Discharge Too Fast

This extends the battery’s lifespan and may even reduce its discharge rate.

750-1000mA is a good range for regular use.

500mA is a comfortable minimum - and also very compatible.

If your device does not support custom current limits, use a dedicated (“slow”) power adapter.

Generic

Force fast charge: appy_on_boot="/sys/kernel/fast_charge/force_fast_charge::1::0 usb/boost_current::1::0 charger/boost_current::1::0"

Google Pixel Devices

Force fast wireless charging with third party wireless chargers that are supposed to charge the battery faster: apply_on_plug=wireless/voltage_max::9000000.

This may not work on all Pixel devices.
There are no negative consequences when it doesn’t.

Export/import Config

Export: acc -s > /sdcard/Download/config.txt

Import: acc -s /sdcard/Download/config.txt

Partial import is supported - meaning, users can share just a portion of the config (e.g., acc -sp curr,volt > file); whoever imports this, gets just those changes.

Override Battery mAh Capacity

An “extended” battery won’t charge fully if the kernel still has the stock charge_full_design value.
Some devices allow that to be modified. If that’s the case for you, use apply_on_boot to set the desired value(s) in /sys/class/power_supply/*/charge_full_design.

Override Broken Temperature Sensor

If your battery’s thermistor always reports a negative value, and charging is very slow or even off, see if the following helps (paste and run):

acc -c d temp_cool; acc -c a ':; for i in */temp_cool */temp_cold; do [ -f $i ] || continue; chmod a+w $i && echo "-999" > $i || :; done'


FREQUENTLY ASKED QUESTIONS (FAQ)

How do I report issues?

Open issues on GitHub or contact the developer on Telegram (preferred) or XDA (links below).
Always provide as much information as possible.
Attach /sdcard/Download/acc-logs-*.tgz - generated by acc -le right after the problem occurs.
Refer back to TROUBLESHOOTING > Diagnostics/Logs for additional details.

Why won’t you support my device? I’ve been waiting for ages!

Firstly, have some extra patience!
Secondly, several systems don’t have intuitive charging control files; I have to dig deeper - and oftentimes, improvise; this takes time and effort.
Lastly, some systems don’t support custom charging control at all; in such cases, you have to keep trying different kernels and uploading the respective power supply logs.
Refer back to POWER SUPPLY LOGS (HELP NEEDED).

Why, when and how should I calibrate the battery manager?

With modern battery management systems, that’s generally unnecessary.

However, if your battery is underperforming, you may want to try the procedure described at https://batteryuniversity.com/article/bu-603-how-to-calibrate-a-smart-battery .

I set voltage to 4080 mV and that corresponds to just about 75% charge.
But is it typically safer to let charging keep running, or to have the circuits turn on and shut off between defined percentage levels repeatedly?

It’s not much about which method is safer.
It’s specifically about electron stability: optimizing the pressure (voltage) and current flow.

As long as you don’t set a voltage limit higher than 4200 mV, and don’t leave the device plugged in for extended periods of time, you’re good with that limitation alone.
Otherwise, the other option is actually more beneficial - since it mitigates high pressure (voltage) exposure/time to a greater extent.
If you use both, simultaneously - you get the best of both worlds.
On top of that, if you enable the cooldown cycle, it’ll give you even more benefits.

Ever wondered why lithium ion batteries aren’t sold fully charged? They’re usually ~40-60% charged. Why is that?
Keeping a battery fully drained, almost fully drained or 70%+ charged for a long times, leads to significant (permanent) capacity loss

Putting it all together in practice…

Night/heavy-duty/forever-plugged profile: keep capacity within 40-60% (e.g., acc 50 45) and/or voltage around ~3900 mV

Day/regular profile: max capacity: 75-80% and/or voltage no higher than 4100 mV

Travel profile: capacity up to 95% and/or voltage no higher than 4200 mV

* https://batteryuniversity.com/article/bu-808-how-to-prolong-lithium-based-batteries/

I don’t really understand what the “-f|—force|—full [capacity]” is meant for.

Consider the following situation:

You’re almost late for an important event.
You recall that I stole your power bank and sold it on Ebay.
You need your device and a good battery backup.
The event will take the whole day and you won’t have access to an external power supply in the middle of nowhere.
You need your battery charged fast and as much as possible.
However, you don’t want to modify ACC config nor manually stop/restart the daemon.

Do I have to install/upgrade both ACC and AccA?

To really get out of this dilemma, you have to understand what ACC and AccA essentially are.

ACC is a Android program that controls charging.
It can be installed as an app (e.g., AccA) module, Magisk module or standalone software. Its installer determines the installation path/variant. The user is given the power to override that.

A plain text file holds the program’s configuration. It can be edited with any root text editor.
ACC has a command line interface (CLI) - which in essence is a set of Application Programing Interfaces (APIs). The main purpose of a CLI/API is making difficult tasks ordinary.

AccA is a graphical user interface (GUI) for the ACC command line. The main purpose of a GUI is making ordinary tasks simpler.
AccA ships with a version of ACC that is automatically installed when the app is first launched.

That said, it should be pretty obvious that ACC is like a fully autonomous car that also happens to have a steering wheel and other controls for a regular driver to hit a tree.
Think of AccA as a robotic driver that often prefers hitting people over trees.
Due to extenuating circumstances, that robot may not be upgraded as frequently as the car.
Upgrading the car regularly makes the driver happier - even though I doubt it has any emotion to speak of.
The back-end can be upgraded by flashing the latest ACC zip.
However, unless you have a good reason to do so, don’t fix what’s not broken.

Does acc work also when Android is off?

No, but this possibility is being explored.
Currently, it does work in recovery mode, though.

I have this wakelock as soon as charging is disabled. How do I deal with it?

The best solution is enforcing a charging switch that doesn’t trigger a wakelock.
Refer back to TROUBLESHOOTING > Charging Switch.
A common workaround is having resume_capacity = pause_capacity - 1. e.g., resume_capacity=74, pause_capacity=75.

What’s idle mode, and how do I set it up?

It’s the ability of running off the charger.
The battery behaves as if it were physically disconnected from the device.
The primary indicator of idle mode is charging current around 0 mA. One can customize idleThreshold (absolute value).

Idle mode is great for extended device use (e.g., GPS navigation, gaming, server). Use it when the charger must be plugged for a long time (or permanently).

IMPORTANT: lithium batteries have the longest lifespan when kept about 40-60% charged (about 3.7-3.9ish Volts). That said, try not to use idle mode above 60% too often.

Not all devices support the “native” idle mode. Hence, variants of “emulated” idle mode are available:

  1. Limit the charging voltage (requires kernel support) to a value that gets you close to the desired battery level. To avoid false positives, determine the value only after the device has been unplugged for a minute or so.
  2. Pause/resume charging based on voltage thresholds (e.g., acc 3950 keeps voltage within 3800 and 3950 millivolts).
  3. Set resume_capacity to (pause_capacity - 1), e.g., acc 50 49.

Notes

  • In idle mode, the battery does discharge, although very slowly. The same happens to a battery that is sitting on a shelf.
  • In emulated idle mode, the battery tends to hold its charge, since it works as a “passthrough” device. Imagine pouring water into a glass that is already full.

How do I enable “smart charging”?

Configure day and night profiles:

acc -c a ": day profile; at 6:00 \"acc -s pc=75 mcc= mcv=4100; acc -n 'Switched to day profile'\""; acc -c a ": night profile; at 22:00 \"acc -s pc=50 mcc=500 mcv=3900; acc -n 'Switched to night profile'\""