uio_out()


지정된 UIO 핀의 출력 수행

Description

void uio_out(int $uio_id, int $pin, int $type)

Parameters

Return Value

없음

Example

<?php
include "/lib/sd_340.php";
uio_setup(0, 0, "out");  // UIO0의 0번 핀을 출력포트로 설정
uio_out(0, 0, HIGH);  // UIO0의 0번 핀에 HIGH 출력
sleep(1);
uio_out(0, 0, LOW);  // UIO0의 0번 핀에 LOW 출력
?>

See also