提问者:小点点

将模块部署到iot边缘设备时出错(错误代码:参数无效)


我正在尝试将Modbus模块从物联网集线器部署到物联网边缘设备,但我遇到了一些困难。

我使用的Docker映像:

mcr.microsoft.com/azureiotedge/modbus:1.0

容器创建选项:(我使用过这个,因为我正在使用这个模块从modbus rtu设备读取数据)

{
  "HostConfig": {
    "Devices": [
      {
        "PathOnHost": "/dev/ttyS0", 
        "PathInContainer": "/dev/ttyS0",
        "CgroupPermissions": "rwm"
      }
    ]
  }
}

模块缠绕会议:

{  
      "properties.desired":{
        "PublishInterval": "5000",
        "SlaveConfigs": {
          "Slave01": {
            "SlaveConnection": "<IPV4 address>",
            "TcpPort": "502",
            "RetryCount": "10",
            "RetryInterval": "100",
            "HwId": "PowerMeter-0a:01:01:01:01:01",
            "Operations": {
              "Op01": {
                "PollingInterval": "2000",
                "UnitId": "1",
                "StartAddress": "400001",
                "Count": "2",
                "CorrelationId": "MessageType1",
                "DisplayName": "Voltage"
              },
              "Op02": {
                "PollingInterval": "2000",
                "UnitId": "1",
                "StartAddress": "400002",
                "Count": "2",
                "CorrelationId": "MessageType2",
                "DisplayName": "Current"
              }
            }
          },
          "Slave02": {
            "SlaveConnection": "/dev/ttyS0",
            "RetryCount": "10",
            "RetryInterval": "50",
            "HwId": "mfm",
            "BaudRate": "9600",
            "DataBits": "8",
            "StopBits": "1",
            "Parity": "NONE",
            "FlowControl": "NONE",
            "Operations": {
              "Op01": {
                "PollingInterval": "2000",
                "UnitId": "1",
                "StartAddress": "40001",
                "Count": "2",
                "DisplayName": "Voltage"
              },
              "Op02": {
                "PollingInterval": "2000",
                "UnitId": "1",
                "StartAddress": "40002",
                "Count": "2",
                "DisplayName": "Current"
              }
            }
          }
        }
      }
    }

错误:

Set Modules

An error occurred while submitting. The request contained incorrectly formatted information.

Details: ErrorCode:Argumentinvalid; Property or Tag name has invalid characters. Error in Property/Tag properties.desired. Must not contain Control Characters,

'.', '$', '#', or ''.

带有教程的GitHub链接


共1个答案

匿名用户

似乎你应该在你的JSON中把“期望”作为一个单独的节点。例如: