spacetime85
Published © CC BY-NC

TV audio damper (prototype)

Automatically lowers your TV audio output after a programmable hour when it gets over a certain level.

BeginnerProtip130
TV audio damper (prototype)

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Real Time Clock (RTC)
Real Time Clock (RTC)
×1
IR receiver (generic)
×1
IR transmitter (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Prototyping Kit, Breadboard
Prototyping Kit, Breadboard

Story

Read more

Schematics

TV audio damper

This is the final emitter circuit. Another schematics will be provided for the tv-control signal acquisition.

Code

Tv audio damper with watchdog

Arduino
The biggest problem is the instability of the microphone due to electrical/static noises or input voltage fluctuations. As example, if the audio goes above the hardware threshold, the output signal of the microphone will constantly remains above the setted threshold resulting in errors. The only way to avoid this (except using a better quality microphone amplifier?) is to restart the device. For this reason, a whatchdog is implemented.

future improvements:
- choosing threshold and time directly on the board
- implement an automatic procedure to record the tv-controller signal leading the use to every kind of tv.
- find a safe way to higher the volume to a fixed level
- find a hardware design to optimize the audio uptake from tv
#include <avr/wdt.h>
#include <Wire.h>
#include "RTClib.h"
#include "IRremote.h"

RTC_DS1307 rtc; //modulo ora
float media_letture;
int lettura;

float media;
int livello_suono;
long somma = 0;
int soglia_sup;
int soglia_inf;
int i;
int lettura1;
int lettura2;
int lettura3;
int lettura4;
unsigned int ora;
unsigned int  rawData[67] = {4450, 4450, 550, 1700, 500, 1750, 500, 1700, 500, 600, 500, 600, 550, 550, 550, 600, 500, 600, 500, 1750, 500, 1700, 500, 1750, 500, 550, 550, 600, 500, 600, 500, 600, 550, 550, 550, 1700, 500, 1750, 500, 600, 500, 1700, 500, 600, 550, 550, 550, 600, 500, 600, 500, 600, 550, 550, 550, 1700, 500, 600, 500, 1750, 500, 1700, 500, 1750, 500, 1700, 500};
unsigned int timer;
IRsend irsend;                                                             //Utilizzare PIN 3~ per LED IR
int freq_ir = 38;

void calibrazione() {
  delay(20);
  somma = 0;
  lettura = 0;
  soglia_sup = 0;
  soglia_inf = 0;
  media = 0;
  for (i = 0; i < 50; i++) {
    lettura = analogRead(A0);
    somma = somma + lettura;
    delay(30);
    digitalWrite(8, HIGH);
  }
  
  media = (somma / 50);
  soglia_sup = (int)(media) + 2 ; //valore soglia
  soglia_inf = (int)(media) - 5 ;
  digitalWrite(8, LOW);
}


void setup() {

  wdt_disable();
  rtc.begin();

  pinMode(13, OUTPUT);
  pinMode(18, OUTPUT);
  //Serial.begin(9600);
  calibrazione();
  wdt_enable(WDTO_500MS);
}

void loop() {


  DateTime now = rtc.now();     //interroga il modulo ora
  ora = now.hour(), DEC;
  //Serial.println(ora);
  //delay (300);
  if (ora >=23 || ora <= 2) {
    digitalWrite(13, LOW);
    do {
      if (analogRead(A0) > ((int)media + 18) || analogRead(A0) < ((int)media - 34)) {
        delay(2000);
      }
      if (analogRead(A0) > soglia_sup)   {
        irsend.sendRaw(rawData, 67, freq_ir);
        digitalWrite(13, HIGH);
        //Serial.println(analogRead(A0));
        delay(200);
        lettura1 = analogRead(A0);
        delay(100);
        lettura2 = analogRead(A0);
        delay(100);
        lettura3 = analogRead(A0);
        somma = lettura1 + lettura2 + lettura3;
        media = somma / 3;
        if (int(media) > soglia_sup + 1) {
          delay(2000);
        }

      }
      else {
        digitalWrite(13, LOW);
      }
      wdt_reset();
      lettura4 = analogRead(A0);
    } while (lettura4 <= soglia_sup);
    wdt_reset();
  } wdt_reset();
}

Credits

spacetime85
0 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.