"Thread border router required" with Eve and Matter

Edit:
Your value of thread_credentials_set is false. Maybe this will be a problem…

Good!
Bring the eve device in range of the bluetooth signal of your rapsi. And we hope, that your bluetooth is working…
In step 3 you will commission the matter server with the eve device matter pairing code, like this (just change the network address and post result here with a screenshot):

var socket = new WebSocket("ws://192.168.2.130:5580/ws");
socket.addEventListener("message", (event) => {
    console.log("Message from server ", event.data);
});

socket.addEventListener("open", (event) => {
    console.log("WebSocket is open");
    var message = {
        "message_id": "2",
        "command": "commission_with_code",
        "args": {
            "code": "33976113343"
        }
    };
    socket.send(JSON.stringify(message));
});
3 Likes