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.
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I think you might need to specify a length:
That way you can tell it that it can take more data.