WolkLoRa
1.0.0
Wolklora Repo는 Arduino Ide 예제로 구성되어 Things Network와 연결됩니다. RN2483-Arduino-Library를 기반으로합니다. 장치 측정 하스 비트 이벤트의 환경 온도 데이터. 이 데이터는 apropiated decoder (아래의 애플리케이션 디코더로 설명) 및 Wolkabout IoT 플랫폼 마법사를 사용하여 TTN에서 Wolkabout IoT 플랫폼으로 라우팅 될 수 있습니다.
중고 하드웨어 :
펌웨어 종속성 :
다음 Arduino Libs 설치 (방법) :
파일 포함 :

TTN에서 Wolkabout IoT 플랫폼으로 데이터를 라우팅하려면 Wolkabout IoT Platofrm에서 장치를 작성하고 Decoder를 따라 TTN 애플리케이션 의 페이로드 형식 섹션으로 복사하십시오. Methode '.t'Over var decoded 의 이름은 Wolkabout IoT 플랫폼에서 장치의 참고 문헌 입니다.
function Decoder(bytes, port) {
// Decode an uplink message from a buffer
// (array) of bytes to an object of fields.
var decoded = {};
var type = bytes[0];
switch (type) {
case 1:
decoded.T = bytes[1] + bytes[2]/100;
break;
default:
decoded.T = bytes[0];
}
return decoded;
}