로딩
요청 처리 중입니다...

81. [Nodejs] Nodejs - Noble library : Cannot read property 'length' of undefined

 81. [Nodejs] Nodejs - Noble library : Cannot read property 'length' of undefined

라즈베리파이에서 BLE에 연결해서 뭔가를 하고 싶을 때에는 nodejs가 가장 무난하다. 자바에서는 블루투스 device를 직접 detect 하는 방법은 없는 걸로 알고 있어서(안드로이드가 아니다) noble을 사용했는데, 아래의 오류를 만났다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ERROR: buffer.js:491 ERROR: length += buf.length; ERROR: ^ ERROR: TypeError: Cannot read property 'length' of undefined at Function.Buffer.concat (buffer.js:491:20) at Object.c1 (/home/root/node_modules/noble/lib/hci-socket/crypto.js:8:19) at Smp.handlePairingResponse (/home/root/node_modules/noble/lib/hci-socket/smp.js:86:12) ...