Expanded Firmware Support in zwave-js-server #92
Replies: 2 comments 1 reply
-
|
Hi @pnpebeling The server its self - is not my project, it's a project indeed of the org, but not in my tent so to speak of the camp. @pnpebeling
var NewMethod = ZWaveJS.NET.MethodFactory.CreatePRIMITIVE(DriverInstance,"controller.some_not_baked_in_method","result.some_path");
Dictionary<string,object> Args = new Dictionary<string, object>();
Args.Add("nodeId",5);
Args.Add("data", new byte[2]{0x01,0x02});
NewMethod(Args).ContinueWith(....) // primitiveExcluding
The resulting value from the path, is what is evaluated Hope this helps |
Beta Was this translation helpful? Give feedback.
-
Can you share which APIs are missing? I found one |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Before the project moves away from V4, how difficult would it be to include a zwave-js-server with expanded firmware support? There are numerous firmware APIs that are not exposed by js-server and thus unavailable in ZWaveJS.NET. I'm not necessarily asking for a roll of ZWaveJS.NET, just a version which includes a JS-server in which the firmware APIs are available. I have made one or two custom additions to ZWaveJS.NET, so I'm relatively confident I can add the additional firmware support in ZWaveJS.NET, but without server support I'm stuck. thanks
-p
Beta Was this translation helpful? Give feedback.
All reactions