Hi,
what’s wrong with homeduino v0.9.18? I found that the scripts are modified slightly and not working any more! When I replace the scripts with the old ones from v0.9.11 everything is fine!
Example code snippet from “shutter3.js” located in ~/node_modules/pimatic-homeduino/node_modules/homeduino/node_modules/rfcontroljs/lib/protocols:
old:
return result = {
id: helper.binaryToNumber(binary, 0, 27),
channel: helper.binaryToNumber(binary, 28, 31),
command: command
};
new:
return result = {
id: helper.binaryToNumber(binary, 0, 28),
channel: helper.binaryToNumber(binary, 29, 31),
command: command
};