Andruino Bluetooth 1.5.3

Now you can use this app to connect to your Andruino board via bluetooth! You must be paired with the Arduino board. In most cases, the default PIN in a Arduino Bluetooth Module is 1234. You must use a HC-05 Bluetooth module.

-----------------------------------------------------
Example Sketch:
-----------------------------------------------------
#include

SoftwareSerial bluetooth(10, 11);

void setup()
{
bluetooth.begin(9600);
}

void loop()
{
int incomingByte = 0;
String content = "";
char character;

while(bluetooth.available())
{
character = bluetooth.read();
content.concat(character);
}

if (content!="")
{
bluetooth.print(content);
}
delay(100);
}

Celkové hodnocení

Průměr hodnocení
3

Pro hodnocení programu se prosím nejprve přihlaste

Přejít do Google Play

Souhrnné informace o Andruino Bluetooth

  • Verze programu

    1.5.3
  • Autor

  • Potřeba instalace

    ano
  • Velikost souboru

    817 kB
  • Jazyk

    • Angličtina
    • ,
    • Španělština
  • Staženo

    3× celkem
    0× tento měsíc
  • Poslední aktualizace

    16. 12. 2017

Něco jsme propásli?

Dejte nám vědět. Upozornit redakci Stahuj
Velice děkujeme za Vaše podněty