I am doing a program based on Current Time Application example. But I have a few questions, so I hope you can help me.
First, I am using Battery service together. By the way, why doesn't the current time service add characteristic when the battery service adds the characteristic?
// Add battery level characteristic err_code = battery_level_char_add(p_bas, p_bas_init);
I think it's because battery service is server and current time service is client. Right?
So when I use these two services on GATT, can I operate as a server and a client at the same time?
If I could use either one, would I be able to read the time from the client (e.g., the phone) while using CTS as a server?