Welcome to mirror list, hosted at ThFree Co, Russian Federation.

appli_generic_client.c « app « STM32_WPAN « BLE_MeshLightingDemo « BLE « Applications « P-NUCLEO-WB55.USBDongle « Projects - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c36b22949794d92e30217b7248d1e46006ddc3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
******************************************************************************
* @file    appli_generic_client.c
* @author  BLE Mesh Team
* @brief   Application interface for Generic Mesh Models 
******************************************************************************
* @attention
*
* <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under Ultimate Liberty license
* SLA0044, the "License"; You may not use this file except in compliance with
* the License. You may obtain a copy of the License at:
*                             www.st.com/SLA0044
*
******************************************************************************
*/

/* Includes ------------------------------------------------------------------*/
#include "hal_common.h"
#include "types.h"
#include "appli_generic.h"
#include "appli_light.h"
#include "common.h"
#include "mesh_cfg_usr.h"
#include "appli_nvm.h"
#include "appli_mesh.h"
#include "generic_client.h"
#include "appli_generic_client.h"

/** @addtogroup ST_BLE_Mesh
*  @{
*/

/** @addtogroup Application_Mesh_Models
*  @{
*/

/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/

MOBLEUINT8 Led_Value;
/* Private function prototypes -----------------------------------------------*/
MOBLE_RESULT Appli_GenericClient_OnOff_Set(void);
/* Private functions ---------------------------------------------------------*/

/**
* @brief  Appli_Generic_OnOff_Set: This function is callback for Application
*          when Generic OnOff message is called
* @param  void
* @retval MOBLE_RESULT
*/ 
MOBLE_RESULT Appli_GenericClient_OnOff_Set(void) 
{ 
  MOBLE_ADDRESS elementAddr = 0; 
  MOBLEUINT8 pGeneric_OnOffParam[2];
   
  Led_Value ^= APPLI_LED_ON;
  pGeneric_OnOffParam[0] = Led_Value;
  GenericClient_OnOff_Set_Unack(elementAddr,
                          (_Generic_OnOffParam*) pGeneric_OnOffParam, 
                          sizeof(pGeneric_OnOffParam) ); 
     
  return MOBLE_RESULT_SUCCESS;
}

#ifdef ENABLE_GENERIC_MODEL_CLIENT_LEVEL
/**
* @brief  Appli_Generic_Level_Set: This function is callback for Application
*          when Generic Level message is called
* @param  void: 
* @retval MOBLE_RESULT
*/ 
MOBLE_RESULT Appli_GenericClient_Level_Set_Unack(void) 
{ 
  MOBLE_ADDRESS elementAddr = 0; 
  MOBLEUINT8 pGeneric_LevelParam[3];
  
  Appli_IntensityControlPublishing(pGeneric_LevelParam);
  GenericClient_Level_Set_Unack(elementAddr,
                          (_Generic_LevelParam*) pGeneric_LevelParam, 
                          sizeof(pGeneric_LevelParam));
    
  return MOBLE_RESULT_SUCCESS;
}

#endif

/**
* @}
*/

/**
* @}
*/

/******************* (C) COPYRIGHT 2017 STMicroelectronics *****END OF FILE****/