View Single Post
Old 11-27-2023, 03:15 AM   #38
EastEriq
Groupie
EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.EastEriq can program the VCR without an owner's manual.
 
Posts: 199
Karma: 195502
Join Date: Jan 2018
Device: Cybook Orizon, PocketBook Touch HD
Quote:
Originally Posted by rcentros View Post
I haven't upgraded my HD 3 yet. I wonder if the hour settings are in the new software? My power shut-off settings end with 60 minutes (has none of the multiple hour settings). (Not that I would use them, just curious.)
I confirm that it is limited to 60 min on my device as well, FW 5.20.

I've been looking for ways to make it longer. So far I've found that editing /ebrmain/config/settings/power.json I can add more times to the list of options. The format is
Code:
        {                                                                       
                "id"            :       "auto_power_off",                       
                "title_id"      :       "@Auto_off",                            
                "icon_id"       :       "ci_power_off",                         
                "control_type"  :       "list",                                 
                "values"        :       [                                       
                                                        ":0:@Off",              
                                                        ":1:@10min",            
                                                        ":2:@20min",            
                                                        ":3:@30min",            
                                                        ":4:@60min",            
                                                        ":5:@90min",            
                                                        ":6:@120min",           
                                                        ":7:@180min"            
                                                ],                              
                "storage"       :       ["${SYSTEM_CONFIG_FILE}, poweroff"]     
        }
where the original list ended at 4. The enum index is what is stored in /mnt/ext1/system/config/global.cfg as e.g. poweroff=4.

The strings after @ can even be localised in /ext1/system/language/xx.txt. However, that only added for me new entries to the menu; the maximal poweroff time remained 60 minutes. I wonder if these times are hardwired, or still configurable in a place I haven't found.

I'm aware that one option might be to set the time to Off and let KOreader handle shutdowns, but I'd be happier with an OS solution out of KR.

Last edited by EastEriq; 11-27-2023 at 03:20 AM.
EastEriq is offline   Reply With Quote