Configuration API > BS2_GetOsdpStandardActionConfig
[+ 2.9.1] Get the LED/buzzer settings for each action of the OSDP device.
#include "BS_API.h" int BS2_GetOsdpStandardActionConfig(void* context, uint32_t deviceId, BS2OsdpStandardActionConfig* config);
context
: ContextdeviceId
: Device Identifierconfig
: Pointer to store LED/buzzer information of OSDP device
If successfully done, BS_SDK_SUCCESS
will be returned. If there is an error, the corresponding error code will be returned.
int sdkResult = BS2_GetOsdpStandardActionConfig(context_, id, &config); if (BS_SDK_SUCCESS != sdkResult) printf("BS2_GetOsdpStandardActionConfig call failed: %d", sdkResult); return sdkResult;
BS2ErrorCode result = (BS2ErrorCode)API.BS2_GetOsdpStandardActionConfig(sdkContext, deviceID, out config); if (result != BS2ErrorCode.BS_SDK_SUCCESS) Console.WriteLine("Got error({0}).", result); else Console.WriteLine("Call success."); return result;