php.net/manual/en/book.dio.php
ก่อนจะดำเนิดการต้องทำการ download packet IO ของ PHP ให้ตรงกับ version php ที่ใช้อยู่นะครับ
เพิ่อทำการติดตั่งก่อน จากนั้นทำการ ดำเนินการเปิดการใช้งานใน PHP.ini
-----------------------------------------------------------------
exec('mode COM4: baud=4800 data=7 stop=1 parity=e xon=off to=on');
function getLoadCellWeight(){
$ret = "";
$fd = dio_open('COM4:', O_RDONLY);
$ret = dio_read($fd, 16);
dio_close($fd);
return $ret;
}
print "display value : ".getLoadCellWeight();