dio_out()


지정된 DO 포트에 출력 수행

Description

void dio_out(int $pin, int $type)

Parameters

Return Value

없음

Example

<?php
include "/lib/sd_204.php";
dio_out(DO_0, HIGH);  // 0번 출력포트(DO_0)에 HIGH 출력(ON)
sleep(1);
dio_out(DO_0, LOW);  // 0번 출력포트에 LOW 출력(OFF)
?>

See also