Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 04-23-2021, 05:12 AM   #1
atonement
Zealot
atonement began at the beginning.
 
Posts: 107
Karma: 10
Join Date: Feb 2015
Location: India
Device: Kindle PW3
Is it possible to limit battery charge to say 80%?

In my rooted Android devices I have faithfully adhered to limiting charge between 30-80%. Probably that's why even after 4+ years in 2 of my oldest devices (2 & 3 years of intensive usage) battery health is still in the 85-90% range and they still deliver 8-10 hour SoT. Considering the difficulty in obtaining a replacement battery for Kindles in my country I would like to prolong the battery life as far as possible. After jailbreak I have no desire to get an Android based one.
Is this possible? Thanks.
atonement is offline   Reply With Quote
Old 04-23-2021, 09:45 AM   #2
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,506
Karma: 26047190
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
Nope. But the PMIC will take care of that for you anyway (roughly speaking).
NiLuJe is offline   Reply With Quote
Advert
Old 04-23-2021, 10:00 AM   #3
atonement
Zealot
atonement began at the beginning.
 
Posts: 107
Karma: 10
Join Date: Feb 2015
Location: India
Device: Kindle PW3
Oh. Do you mean by faking battery charge levels or something else?
Also once fully charged and plugged in does the device take power from the mains or from the battery? I couldn't determine it.
atonement is offline   Reply With Quote
Old 04-23-2021, 11:21 AM   #4
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,506
Karma: 26047190
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
It will definitely stop charging on its own.
NiLuJe is offline   Reply With Quote
Old 04-23-2021, 01:03 PM   #5
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,773
Karma: 103362673
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by atonement View Post
Also once fully charged and plugged in does the device take power from the mains or from the battery? I couldn't determine it.
Once the PMIC decides the battery is charged, the current to the battery stops and the kindle is powered from the charger. There are numerous inexpensive USB power meters that display voltage, current, and sometimes more. Some information is available from the kindle in /sys/class/power_supply/max*battery/

See more information below.

Quote:
Originally Posted by atonement View Post
In my rooted Android devices I have faithfully adhered to limiting charge between 30-80%. Probably that's why even after 4+ years in 2 of my oldest devices (2 & 3 years of intensive usage) battery health is still in the 85-90% range and they still deliver 8-10 hour SoT. Considering the difficulty in obtaining a replacement battery for Kindles in my country I would like to prolong the battery life as far as possible. After jailbreak I have no desire to get an Android based one.
Is this possible? Thanks.
I tried to do that a few years ago. It is easy enough to stop charging at some arbitrary percentage below 100, but that also stops powering the kindle from the charger and I
could not come up with a way to command powering the kindle from the charger without resuming charging. I also could not come up with a way to automatically resume charging while the kindle is sleeping.

I have a script to print battery status information. The following works on Voyage and PW3. For Oasis 2 or 3 change max77696-battery to max77796-battery
Code:
#!/bin/sh
DATE=`date '+%Y-%m-%dT%H:%M:%S'`
MA_NOW=`cat /sys/class/power_supply/max77696-battery/current_now`
V_NOW=`cat /sys/class/power_supply/max77696-battery/voltage_now`
MA_AV=`cat /sys/class/power_supply/max77696-battery/current_avg`
V_AV=`cat /sys/class/power_supply/max77696-battery/voltage_avg`
PCT=`cat /sys/class/power_supply/max77696-battery/capacity`
CHRG=`cat /sys/class/power_supply/max77696-battery/charge_now`
TBAT=`cat /sys/class/power_supply/max77696-battery/temp`
echo "$DATE $PCT $CHRG $MA_NOW $MA_AV $V_NOW $V_AV $TBAT"
j.p.s is offline   Reply With Quote
Advert
Old 04-24-2021, 08:01 AM   #6
atonement
Zealot
atonement began at the beginning.
 
Posts: 107
Karma: 10
Join Date: Feb 2015
Location: India
Device: Kindle PW3
After hitting 100% battery just kept on charging. Design capacity 1408mAh but it had reached 1458mAh. I was anxious about overcharging so ultimately unplugged it.
While Android devices charge at upto 4.4V, Kindle only reached 4.19V. Every 0.1V decrease in max. charging voltage is supposed to potentially double the useful cycle count. So it's a bit better.
In many Android devices a charge control file is present where with root it's trivial to start/stop charging by changing the value from 0 to 1 and vice-versa.
When plugged in and at 100% battery status was shown as "Full" vs "Discharging" when it's unplugged.
I use the Battery Status KUAL extension in my PW3. Works well. Best feature is the battery temp. readout. No more prolonged reading under direct sunlight!
Cycle count is still only 13 after 1.5 years which is nice. But recently the battery in my 33 month laptop with only 48 cycle count has significantly degraded such that it no longer charges beyond 80% or so and falls to zero straightaway from 20-25%.
P.S. For some older Kindles there was a software mod to boot the device without a battery. Does that still work for newer devices in particular the PW3?
atonement is offline   Reply With Quote
Old 04-25-2021, 05:19 AM   #7
eddie.t.h
Addict
eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.
 
