Help for this page

Select Code to Download


  1. or download this
    $PortName = 'COM1';
    $Baudrate = 9600;
    ...
        print $^E;
        exit
    }
    
  2. or download this
    sub PowerDown {
        $Port->rts_active(0);
    ...
        undef $Port;
        exit
    }
    
  3. or download this
    sub PowerDown {
        $Port->handshake('none');
    ...
        undef $Port;
        exit
    }