SmartConnector Forum
Schneider Electric support forum about SmartConnector applications for integration of other building management systems (BMS) into EcoStruxure Building Operation.
Link copied. Please paste this link to share this article on your social media post.
Is it possible to get alarm state from Continuum points under an ASP with the SmartConnector Endpoint? I've tried everything that made sense to me (please refer to my last post)
When I use the endpoint to give me all the children in a container (GET /Containers/{id}/Children) no alarm points are returned (at least nothing that starts with a 02/) and when I poll for the value of the continuum point (GET /Values/{id}) I get no indication of the alarm status in the response.
Link copied. Please paste this link to share this article on your social media post.
I got with Jeff and we discovered a way to get the alarm value for continuum alarms that are under ASPs.
Basically you can poll for the alarm value of a point instead of requesting its actual value.
Example:
Relative Humidity Continuum Point Under an ASP using the Smart Connector Endpoint (GET /Values/{id})
Path for the value : 01/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest
Response:
{
"Name": "SpaceRHWest",
"Description": "Space Relative Humidity",
"Type": 3,
"Writeable": 1,
"Forceable": 0,
"State": 0,
"Unit": "none",
"Value": "62.0489959716797",
"ParentId": "00/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application", "Id": "01/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest"
}
Path for the alarm value : 11/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest/AlarmValue
{
"Name": "SpaceRHWest-AlarmValue",
"Description": "AlarmValue",
"Type": 5,
"Writeable": 0,
"Forceable": 0,
"State": 0,
"Unit": "none",
"Value": "0", (Value would be 1 if the point was in alarm)
"ParentId": "00/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest",
"Id": "11/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest/AlarmValue"
}
Link copied. Please paste this link to share this article on your social media post.
Hi!
From what I understand, this should be possible, however at this point, I think I need to see what you are looking at to see if I can determine if there is a way, or if there might be some sort of bug in EBO.
Please send me an email to jeff.bowman@se.com and we can schedule a call.
Best Regards,
-Jeff
Link copied. Please paste this link to share this article on your social media post.
I got with Jeff and we discovered a way to get the alarm value for continuum alarms that are under ASPs.
Basically you can poll for the alarm value of a point instead of requesting its actual value.
Example:
Relative Humidity Continuum Point Under an ASP using the Smart Connector Endpoint (GET /Values/{id})
Path for the value : 01/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest
Response:
{
"Name": "SpaceRHWest",
"Description": "Space Relative Humidity",
"Type": 3,
"Writeable": 1,
"Forceable": 0,
"State": 0,
"Unit": "none",
"Value": "62.0489959716797",
"ParentId": "00/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application", "Id": "01/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest"
}
Path for the alarm value : 11/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest/AlarmValue
{
"Name": "SpaceRHWest-AlarmValue",
"Description": "AlarmValue",
"Type": 5,
"Writeable": 0,
"Forceable": 0,
"State": 0,
"Unit": "none",
"Value": "0", (Value would be 1 if the point was in alarm)
"ParentId": "00/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest",
"Id": "11/Bldg26_ASP/Infinet Interface/i2NetworkB/AHU_Gym/Application/SpaceRHWest/AlarmValue"
}
Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.