top of page
Search
  • Writer's pictureJose Munoz

Bluetooth Pro

Updated: Oct 4, 2018

Bluetooth pro es una nueva aplicación que permite la comunicación de su dispositivo Android con cualquier microcontrolador o dispositivo electrónico.

Recibe y transmite mensaje como un Chat entre su dispositivo Android y su dispositivo electrónico. Bluetooth Pro puede leer los mensajes que envías. Bluetooth pro permite enviar y recibir caracteres alfabéticos y numéricos para realizar el control de su dispositivo electrónicos y microcontroladores a través de la comunicación Bluetooth. 

Los mensajes enviados desde el microcontrolador deben terminar con salto de línea ’\n’. La aplicación Bluetooth Pro es muy fácil de utilizar.

Welcome to your blog post. Use this space to connect with your readers and potential customers in a way that’s current and interesting. Think of it as an ongoing conversation where you can share updates about business, trends, news, and more.



La puedes descargar desde Google Play:

La puedes descargar desde  Amazon:

para probarla utilizando un sistema arduino puedes probar el siguiente código:

#include <LiquidCrystal.h> //String mensaje,mensaje3; #include <SoftwareSerial.h> SoftwareSerial mySerial(11, 12); // RX, TX LiquidCrystal lcd(8, 9, 4,5, 6,7); char inChar; String dato=""; boolean sw=false; int ranNum;  int sw2=100; void setup() {   // put your setup code here, to run once:   lcd.begin(20, 4);   // Print a message to the LCD.   lcd.setCursor(0,0);   lcd.print("RX/TX Bluetooth");    mySerial.begin(9600); } void loop () {    while (mySerial.available() > 0)     {    inChar= mySerial.read();    dato=dato+inChar;    lcd.setCursor(0,1);    //lcd.print("Recibiendo=");    //lcd.setCursor(13,1);     lcd.print(dato);     sw=true;     }     if (sw==true)     {       randomSeed(millis());       sw2=random(0,5);       sw=false;       mySerial.println("excelente Comunicacion con Arduino");       delay(200);     }     dato=""; }

4 views0 comments

Recent Posts

See All

Interview in the Site App of The Day

Electronic Communication - Interview with the developer of a fantastic app : https://appoftheday.downloadastro.com/app/electronic-communication/ Did you have any prior development or coding experience

bottom of page