eddie.t.h's Avatar
 
Posts: 201
Karma: 123456
Join Date: Jan 2018
Device: Too Much Kindle :-)
Quote:
Originally Posted by atonement View Post
P.S. For some older Kindles there was a software mod to boot the device without a battery. Does that still work for newer devices in particular the PW3?
The Paperwhite 3 starts without problems without batteries. Just add a 100k resistor pretending to be a temperature sensor. This applies to all kindle with 3-pin batteries.

Last edited by eddie.t.h; 04-25-2021 at 05:21 AM.
eddie.t.h is offline   Reply With Quote
Old 04-25-2021, 06:07 AM   #8
atonement
Zealot
atonement began at the beginning.
 
Posts: 107
Karma: 10
Join Date: Feb 2015
Location: India
Device: Kindle PW3
Thats good to know. Is there a guide or tutorial for the same? Thanks.
atonement is offline   Reply With Quote
Old 04-25-2021, 06:26 AM   #9
eddie.t.h
Addict
eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.eddie.t.h is an accomplished Snipe hunter.
 
eddie.t.h's Avatar
 
Posts: 201
Karma: 123456
Join Date: Jan 2018
Device: Too Much Kindle :-)
I haven't seen a tutorial for this anywhere. Just connect it like in the picture. Resistor ~ 100k, power supply max 4.2V.
Attached Thumbnails
Click image for larger version

Name:	IMG_6207[1].jpg
Views:	438
Size:	169.8 KB
ID:	186765  
eddie.t.h is offline   Reply With Quote
Old 04-29-2021, 02:18 AM   #10
Hzj_jie
Member
Hzj_jie will become famous soon enoughHzj_jie will become famous soon enoughHzj_jie will become famous soon enoughHzj_jie will become famous soon enoughHzj_jie will become famous soon enoughHzj_jie will become famous soon enough
 
Posts: 21
Karma: 638
Join Date: Feb 2016
Device: kobo aura hd
I definitely agree it's worth trying. But I heavily used my voyage (tried to read every day) during the last 6 years, the battery is still not a concern to me. The battery must decay after years of service, but voyage can still last for weeks.
Hzj_jie is offline   Reply With Quote
Old 04-29-2021, 06:12 AM   #11
atonement
Zealot
atonement began at the beginning.
 
Posts: 107
Karma: 10
Join Date: Feb 2015
Location: India
Device: Kindle PW3
That's good to know. What's the battery cycle count?
atonement is offline   Reply With Quote
Old 04-29-2021, 07:53 AM   #12
atonement
Zealot
atonement began at the beginning.
 
Posts: 107
Karma: 10
Join Date: Feb 2015
Location: India
Device: Kindle PW3
"U-Boot 2014.04 (Mar 19 2020 - 22:30:49)

CPU: Freescale i.MX6SL rev1.3 at 792 MHz
CPU: Temperature 30 C, calibration data: 0x5774f95f
Reset cause: POR
FRED::: EXTCSD177=0, 179=48FSL_SDHC: 0, FSL_SDHC: 1, FSL_SDHC: 2
Board: Heisenberg
Board Id: P00118077426092X
S/N: G000K90574260B56
I2C: ready
DRAM: MR5=0x1,MR6=0x4 512 MiB"

Is it possible to get CPU temp. at least by a terminal command or something else? Didn't know where else to ask...
atonement is offline   Reply With Quote
Old 04-29-2021, 01:25 PM   #13
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,773
Karma: 103362673
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by atonement View Post
Is it possible to get CPU temp. at least by a terminal command or something else? Didn't know where else to ask...
Did you read post #5 in this thread?
j.p.s is offline   Reply With Quote
Old 04-29-2021, 01:42 PM   #14
atonement
Zealot
atonement began at the beginning.
 
Posts: 107
Karma: 10
Join Date: Feb 2015
Location: India
Device: Kindle PW3
That's for battery temp, isn't it?
atonement is offline   Reply With Quote
Old 04-29-2021, 01:46 PM   #15
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,773
Karma: 103362673
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by atonement View Post
That's for battery temp, isn't it?
Yes. Sorry.
j.p.s is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
When should I charge the battery? charlyee Amazon Kindle 25 02-03-2016 08:11 AM
How Far Do You Let Your Battery Go Before You Charge ? JimmyH Amazon Kindle 18 11-03-2014 12:11 PM
paperwhite battery charge??? kindlekitten Amazon Kindle 8 10-14-2013 01:51 PM
Battery Will Not Charge w1ksz enTourage eDGe 19 04-10-2013 10:12 AM
Can't Charge My Battery Lady Fitzgerald Astak EZReader 8 06-22-2010 05:09 PM


All times are GMT -4. The time now is 10:32 AM.


MobileRead.com is a privately owned, operated and funded community.