在 Ditto 中创建数字孪生时可以添加自定义功能,如下所示。
"attributes": {
"location": "Germany"
},
"features": {
"temperature": {
"properties": {
"value": 100
}
},
"humidity": {
"properties": {
"value": 100
}
}
},
"BuiltinFuntion": {
if(Temparature > 20){
alert("Some message")
}
}
注意:一种解决方案是不断检查 Ditto HTTP API 值,并在超过阈值时发出警报消息。但我不想每次都访问 API。所以请让我知道是否有任何替代解决方案。