Quickstart
Step 1: Create a Device Profile
function Decoder(bytes, port) { // Simple 4-byte Lat/Lon decoder return { latitude: (bytes[0] << 24 | bytes[1] << 16 | bytes[2] << 8 | bytes[3]) / 1000000.0, longitude: (bytes[4] << 24 | bytes[5] << 16 | bytes[6] << 8 | bytes[7]) / 1000000.0, battery: bytes[8] }; }
Step 2: Register your Device
Step 3: Configure your Device
Step 4: Visualize Real-time Data
Next Steps
Last updated