Skip to main content

Recharge your Smartphones on the go


Visualize the charging of your cell phone without connecting with a source or even a convenient charger! Researchers have built up another innovation that makes your cell phones to charge with the help of radio frequencies.

The innovation comprises of a case that charges your cell phones by the means of radio waves. The 90% of energy of your smart phone is squandered by generating the wireless signals during the speech transmission and for receiving the speech signals, hence controlling the waste of energy may increase the battery life. Thus the wireless signals used for transmission of speech are the radio signals. Hence, these signals can be used to charge the smartphones when the battery level goes below the threshold level.

The recent inventions related to this, uses piezo electric crystals to charge the battery of a smartphone by absorbing the noise from the surrounding. However, this research doesn’t seem to be successful because output obtained from the crystal is very low. So, it doesn’t have the capability to replace the conventional charger.

Because of these inefficiencies, the new research has proposed a different strategy to charge your smartphones while on the go. The traditional wireless power systems are designed with a transmitter and receiver. Radio, DTH (Direct to Home Services) and other mobile phone systems works by receiving the signal and it just bounces around the air and most of it is wasted, absorbed into the environment or scattered in to the horizon. This research utilizes all the bits and pieces of these waves and uses the collected electromagnetic energy to create electrical current, then uses that to recharge the phone's battery.

Nikola Labs, a US based firm intends to offer the item for sale to the public within a year, in association with Ohio State University, where the innovation was initially started. The innovation could be put into various gadgets, for example, wearable innovation, inserted sensors and medicinal gadgets which don't oblige enormous measures of power.

Comments

Popular posts from this blog

How to get 5GB instantly in seedr?

Seedr is a torrent caching site which provides 2GB of caching for free. For those who are not aware of what the torrent is?  Torrent is a peer to peer communication protocol (P2P) for file sharing. It was introduced in the mid of 2001 for decentralizing the file sharing in this real world. How the files are shared via torrent? Files are uploaded to servers as we do traditionally but the interesting part comes here, these files can be downloaded only via torrent client like Bit torrent, µtorrent, Vuze or you can use any other clients available in the market. Just do a google search to find all the available clients for downloading files.  Why they are restricting the download to clients? Because, the concept here is each computer acts as a server, once you start the download, the client will start uploading the data. Someone on the internet will download the same file based on the data you upload, this process is called seeding, thus decentralizing the data and r...

Decision making statements - T24

As a programmer, it is essential for you to make your program to work better in all the cases. So, based on the real-time data, you have to decide how the program should work. So, it is important to take decision. Consider a simple case where you want to print the number provided by the user at runtime is even or odd. How to handle that in programs? Decision making statements comes in to play. So, what is the syntax and how to use that? IF condition THEN                 This block will execute when the if condition is satisfied or validated to true. END This is the syntax of the simple IF block. Ok. If the condition is not satisfied, then what will happen. I need to do something when IF condition is failed. How to handle that? ELSE block should be introduced. Here is the syntax, IF condition THEN               ...

Hello World - Getting Started with T24

Are you looking to develop great modules and local services for T24? This is the perfect place to start with. Let’s start from the basics. The core banking platform, T24 is developed with INFOBASIC code. This is the proprietary language of Temenos. T24 has the unique compiler to convert the BASIC code to object files with TAFc (Temenos Application Framework c) platform. An another flavour TAFj (Temenos Application Framework java), converts the BASIC to bytecode making it capable to run on any device with the Java runtime installed. The BASIC code remains same for both TAFc and TAFj Platform. Enough Intro! Let’s say hello to this world, How the syntax of this basic program looks like, PROGRAM program_name all the basic statements reside inside this block END Now, it is right time say hello, PROGRAM HELLO                 CRT “Hello World” END Yah, we did that. But, how to r...