PHP로 시리얼 포트 통신.
Windows7 기준.
아두이노 제어할 때.
// 시리얼 포트 초기화
exec('mode com3: BAUD=9600 PARITY=n DATA=8 STOP=1 to=off dtr=off rts=off');
// 열어서
$fp = fopen('com3', 'w');
// 문자열 1을 보내고
fwrite($fp, '1');
// 시리얼 포트 닫기
fclose($fp);
'PHP' 카테고리의 다른 글
[PHP] cURL로 header만 요청하기 (0) | 2014.05.15 |
---|---|
[PHP] load average throttle (0) | 2014.05.15 |
[PHP] V8JS 엔진 PHP Extension (0) | 2014.04.07 |
[PHP] json pretty print (0) | 2014.03.18 |
[PHP] MongoDB의 _id로 기간 query 하기 (ObjectId, timestamp, interval, range) (0) | 2014.01.24 |