Paso 12: Enviar datos al MCU mediante protocolo. (Uso BLUNO de ElecFreaks)
En el directorio src, crear Transmitter.java, agregando la función construida con dos parámetros como abajo:
public Transmitter(Context context, BluetoothHandler bluetoothHandler){ this.context = context; this.mBluetoothHandler = bluetoothHandler; }
¿Cómo agregar sendData()?
private void sendData(byte[] bytes){ mBluetoothHandler.sendData(bytes); }