Skip to main content

How to extend your phone's battery life - Technoob Technology

Most of the Mobile phone companies use lithium-ion batteries as the batteries of their phones.  Using these batteries for years cause them to physically expand. this process is not reversible and the batteries lose their charge capacity and voltage as the number of charges and discharge cycles increases. When the technology improves, power usage increases automatically.

We know it gives you all a little stress.  So stop blaming your battery and start doing these few steps to save your battery life.


01)The first thing you can do to save your battery life is by Controlling battery discharge.

You might be thinking how to control the discharge. Well, It's a very easy step. Install some free software available on play store or apple store which shows the battery usage of installed apps. I suggest you to use DU battery saver as it's simple and useful.
Using the app, check which software use the battery most and if you find any unnecessary app drinking your battery power, uninstall it. If the app is important, go to settings and force stop it. Sadly iPhone users don't have this feature and what they can do is Double-clicking the Home button to bring up the fast app switcher and remove the running recent apps.


02)The second thing is trying to reduce screen brightness 

you won't believe that your mobile's display is the thing which sucks more battery life than all other hardware. So reducing screen brightness will help you to long last your battery power. Switching on automatic brightness also sucks a bit power cause the sensors absorb some power. I suggest you guys do it yourself.


03)Keep your battery temperature right

Using your mobile phone for hours heats up your battery like a hotplate. So when you are using your phone for hours, just give it a break. keep it somewhere open and remove the phone cover if it is possible. Avoid keeping your phone on the dashboard while driving. Don't keep your phone on hot surfaces. And these steps will help you to a great battery life.

mobile phone charging technology

04) Use power saving modes.

If your phone has a power saving mode(it should)  keep it turned on always if possible. that will reduce brightness and your phone's performance, but in return, it will help you to increase battery life for at least one hour.



  • The other things you can do, 



  1. Reduce talk time
  2. Always use WIFI instead of mobile networks as possible
  3. Don't recharge your phone if the battery level isn't below 30%
  4. Stop using unnecessary sensors (iris sensor, screen rotation, face unlock)




Read Our Article On How Mobile Devices Affect On Your Health by Technoob.


Comments

Popular posts from this blog

How to make a first person character controller - Unity

A first-person character controller script is the starting point of any fps shooter game. Even new Unity game developers tend to write their own fps controller script before learning anything else as it is challenging and very exciting. In this article, we gonna create two simple fps controllers from scratch and will guide you step by step on how it works. First, let's understand the basic concept of an fps controller. You should have a rotating camera that rotates in the x-axis to look up and down and the character should rotate on the y-axis to look around. There are two ways to create an fps controller in the Unity Engine.  Using Character controller component Using the RigidBody component Both have different advantages and disadvantages when using them. It depends on your game to select the best fps controller according to your needs.  Character controller based fps controller Pros: Is grounded check is built-in Has its own methods to move the chara

Unity Get Post web requests - Technoob Technology

Web requests in unity are super easy to use. We gonna use the UnityWebRequest class as the WWW class is deprecated now. UnityWebRequest class can be used for both Get and Post methods. The 'UnityEngine.Networking' namespace is required to work with UnityWebRequests.  This tutorial is made with some simple UI elements. First Let's see how the GET method works. 01. UnityWebRequest.GET We use this method to receive data from the server as normal get requests. Using coroutines in web requests is mandatory as we have to wait until the download is complete before showing the results, and the coroutines make this much easier. A simple button calls the method and a text element will show the result. The script contains a reference to the text element and the string URL of your PHP file.  When the button is pressed the button executes the ButtonGetData method and that method simply starts the GetData coroutine. We use the using keyword as this data

How to make an Advanced Audio Manager for Unity - Technoob Technology

Unity engine gives us a good control on audio clips we use, But the problem is when we add several audio sources for several audio clips it's gonna get hard to control them all. And if you want to make some changes to only one audio source you have to find it first.  This will become a mess if you gonna work with more than 10 audio clips. In this case, we can Create an AudioManager and include all the audio clips in it and make some static methods to play, pause the audio from other scripts. This Audio Manager is written in C# and if you use unity-script you have to convert this into unity script first. In this tutorial, we gonna create an audio manager which contains 7 methods. 1.Play 2.Pause 3.Unpause 4.Stop 5.FadeIn 6.FadeOut 7.lower volume for a duration First, we need a Custom class which contains some strings, floats, bools and an audio clip. This class is not derived from unity mono behavior so we should add [System.Serializable] to mak