Читает значение назначенного порта
int dio_in(int $pin)
Возвращает 2, когда состояние HIGH и 0, когда состояние порта LOW
<?php
include "/lib/sd_204.php";
echo dio_in(DI_0), "\r\n"; // Reading the port 0 of the DI
echo dio_in(DI_1), "\r\n"; // Reading the port 1 of the DI
?>