Node.iRemocon 제어 메모
3850 단어 Node.jsJavaScriptiremocon
http://i-remocon.com/
IRKit 같은 거.적외선 전파를 배우고 사용할 수 있어 네트워크와 가전제품을 연결할 수 있습니다.
Node.js부터 사용하려면 Hecominode-iRemocon가 유용합니다.
차리다
$ npm i iremocon
시험해 보다
아이폰 앱 등으로 IP 주소를 미리 알면 금방(이번
172.16.12.232
은 IP)적외선 전파의 기억
설정
ir001
시app.js
var iRemocon = new require('iRemocon');
var iremocon = new iRemocon('172.16.12.232');
iremocon.ic('ir001', function(err, msg) {
if (err) {
console.error(err.code, err.error, err.detail);
// e.g. 003 受信エラー 不正なリモコンデータを受信した
return;
}
console.log(msg);
// e.g. ic;ok
});
이렇게 하면 ir001
이라는 채널에 저장할 수 있다.적외선 전파의 송신
메시지를 보낼 때는 다음과 같다.
app.js
var iRemocon = new require('iRemocon');
var iremocon = new iRemocon('172.16.12.232');
iremocon.is('ir001', function(is){
console.log(is);
});
Reference
이 문제에 관하여(Node.iRemocon 제어 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/n0bisuke/items/a31ecb1259e6b5830960텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)