Volume control in mobile phones

AI Thread Summary
Volume control in mobile phones typically involves adjusting resistance in the circuit, either through physical components like potentiometers or digital methods using integrated circuits. Digital volume control often utilizes switch-mode amplifiers and variable current oscillators, allowing precise adjustments without manual intervention. The discussion highlights that digital circuits can replace manual switches, enabling volume changes via electrical signals. Class-D amplifiers are commonly used in modern cellphones for efficient audio amplification. Understanding these mechanisms is essential for projects aimed at modifying or controlling audio output in devices.
Ansuman
Messages
24
Reaction score
0
I have used many mobile phones and controlled volume on them but I have never been able to figure out how the volume increases or decreases, i.e, what actually happens in a circuit board or other parts present in the phones when we are controlling the volume which ultimately leads to speakers giving out low or high sounds ??
 
Engineering news on Phys.org
Welcome to PF;
There are a lot of ways to control volume - even in mobile phones - it usually involves physically changing the value of a resistance in the physical circuit.

The easiest way to do this digitally is to change the path that the current takes through a whole lot of very small resisters in an integrated circuit.
 
Actually I do not thnkink they are using resistance - too inefficient. I am pretty sure it using all switchmode amplifiers - and it is all controlled digitally.
 
In cell phones some models use variable current oscillators.
Some however in volume still use potentiometers.
 
Mordred said:
In cell phones some models use variable current oscillators.
Some however in volume still use potentiometers.
If I am not wrong the potentiometers use variable resistors to change the electrical current going to a speaker, when the resistivity is more the volume is less, i may tend to be wrong, i have just passed 9th and am working on a project to adjust volume in the earphones...
 
Simon Bridge said:
Welcome to PF;
There are a lot of ways to control volume - even in mobile phones - it usually involves physically changing the value of a resistance in the physical circuit.

The easiest way to do this digitally is to change the path that the current takes through a whole lot of very small resisters in an integrated circuit.

that is how a potentiometer works, right ? i am not sure though
 
Ansuman said:
If I am not wrong the potentiometers use variable resistors to change the electrical current going to a speaker, when the resistivity is more the volume is less, i may tend to be wrong, i have just passed 9th and am working on a project to adjust volume in the earphones...
If the speaker is in series with the potentiometer (pot) then that is so, but you can also put the pot in a voltage divider with the speaker in parallel.

Note: "resistivity" is a material property, it is possible for two resistors to have the same resistance and different resistivities (they will have different dimensions).

Ansuman said:
that is how a potentiometer works, right ? i am not sure though
A pot is usually a continuous band of constant resistivity with a contact point. The distance between the sliding contact and one end of the band determines the resistance.

Digital circuits don't do continuous stuff ... the volume has to correspond to a digital number.

You could imagine a series of resistors R connected by switches so that position 0 connects to the next resistor and position 1 connects to the speakers input rail. The other end of the speaker is grounded.

Lets say there are 4 resistors, then the state of the switches is represented by a 4-bit binary number.
0000 means Rtot=0
0001 means Rtot=R
but so does 0011, 0111, and 1111 (draw the circuit to see why)

0010 means Rtot=2R
0100 means Rtot=3R
1000 means Rtot=4R
... if you want more than 4 volume levels, then use more switches and resistors.

This is far too simple - there are lots of other ways of doing it and actual circuits will be more complicated as well as different between different devices. I'm intending it as an easy-to-understand example of the kind of thinking you need rather than an example of what actually happens in real life.

Be aware that the details of how a particular manufacturer's circuit works may be proprietary information - we can only talk, in general, about what sort of thing gets done.
 
Simon Bridge said:
If the speaker is in series with the potentiometer (pot) then that is so, but you can also put the pot in a voltage divider with the speaker in parallel.

Note: "resistivity" is a material property, it is possible for two resistors to have the same resistance and different resistivities (they will have different dimensions).

A pot is usually a continuous band of constant resistivity with a contact point. The distance between the sliding contact and one end of the band determines the resistance.

Digital circuits don't do continuous stuff ... the volume has to correspond to a digital number.

You could imagine a series of resistors R connected by switches so that position 0 connects to the next resistor and position 1 connects to the speakers input rail. The other end of the speaker is grounded.

Lets say there are 4 resistors, then the state of the switches is represented by a 4-bit binary number.
0000 means Rtot=0
0001 means Rtot=R
but so does 0011, 0111, and 1111 (draw the circuit to see why)

0010 means Rtot=2R
0100 means Rtot=3R
1000 means Rtot=4R
... if you want more than 4 volume levels, then use more switches and resistors.

This is far too simple - there are lots of other ways of doing it and actual circuits will be more complicated as well as different between different devices. I'm intending it as an easy-to-understand example of the kind of thinking you need rather than an example of what actually happens in real life.

Be aware that the details of how a particular manufacturer's circuit works may be proprietary information - we can only talk, in general, about what sort of thing gets done.

Thank you very much, you really explain well but just one more doubt, the volume of different levels are obtained by connecting different resistors ( by switches) , in my project i want to change the volume by sending an electrical signal ( about 40-100 mW [miliwatts] ), without any manual effort ( in simple terms can electrical signals replace manual switches )can I do so ??
 
see there are various ways to control volume but the best way can be explained as follow,,,,
source of production is same hence volume is controlled using amplifiers to increase or decrease the extent of sound ,,we call it as volume
 
  • #10
Ansuman said:
Thank you very much, you really explain well but just one more doubt, the volume of different levels are obtained by connecting different resistors ( by switches) , in my project i want to change the volume by sending an electrical signal ( about 40-100 mW [miliwatts] ),
Well why didn't you say so?
without any manual effort ( in simple terms can electrical signals replace manual switches )can I do so ??
Errrr... you didn't understand: the situation I described before: the switches are not manual.
They would be digital circuits etched into the integrated circuit inside the cell-phone.

In what you describe - the details depend on exactly what you want to do - you could, for eg. just use the current to drive an electric motor that turns the crank-shaft of a pot.

You should have a look at your amplifier circuit - what part of the circuit controls the volume?
Replace that with something that changes electronically.
But the short answer is "yes", you can get an electronic signal to set the volume level.
 
  • #11
Simon Bridge said:
Well why didn't you say so?
Errrr... you didn't understand: the situation I described before: the switches are not manual.
They would be digital circuits etched into the integrated circuit inside the cell-phone.

In what you describe - the details depend on exactly what you want to do - you could, for eg. just use the current to drive an electric motor that turns the crank-shaft of a pot.

You should have a look at your amplifier circuit - what part of the circuit controls the volume?
Replace that with something that changes electronically.
But the short answer is "yes", you can get an electronic signal to set the volume level.

Thank you very much. I really appreciate your help...
 
  • #12
Back
Top