martes, agosto 09, 2016

MKV Agregar Subtitulos / MKVToolNix


  1. Descargar MKVToolNix desde http://www.videohelp.com/software/MKVtoolnix
  2. Abrir Archivo MKV
  3. Arrastrar subtitulo correspondiente
  4. Seleccionar idioma "Spanish Castillan (spa)"
  5. Flag de pista Predefinida: Si
  6. Flag de Pista Forzada: Si
  7. Iniciar Multiplexado
  8. Listo!


martes, julio 05, 2016

E18-D80NK Infrared Distance Ranging Sensor


/*
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

E18-D80NK Infrared Distance Ranging Sensor

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/

int sensor=2;

void setup()  {

 Serial.begin(9600); //Start serial communication boud rate at 9600
 pinMode(sensor,INPUT); //Pin 2 as signal input - yellow

}
void loop()  {
 while(1)  {
   delay(500);
   if(digitalRead(sensor)==LOW)  {
    // If no signal print collision detected
     Serial.println("Collision Detected.");
   }
   else  {
     // If signal detected print collision detected
     Serial.println("No Collision Detected.");
   }
 }
}

viernes, abril 15, 2016

Ubiquiti M2 - Modo Estación y Router con DHCP





Para tomar la señal de otra Red Wifi y Rutearla directo a un PC o Router Secundario:

Y la configuración de la Red Local:


 En este otro Modo se toma directamente la IP del Router Primario o Red a la que estoy conectado: