Lc client for nrf52840 dongle is available in which sdk
Hi,
Are you talking about Bluetooth Mesh? If so, there is no LC client example in our Mesh SDK. There are a LC client model in our SDK that you can implement into your project yourself. You can find the model under models\model_spec\light_lc\ in the SDK.
Hi,
can you explain how to use the lc property commands on the client side and how it will interact with server to give response
(void)access_model_reliable_cancel(m_clients[0].model_handle);
transition_params.delay_ms = 50;
transition_params.transition_time_ms = 100;
status=light_lc_client_property_set(&m_clients[0],&pro_set_params);
if(status !=NRF_SUCCESS)
printf("\nfailed at client property set\n");
else
printf("\nsuccess\n");
break;
using this command to set the property but not getting the response from the server
from the logs it is getting as ACCESS_RELIABLE_TRANSFER_TIMEOUT msg please let me how to solve this problem
Thanks in advance...
Hi,
can you explain how to use the lc property commands on the client side and how it will interact with server to give response
(void)access_model_reliable_cancel(m_clients[0].model_handle);
transition_params.delay_ms = 50;
transition_params.transition_time_ms = 100;
status=light_lc_client_property_set(&m_clients[0],&pro_set_params);
if(status !=NRF_SUCCESS)
printf("\nfailed at client property set\n");
else
printf("\nsuccess\n");
break;
using this command to set the property but not getting the response from the server
from the logs it is getting as ACCESS_RELIABLE_TRANSFER_TIMEOUT msg please let me how to solve this problem
Thanks in advance...