Example #1
0
 /**
  *
  *
  * @return
  * @access public
  */
 public function enviarComando()
 {
     $cmd = new ComandoFlash("SISTEMA", $this->getComando());
     $this->enviarPeticion($cmd->getComando());
 }
Example #2
0
 /**
  * Metodo que crea y envia el comando con el dispositivo seleccionado a la
  * pantalla
  * 
  * @access public
  */
 public function enviarDispositivo()
 {
     $cmd = new ComandoFlash("DISPOSITIVO", $this->getDispositivo(), "");
     $this->enviarPeticion($cmd->getComando());
 }
 /**
  * 
  *
  * @return 
  * @access public
  */
 public function enviarComandoCamaraDoc()
 {
     $cmd = new ComandoFlash("DISPOSITIVO", $this->getComando(), "");
     $this->enviarPeticion($cmd->getComando());
 }
Example #4
0
 /**
  * Metodo que envia el volumen del grabador de dvd a la pantalla
  *
  */
 public function enviarVolumen()
 {
     $cmd = new ComandoFlash("DVDGRAB", "VOLUMEN", $this->getVolumen());
     $this->enviarPeticion($cmd->getComando());
 }
Example #5
0
 /**
  *
  *
  * @return
  * @access public
  */
 private function enviarMenu()
 {
     $cmd = new ComandoFlash("MENU", $this->getMenu(), "");
     $this->enviarPeticion($cmd->getComando());
 }
Example #6
0
 /**
  *
  *
  * @param string pantalla
  * @return
  * @access public
  */
 public function enviarComandoEstado()
 {
     $cmd = new ComandoFlash($this->getPantallaActiva(), $this->getComandoEstado($this->getPantallaActiva()), "");
     $this->enviarPeticion($cmd->getComando());
 }
 /**
  * Metodo para crear y enviar el estado de la camara de documentos a la pantalla
  *
  * @access public
  */
 public function enviarComandoEstado()
 {
     $comando = new ComandoFlash("CAMARADOC", $this->getEstado(), "");
     $this->enviarPeticion($comando->getComando());
 }
 /**
  *
  *
  * @return
  * @access public
  */
 public function enviarNuestroSonido()
 {
     $cmd = new ComandoFlash("VIDEOCONFERENCIA", "NUESTRO_SONIDO", $this->getNuestroSonido());
     $this->enviarPeticion($cmd->getComando());
 }
 /**
  * Metodo para desmutear el proyector de la pizarra
  *
  * @access public
  */
 public function activarPizarra()
 {
     $respuesta = self::$pizarra->desmutear();
     $cmd2 = new ComandoFlash("PIZARRA_DIGITAL", "NO_MUTE");
     $bb = $cmd2->getComando();
     SocketClass::client_reply($bb);
     /*if(!empty ($respuesta)) {
           if(strcmp($respuesta,"?")==0) {
               echo "ERROR al enviar el comando ".$comando." al proyector de la pizarra, para activarla\n";
               return 1;
           }
           else return 0;
       }else return 1;*/
 }
Example #10
0
 /**
  *
  *
  * @return
  * @access public
  */
 public function enviarComandoEstado()
 {
     $cmd = new ComandoFlash($this->getProyectorActivo(), $this->getEstado($this->getProyectorActivo()), "");
     $this->enviarPeticion($cmd->getComando());
 }
Example #11
0
 /**
      * Metodo que crea el comando con el estado de la videoconferencia y lo envia a
      * la pantalla
 * 
 * @access public
 */
 public function enviarEstadoVideoconferencia()
 {
     $cmd = new ComandoFlash("SISTEMA", "MENU", $this->getEstadoVideoconferencia());
     $this->enviarPeticion($cmd->getComando());
 }
Example #12
0
 /**
  * Metodo que crea el comando necesario para que la pantalla muestre la accion
  * realizada
  *
  * @access public
  */
 public function enviarComando()
 {
     $cmd = new ComandoFlash("PUESTO", $this->getComando(), $this->getPosicion());
     $this->enviarPeticion($cmd->getComando());
 }
Example #13
0
 /**
  * 
  *
  * @return 
  * @access public
  */
 public function enviarEstado()
 {
     $cmd = new ComandoFlash("PLASMA", $this->getEstado(), "");
     $this->enviarPeticion($cmd->getComando());
 }