if you do not want anything more with BLE shield and print strings
void WriteBLE(String message)
{
if ( ble_connected() )
{
byte bericht[message.length()+1];
message.getBytes(bericht, message.length()+1);
ble_write_bytes(bericht, sizeof(bericht));
}
ble_do_events();
delay(10);
}