Closed
Description
Following the example in the NRF.updateServices documentation, directly calling updateServices
instead of as a result of a button push:
>NRF.setServices({
: 0xBCDE : {
: 0xABCD : {
: value : "Hello",
: maxLen : 20,
: notify: true
: }
: }
:});
=undefined
>NRF.updateServices({
: 0xBCDE : {
: 0xABCD : {
: value : "World!",
: notify: true
: }
: }
: });
FIXME
Uncaught Error: Unable to find service with UUID 0xabcd
at line 8 col 4
});
^