Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading COM (Serial Modem) in PHP

Reading COM (Serial Modem) in PHP

I'd need a COM interface (Windows,COM2) to read with PHP.

This Demo is going on. Reading is a problem, it's running sometimes.

Is there an other way (no dio,no C++) maybe w32api_register_function() is better?



    function rs232init($com,$bautrate)
    {
    `mode $com: BAUD=$bautrate PARITY=N data=8 stop=1 xon=off`;
    }

    function send($comport,$char)
    {

         $fp = fopen ("$comport", "w+");
         if (!$fp)
          {
             echo "not open for read";
          }
        else {
                fputs ($fp, $char);
                 fclose ($fp);
                }
    }

    function read($comport2,$sek)
    {

       $buffer = "";

       $fp2 = fopen ("$comport2", "r+");
         if (!$fp2)
         {
       echo "port is open for read";
       }
    else
      {
      sleep($sek);
             $buffer .= fgets($fp2, 4096);
            }
          return $buffer;
          fclose ($fp2);
}


rs232init("com2","9600");
send("com2","3"); 
$a = read("com2","2"); 
echo $a; 
like image 523
mr_sol Avatar asked Nov 14 '22 21:11

mr_sol


1 Answers

The com2 device should be referenced as 'COM2:'

like image 58
symcbean Avatar answered Jan 03 '23 05:01

symcbean