입력포트 감시


입력포트 감시를 위한 spc_request_dev함수 호출

spc_request_dev($sid, $cmd);

명령어 구조는 다음과 같습니다.

"get $port input"

반환 값

정상적인 반환 값은 문자열 형태로써 다음과 같습니다.

반환 값 설명
0 OFF
1 ON

사용 예

<?php
include "/lib/sd_spc.php";
spc_reset();
spc_sync_baud(115200);
$sid = 1;

// get status of input ports
echo "Port 0: ", spc_request_dev($sid, "get 0 input"), "\r\n";
echo "Port 1: ", spc_request_dev($sid, "get 1 input"), "\r\n";
echo "Port 2: ", spc_request_dev($sid, "get 2 input"), "\r\n";
echo "Port 3: ", spc_request_dev($sid, "get 3 input"), "\r\n";
?>

출력 결과(예)

Port 0: 0
Port 1: 1
Port 2: 0
Port 3: 1