Colin Law
Colin Law
I see that the version of onvif being installed (0.6.0) is pretty old, would it be worth trying the latest (0.6.2)? I tried to modify the package.json in node-red-contrib-onvif-nodes but...
I have tried modifying package.json to pull in [email protected] but that did not help. Having hacked into the onvif node lib/utils.js and added some debug I can see that parseSOAPStringCallback...
I have tried modifying package.json to pull in [email protected] but that did not help. Having hacked into the onvif node lib/utils.js and added some debug I can see that parseSOAPStringCallback...
Sorry, this is all my own fault, I had forgotten that this camera requires authorisation details to connect. When I put those in all is well. There is arguably a...
I have done some more testing, and determined that the symptom remains absolutely consistent. In node-red-mcu/nodes/rpi-ds18b20/rpi-ds18b20.js the relevant code is ``` const items = this.#bus.search(); for (let i = 0;...
I only have one sensor connected at the moment, it always returns 1 when it is working and 0 when it isn't. I think I have another sensor somewhere I...
Bingo! With the code looking like ``` const items = this.#bus.search(); trace(`search: ${items.length}\n`); trace(`search: ${this.#bus.search().length}\n`); trace(`search: ${this.#bus.search().length}\n`); trace(`search: ${this.#bus.search().length}\n`); trace(`search: ${this.#bus.search().length}\n`); trace(`search: ${this.#bus.search().length}\n`); ``` Then if I remove all the...
When the stuff going on in the background in the other nodes finishes? Or starts? No idea really.
This is just ridiculous. I went back to the situation with just the first two wires in the flow connected, and I get (as I did yesterday) ``` search: 1...
Could this be something to do with `trace()` calls, or the comms associated with that? I replaced the code with ``` const items = this.#bus.search(); let results = [items.length] for...