IoTGateway接入第三方物联网平台之ThingsPanel

360影视 2025-01-14 09:31 2

摘要:IoTGateway是开源开放的跨平台工业物联网网关,通过可视化配置,南向的连接到你的任何设备和系统(如PLC、扫码枪、上位机、OPC Server等)。

IoTGateway开源开放跨平台工业物联网网关,通过可视化配置,南向的连接到你的任何设备和系统(如PLC、扫码枪、上位机、OPC Server等)。

为让使用者快速掌握北向对接各种物联网平台的能力,本文以接入ThingsPanel为例进行扩展实操。

ThingsPanel是基于Go语言的优秀的开源物联网平台。

docker-compose.yml文件https://github.com/ThingsPanel/thingspanel-docker/blob/main/docker-compose.yml

启动容器

docker-compose up -d

访问8080端口,使用租户管理员登录

用户名tenant@tenant.cn

密码123456

在设备连接tab查看并记录MQTT Username和MQTT ClientID关联后,记录子设备地址

iotgateway\IoTGateway.Model\SystemConfig.cs\IoTPlatformType

参考其他Handler,添加ThingsPanelHandler

iotgateway\Plugins\Plugin\PlatformHandler\ThingsPanelHandler.cs

publicasyncTaskPublishTelemetryAsync(stringdeviceName, Device device, Dictionarystring, ListPayLoadsendModel)
{
foreach(varpayloadinsendModel[deviceName])
{
if(payload.Values!=)
{
vartelemetryData=newDictionarystring, Dictionarystringobject
{
{
"sub_device_data"newDictionarystringobject
{
{ deviceName, payload.Values }
}
}

};
awaitMqttClient.EnqueueAsync(newMqttApplicationMessageBuilder.WithTopic($"gateway/telemetry")
.WithPayload(JsonConvert.SerializeObject(telemetryData)).Build);
}
}
}

iotgateway\Plugins\Plugin\PlatformHandler\PlatformHandlerFactory.cs\PlatformHandlerFactor

caseIoTPlatformType.ThingsPanel:
returnnewThingsPanelHandler(mqttClient, logger, onExcRpc);修改后,运行iotgateway项目,添加设备,注意设备名使用第8步的子设备地址输出平台选择ThingsPanel,用户名、ClientId,使用第6步的MQTT Username和MQTT ClientID,密码

来源:opendotnet

相关推荐