Package lejos.nxt.comm

Examples of lejos.nxt.comm.BTConnection.openDataOutputStream()


      LCD.refresh();
      return false;
    }
    LCD.drawString("Mulai mengirim", 0, 6);
    LCD.refresh();
    DataOutputStream dos = btc.openDataOutputStream();
    for (int i = 0; i < pesan.length(); i++) {
      char a = pesan.charAt(i);
      LCD.drawString("Yang dikirim " + a, 0, 2);
      dos.writeChar(a);
      // dos.writeInt(a);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.