Added CreateObject and DeleteObject to Load Control object. (#713)

This commit is contained in:
Steve Karg
2024-08-11 19:14:27 -05:00
committed by GitHub
parent ebb8be067f
commit e5307e280c
12 changed files with 1749 additions and 986 deletions
+27
View File
@@ -1942,3 +1942,30 @@ const char *bactext_device_communications_name(unsigned index)
return indtext_by_index_default(
bacnet_device_communications_names, index, ASHRAE_Reserved_String);
}
INDTEXT_DATA bacnet_shed_state_names[] = {
{ BACNET_SHED_INACTIVE, "shed-inactive" },
{ BACNET_SHED_REQUEST_PENDING, "shed-request-pending" },
{ BACNET_SHED_COMPLIANT, "shed-compliant" },
{ BACNET_SHED_NON_COMPLIANT, "shed-non-compliant" },
{ 0, NULL }
};
const char *bactext_shed_state_name(unsigned index)
{
return indtext_by_index_default(
bacnet_shed_state_names, index, ASHRAE_Reserved_String);
}
INDTEXT_DATA bacnet_shed_level_type_names[] = {
{ BACNET_SHED_TYPE_PERCENT, "percent" },
{ BACNET_SHED_TYPE_LEVEL, "level" },
{ BACNET_SHED_TYPE_AMOUNT, "amount" },
{ 0, NULL }
};
const char *bactext_shed_level_type_name(unsigned index)
{
return indtext_by_index_default(
bacnet_shed_level_type_names, index, ASHRAE_Reserved_String);
}