Hi, I found that charge-limiter is using python 2 to translate decimal to hex. You might want to update the python "to-hex" command to python 3 since Apple is deprecating python 2. I tried on my own machine and change it to python3 -c 'print("%02X" % ${value})' works. I am not making it a pull request because there are binaries inside and can have some code signing issues.
Hi, I found that charge-limiter is using python 2 to translate decimal to hex. You might want to update the python "to-hex" command to python 3 since Apple is deprecating python 2. I tried on my own machine and change it to
python3 -c 'print("%02X" % ${value})'
works. I am not making it a pull request because there are binaries inside and can have some code signing issues.