• I think you might need to specify a length:

    NRF.setServices({
      0xEDCB : {
        0xBA98 : {
          maxLen : 20, // <- this line here
          description: "MyCharact",
          writable  : true,
          onWrite : function(evt) {
            eventData = evt.data;
          }
        }
      }
    },
    { advertise: [ 'EDCB' ]});
    

    That way you can tell it that it can take more data.

About

Avatar for Gordon @Gordon started