Editor Version ×
Standard

1.Easy to use and quick to get started

2.The process supports design scales of 300 devices or 1000 pads

3.Supports simple circuit simulation

4.For students, teachers, creators

Profession

1.Brand new interactions and interfaces

2.Smooth support for design sizes of over 5,000 devices or 10,000 pads

3.More rigorous design constraints, more standardized processes

4.For enterprises, more professional users

Ongoing

STD ATtiny13 Volume Adjuster

License: CC-BY-SA 3.0

Mode: Editors' pick

  • 1.3k
  • 0
  • 7
Update time: 2021-12-28 13:30:33
Creation time: 2021-09-27 17:53:25
Description
# Automatic Volume Adjuster Recently Great Scott built his version of an automatic volume adjuster. In this project he solved one of the biggest problems with modern movies, which is that the conversation volume is way too low in comparison to the music volume. That is why he combined an Arduino microcontroller with a microphone and an IR LED in order to create his automatic volume adjuster. It basically detects when loud movie music starts playing, lowers the volume by sending the respective IR remote control command and then brings the volume back up when the music is over. Since using an Arduino for this task is a bit of an overkill, here's a version for the ATtiny13A. - Firmware (Github): https://github.com/wagiminator/ATtiny13-VolumeAdjuster - Original Project (YouTube): https://youtu.be/j1V2I-otdzk ![VolumeAdjuster_pic1.jpg](https://raw.githubusercontent.com/wagiminator/ATtiny13-VolumeAdjuster/main/documentation/VolumeAdjuster_pic1.jpg) # Hardware ![VolumeAdjuster_wiring.png](https://raw.githubusercontent.com/wagiminator/ATtiny13-VolumeAdjuster/main/documentation/VolumeAdjuster_wiring.png) ## Microphone Amplifier and Peak Detector The positive half-wave of the weak audio signal from the electret microphone is first amplified by an inexpensive [LMV321](https://youtu.be/jllsqRWhjGM) rail-to-rail OpAmp. The following peak detector, consisting of a diode, a capacitor and a resistor, extracts only the maximum values from this signal, i.e. the amplitude or, in other words, the current volume of the audio signal. No more of the audio signal is required and the microcontroller's software is thus relieved. For a more detailed explanation of how the peak detector works, check out David Jones' excellent [video](https://youtu.be/jllsqRWhjGM). ![VolumeAdjuster_peak.png](https://raw.githubusercontent.com/wagiminator/ATtiny13-VolumeAdjuster/main/documentation/VolumeAdjuster_peak.png) ## Infrared LED The IR LED is controlled by a standard BJT transistor. Due to the control with a high-frequency PWM, no series resistor is necessary for the LED. ## Battery Charger For battery charging the [MCP73831](https://datasheet.lcsc.com/szlcsc/1809191822_Microchip-Tech-MCP73831T-2ATI-OT_C14879.pdf) is used. The MCP73831 is a highly advanced linear charge management controller for use in space-limited, cost-sensitive applications. It employs a constant-current/constant-voltage charge algorithm with selectable preconditioning and charge termination. The constant current value is set with one external resistor (R6). Charging is done via the built-in USB-C connector. # Software ## Volume Adjustments The current volume received by the microphone is measured approximately every 32ms via the analog-to-digital converter (ADC) and averaged with the last values via a simple software-based low-pass filter in order to ignore short peaks. The mean value obtained in this way is compared with the current maximum volume selected via the potentiometer. If the maximum volume has been exceeded, a "decrease volume" command is sent via the IR LED. If the volume is lower than the maximum value minus a hysteresis, an "increase volume" command is sent. No more "increase volume" commands are sent than there were previously "decrease volume" commands. The main loop of the software is shown below: ```c while(1) { resetWatchdog(); // reset watchdog sleep_mode(); // sleep until wake up by watchdog peak = ((peak > 5; // low pass filter if(!(--poti_timer)) { // time to update poti? poti = readADC(POT_ADC); // update volume control pot if(poti poti) { // volume too high? VOL_DOWN(); // send "volume down" via IR vol_counter++; // increase counter for IR signals peak = (peak + readADC(MIC_ADC)) >> 1; // reset peak value } else if((vol_counter) && (peak > 1; // reset peak value } peak_timer = 8; // reset peak timer } } ``` ## Setting the Hysteresis A hysteresis is defined at the beginning of the code so that the volume control does not oscillate. It defines the distance between too loud and too quiet. The higher the value, the less often the volume is adjusted. ```c #define HYST 16 // hysteresis ``` ## IR Protocol Implementation The implementation for the NEC, SAMSUNG, SONY and RC-5 protocol is taken from [TinyRemote](https://github.com/wagiminator/ATtiny13-TinyRemote). Refer to this project for a complete explanation. ## Setting the IR Codes Before compiling you have to define the IR commands for volume up and down. Different protocols and device addresses can be used. You can find the codes for your TV or other devices on the internet or by using an [IR decoder](https://github.com/wagiminator/ATtiny13-TinyDecoder). ```c #define VOL_UP() NEC_sendCode(0x04,0x02) // LG TV volume up (addr 0x04, cmd 0x02) #define VOL_DOWN() NEC_sendCode(0x04,0x03) // LG TV volume down (addr 0x04, cmd 0x03) ``` ## Power Saving The code shuts down unused peripherals and utilizes the sleep mode power down function. It is regularly woken up by the watchdog timer. As long as no IR telegram is sent, the device consumes an average current of around 750µA at a battery voltage of 3.7V. The power protocol shown below was created with a [Power Profiler Kit II](https://www.nordicsemi.com/Products/Development-hardware/Power-Profiler-Kit-2). As you can see, waking up from sleep by the watchdog timer about every 32ms causes current peaks of up to 1.8mA. ![VolumeAdjuster_power_idle.png](https://raw.githubusercontent.com/wagiminator/ATtiny13-VolumeAdjuster/main/documentation/VolumeAdjuster_power_idle.png) Sending a NEC telegram takes about 70ms and consumes an average of a little over 4mA with current peaks of up to 20mA during this time. ![VolumeAdjuster_power_transmit.png](https://raw.githubusercontent.com/wagiminator/ATtiny13-VolumeAdjuster/main/documentation/VolumeAdjuster_power_transmit.png) So the bottom line is that even a small 100mAh LiPo battery should have enough capacity for several movie nights. To reduce power consumption even further, the 10kΩ potentiometer can be replaced by a 100kΩ one. ## Timing Accuracy The accuracy of the internal oscillator of the ATtiny13 is +/-10% with the factory calibration. Usually this is sufficient for an infrared remote control. Slight deviations in timing are tolerated by the receiver, since cheap remote controls are usually not more accurate. Nevertheless, it is recommended to [manually calibrate](https://github.com/wagiminator/ATtiny84-TinyCalibrator) the internal oscillator and set the corresponding OSCCAL value at the beginning of the code. ```c // oscillator calibration value (uncomment and set if necessary) #define OSCCAL_VAL 0x48 ``` ## Compiling and Uploading the Firmware Since there is no ICSP header on the board, you have to program the ATtiny either before soldering using an [SOP adapter](https://aliexpress.com/wholesale?SearchText=sop-8+150mil+adapter), or after soldering using an [EEPROM clip](https://aliexpress.com/wholesale?SearchText=sop8+eeprom+programming+clip). The [AVR Programmer Adapter](https://github.com/wagiminator/AVR-Programmer/tree/master/AVR_Programmer_Adapter) can help with this. Don't forget to switch off or remove the battery when programming in-circuit! ### If using the Arduino IDE - Make sure you have installed [MicroCore](https://github.com/MCUdude/MicroCore). - Go to **Tools -> Board -> MicroCore** and select **ATtiny13**. - Go to **Tools** and choose the following board options: - **Clock:** 1.2 MHz internal osc. - **BOD:** disabled - **Timing:** Micros disabled - Connect your programmer to your PC and to the ATtiny. - Go to **Tools -> Programmer** and select your ISP programmer (e.g. [USBasp](https://aliexpress.com/wholesale?SearchText=usbasp)). - Go to **Tools -> Burn Bootloader** to burn the fuses. - Open the sketch and click **Upload**. ### If using the precompiled hex-file - Make sure you have installed [avrdude](https://learn.adafruit.com/usbtinyisp/avrdude). - Connect your programmer to your PC and to the ATtiny. - Open a terminal. - Navigate to the folder with the hex-file. - Execute the following command (if necessary replace "usbasp" with the programmer you use): ``` avrdude -c usbasp -p t13 -U lfuse:w:0x2a:m -U hfuse:w:0xff:m -U flash:w:volumeadjuster.hex ``` ### If using the makefile (Linux/Mac) - Make sure you have installed [avr-gcc toolchain and avrdude](http://maxembedded.com/2015/06/setting-up-avr-gcc-toolchain-on-linux-and-mac-os-x/). - Connect your programmer to your PC and to the ATtiny. - Open the makefile and change the programmer if you are not using usbasp. - Open a terminal. - Navigate to the folder with the makefile and the sketch. - Run "make install" to compile, burn the fuses and upload the firmware. # Operating Instructions 1. Turn on your television and select your desired volume with the associated remote control. The VolumeAdjuster will not adjust the volume louder than it is now. 2. Switch on the VolumeAdjuster and select the maximum volume with the potentiometer. The VolumeAdjuster will reduce the volume of the television as long as the selected maximum volume is exceeded. You can change the maximum volume at any time using the potentiometer. # References, Links and Notes 1. [Original Project by Great Scott](https://www.instructables.com/Automatic-Volume-Adjuster-for-LOUD-MOVIE-MUSIC/) 2. [ATtiny13A Datasheet](http://ww1.microchip.com/downloads/en/DeviceDoc/doc8126.pdf) 3. [LMV321 Datasheet](https://youtu.be/jllsqRWhjGM) 4. [MCP73831 Datasheet](https://datasheet.lcsc.com/lcsc/1809191822_Microchip-Tech-MCP73831T-2ATI-OT_C14879.pdf) 5. [TinyRemote](https://github.com/wagiminator/ATtiny13-TinyRemote) 6. [IR Remote Decoder](https://github.com/wagiminator/ATtiny13-TinyDecoder) 7. [OSC Calibrator](https://github.com/wagiminator/ATtiny84-TinyCalibrator) 8. [Audi Peak Detector](https://easyeda.com/wagiminator/lmv358-audiopeakdetector) 9. [IR remote control explanations by San Bergmans](https://www.sbprojects.net/knowledge/ir/index.php) 10. [Infrared communication concepts (altium.com)](https://techdocs.altium.com/display/FPGA/Infrared+Communication+Concepts) 11. [Peak Detector Explanation (EEVblog)](https://youtu.be/jllsqRWhjGM) # License ![license.png](https://i.creativecommons.org/l/by-sa/3.0/88x31.png) This work is licensed under Creative Commons Attribution-ShareAlike 3.0 Unported License. (http://creativecommons.org/licenses/by-sa/3.0/)
Design Drawing
schematic diagram
1 /
PCB
1 /
The preview image was not generated, please save it again in the editor.
ID Name Designator Footprint Quantity
1 10u C1,C3,C4,C7 C_0603_S 4
2 100n C2,C6,C8 C_0603_S 3
3 4u7 C5 C_0603_S 1
4 BAT CN1 CONN-SMD_2P_PH2.0_SPWB 1
5 4148 D1 SOD_323 1
6 CHARGE LED1 LED_0603_S 1
7 IR333-A LED2 LED-3MM/2.54 1
8 ELECTRET Q1 9.7ELECTRET 1
9 3904 Q2 SOT-23-3_W 1
10 10k R1,R2,R5,R8 R_0603_S 4
11 100k R3 R_0603_S 1
12 1k R4,R7,R11 R_0603_S 3
13 4k7 R6 R_0603_S 1
14 5k1 R9,R10 R_0603_S 2
15 10K R12 RES-ADJ-TH_3P-L9.5-W9.5-P2.54-BR-BS 1
16 POWER SW1 SW-SMD_SS-1290L-GLL-1.5MM 1
17 ATtiny13A U1 SOP-8_150MIL 1
18 LMV321 U2 SOT-23-5 1
19 MCP73831T U3 SOT-23-5 1
20 USB-TYPE-C-6PIN USB1 USB-C-SMD-6P 1

Unfold

Project Attachments
Empty
Project Members
Target complaint
Related Projects
Change a batch
Loading...
Add to album ×

Loading...

reminder ×

Do you need to add this project to the album?

服务时间

周一至周五 9:00~18:00
  • 0755 - 2382 4495
  • 153 6159 2675

服务时间

周一至周五 9:00~18:00
  • 立创EDA微信号

    easyeda

  • QQ交流群

    664186054

  • 立创EDA公众号

    lceda-cn