Configuration of CC Notification#

Modules#

_cc_notification_t

Enumerations#

enum
NOTIFICATION_STATUS_UNSOLICIT_DEACTIVATED = 0x00
NOTIFICATION_STATUS_UNSOLICIT_ACTIVATED = 0xFF
}

Notification status.

Functions#

Returns the address of the first element in the notification array.

uint8_t

Returns the number of elements in the notification array.

uint8_t

Returns the total number of supported events for all notifications.

cc_notification_get(uint8_t index)

Returns the address of the notification located at the given index in the notification array.

int8_t
cc_notification_get_index_by_type_and_endpoint(notification_type_t type, uint8_t endpoint)

Returns the index of a notification based on given type and endpoint.

Returns the notification type from the given index.

Returns the current event of a notification given by the index in the notification array.

Returns the AGI profile of a notification given by the index in the notification array.

uint8_t

Returns endpoint of a notification given by the index in the notification array.

Returns the status (on/off) of a notification given by the index in the notification array.

bool
cc_notification_is_type_supported(notification_type_t type)

Returns whether a notification exists in the notification array based on a given notification type.

int8_t
cc_notification_find_event(uint8_t event, uint8_t index)

Returns the index of a given event, if supported, for a given notification index.

uint8_t

Returns the number of configured events for a given notification index.

Enumeration Documentation#

NOTIFICATION_STATUS#

NOTIFICATION_STATUS

Notification status.

Enumerator
NOTIFICATION_STATUS_UNSOLICIT_DEACTIVATED
NOTIFICATION_STATUS_UNSOLICIT_ACTIVATED

Definition at line 28 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

Typedef Documentation#

notification_event_state#

typedef uint8_t notification_event_state

Definition at line 23 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_t#

typedef struct _cc_notification_t cc_notification_t

Definition at line 43 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

Function Documentation#

cc_notification_get_config#

cc_notification_t * cc_notification_get_config (void)

Returns the address of the first element in the notification array.

Parameters
N/A

Returns

  • First element in the notification array.


Definition at line 49 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get_config_length#

uint8_t cc_notification_get_config_length (void)

Returns the number of elements in the notification array.

Parameters
N/A

Returns

  • Number of elements in the notification array.


Definition at line 55 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get_supported_events_length#

uint8_t cc_notification_get_supported_events_length (void)

Returns the total number of supported events for all notifications.

Parameters
N/A

Returns

  • Total number of supported events.


Definition at line 61 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get#

cc_notification_t * cc_notification_get (uint8_t index)

Returns the address of the notification located at the given index in the notification array.

Parameters
[in]index

Index in the notification array.

Returns

  • Address of notification.


Definition at line 68 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get_index_by_type_and_endpoint#

int8_t cc_notification_get_index_by_type_and_endpoint (notification_type_t type, uint8_t endpoint)

Returns the index of a notification based on given type and endpoint.

Parameters
[in]type

Notification type.

[in]endpoint

Endpoint.

Returns

  • Index of notification.


Definition at line 76 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get_type#

notification_type_t cc_notification_get_type (uint8_t index)

Returns the notification type from the given index.

Parameters
[in]index

Index in the notification array.

Returns

  • Notification type.


Definition at line 83 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get_current_event#

notification_event_state cc_notification_get_current_event (uint8_t index)

Returns the current event of a notification given by the index in the notification array.

Parameters
[in]index

Index in the notification array.

Returns

  • Current event.


Definition at line 90 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get_agi_profile#

agi_profile_t cc_notification_get_agi_profile (uint8_t index)

Returns the AGI profile of a notification given by the index in the notification array.

Parameters
[in]index

Index in the notification array.

Returns

  • AGI profile.


Definition at line 97 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get_endpoint#

uint8_t cc_notification_get_endpoint (uint8_t index)

Returns endpoint of a notification given by the index in the notification array.

Parameters
[in]index

Index in the notification array.

Returns

  • Endpoint.


Definition at line 104 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_get_status#

NOTIFICATION_STATUS cc_notification_get_status (uint8_t index)

Returns the status (on/off) of a notification given by the index in the notification array.

Parameters
[in]index

Index in the notification array.

Returns


Definition at line 112 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_is_type_supported#

bool cc_notification_is_type_supported (notification_type_t type)

Returns whether a notification exists in the notification array based on a given notification type.

Parameters
[in]type

Notification type.

This function is used to check whether incoming CC Notification commands must be discarded or not. Returns

  • true if available,


Definition at line 122 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_find_event#

int8_t cc_notification_find_event (uint8_t event, uint8_t index)

Returns the index of a given event, if supported, for a given notification index.

Parameters
[in]event

Event to be found.

[in]index

Notification index in notifications array

Returns

  • Returns event index if found

  • Returns -1 if the event is not supported for the given notification index.


Definition at line 132 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h

cc_notification_config_get_number_of_events#

uint8_t cc_notification_config_get_number_of_events (uint8_t index)

Returns the number of configured events for a given notification index.

Parameters
N/Aindex

Notification index.

Returns

  • Number of configured events.


Definition at line 140 of file /mnt/raid/workspaces/ws.WH1KakGoP/overlay/gsdk/protocol/z-wave/ZAF/CommandClasses/Notification/src/cc_notification_config_api.h