You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 30, 2025. It is now read-only.
Please help me
I am sending the following command
http://192.168.0.51:1880/execute/12345678/SALA/tv
the server responds this way
Error while performing command "tv": No device found at 78:0f:77:18:1b:8f
My Setup index.js
"use stict";
const PORT = process.env.PORT || 1880;
const BroadlinkServer = require('broadlink-rm-http');
const commands = require('./commands');
const key = "12345678";
var rooms = [];
rooms["SALA"] = {host:"78:0f:77:18:1b:8f",groups:["SALA"]};
let app = BroadlinkServer(commands, key, rooms);
app.listen(PORT);
console.log('Server running, go to http://localhost:' + PORT);
My setup commands.js
module.exports =[
{"command":"tv","group":"SALA","data":"2600d200969214351535143317101510141114101510153415351535141015$
];