WolkLoRa
1.0.0
Wolklora Repo組成了Arduino IDE示例,該示例與事物網絡建立了連接。它基於RN2483-Arduino-Library。設備測量Hearbeat事件中的環境溫度數據。可以使用Apropiated解碼器(以下為應用程序解碼器)和Wolkabout IoT Platform嚮導將此數據從TTN到Wolkabout IoT平台。
二手硬件:
固件依賴性:
安裝以下Arduino libs(如何):
包括文件:

要將數據從TTN路由到Wolkabout IoT平台在Wolkabout IoT Platofrm上創建設備,然後將Dexoder的副本複製到TTN應用程序上的有效負載格式中。請注意,Methode'.T '的名稱在VAR解碼上是從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;
}