Hello.
Is it possible to send more than 1B data via blinky characteristic from central to peripheral? I made my project with two characteristic (my own 128-bit UUID) basing on blinky peripheral example. First of them is to receive data from central and it has 8B data field, second (notyfying) has 4B and it is to send some data back to central. Everything works fine, I checked on nRF Connect. The problem is on central side. I try to send data by "uint32_t ble_lbs_led_status_send (ble_lbs_c_t * p_ble_lbs_c, uint8_t status)" but the length of data (BLE_CCCD_VALUE_LEN) is defined on "ble_srv_common.h" So I probably should not modified this field. I don't know is that correct that i try to modyfied blinky example? Maybe I should try with uart example? Which example will be better to? My goal is to make comunication with one central and one peripheral on my own many-bytes characteristics. But in the nearest future i want to make communication with 6-8 peripherals.
Best regards.