MRIIOT
MRIIOT
@sdstncl For simplicity, can you spin up NodeRed and install the [modbus](https://flows.nodered.org/node/node-red-contrib-modbus) node? The flow would look something like this:  Once you can read data using a TCP client,...
@sdstncl Here are some alternatives: JS https://github.com/Ladder99/ladder99/tree/main/services/adapter .NET https://github.com/TrakHound/MTConnect.NET (used in Fanuc-Driver https://github.com/Ladder99/fanuc-driver/blob/main/fanuc/transports/SHDR.cs)
``` version: "3.9" services: agent: build: ./agent network_mode: "host" ports: - "5001:5000" testdevice: build: ./adapter/tests/test_device ports: - "5005:5000" ``` I wouldn't expect agent in host mode to resolve default bridge...
If testdevice is an agent and keeping compose file the same: ``` Adapters { # Log file has all machines with device name prefixed device { Url = http://localhost:5005 SourceDevice...
This should install the Agent using Windows service controller. ``` sc.exe create mtconnect-agent binpath= "c:\mtconnect\agent.exe run c:\mtconnect\agent.cfg" DisplayName= "MTConnect Agent" start= auto ``` And you'll want to change the user...
It should have validated based on below. It wouldn't have validated if you had 'X:' instead of 'x:'. ``` Extended tyoe for The types of measurements available The types of...
> `for name in people | array.filter @(do; ret $0 | string.starts_with 'H'; end)` What would this syntax look like if it's an array of ints and I wanted to...
Are they going into the ether? https://ci.appveyor.com/project/facontidavide59577/plotjuggler/builds/48759939/artifacts
@asthomas Is this still the case if you run against protobuf 2 and not 3?
@asthomas thoughts on what needs to change ?