You need to set the com with a dos command like like:
$output = `mode COM1: BAUD=115200 PARITY=N data=8 stop=1 XON=off TO=on `;
The next command executes the dos command through php:
echo"$output";
Create the resource id:
$fp = fopen('COM1', 'r+');
if(!$fp){
echo"Port not accessible";
}else{
echo"Port COM1 opened successfully";
}
Write to port:
$writtenBytes = fputs($fp, "Hello");
echo"Bytes written to port: $writtenBytes";
Read from port:
$buffer = fgets($fp);
echo"Read from buffer: $buffer";
