led_in()


지정된 LED 포트의 상태를 반환

Description

void led_in(int $pin)

Parameters

Return Value

HIGH일 때 1, LOW일 때 0

Example

<?php
include "/lib/sd_101.php";
led_setup(LED_A, "in");    // LED_A를 입력으로 설정
$state = led_in(LED_A);  // LED_A의 상태를 확인
?>

See also