arduino_bt_pcs

arduino_bt_pcs

c.s.park
Jun 17, 2024
  • 1.8 MB

    File Size

  • Android 7.0+

    Android OS

About arduino_bt_pcs

Arduino Bluetooth UI

Install the Bluetooth module on the Arduino board, connect the Bluetooth communication between the mobile phone and the Arduino by operating this app on the mobile phone, and then press various buttons provided in the mobile phone to recognize the button presses on the Arduino and perform the desired operation. An app that lets you do

- Single button: 10 (2 each can be combined in pairs to control 5 types of ON/OFF states)

- Number and alphabet input window and send button to send it to Arduino

(Data transmitted to Arduino when each button is pressed)

A ON button: a. A OFF button: A.

B ON button: a. B OFF button: B.

C ON button: a. C OFF button: C.

D ON button: a. D OFF button : D.

E ON button: a. E OFF button: E.

Send button: Added . to the character/numeric string entered on the left

* The . added at the end is treated as the end of transmission in the Arduino program.

(Program example in Arduino)

The LED connected to digital port 5 of the Arduino flickers with the A ON and A OFF buttons.

Include SoftwareSerial.h at the beginning.

SoftwareSerial BT(2, 3); // Arduino D2 (RX) is connected to pin 2 (TX) of the Bluetooth module,

// Arduino D3 (TX) is connected to pin 1 (RX) of the Bluetooth module

char inData[10];

int led1 = 5;

int i=0;

void setup() {

Serial.begin(9600); // for uno 9600

BT. begin (9600); // for uno 9600

for(int i=0; i<5; i++){

pinMode(5+i, OUTPUT);

digitalWrite(5+i, LOW);

}

}

void loop() {

while (BT.available() > 0)

{

char recieved = BT.read(); // read 1 byte

inData[i++] = recieved;

if (received == '.')

{

Serial.print(inData);

inData[i] = '\0'; // Clear recieved buffer

i = 0;

}

}

// LED1 on/off

if(strcmp(inData,"a.")==0)

{

digitalWrite(led1, HIGH);

}

if(strcmp(inData,"A.")==0)

{

digitalWrite(led1, LOW);

}

}

Show More

What's new in the latest 1.0.0

Last updated on 2024-06-17
22.11.7 Version 1.0.0 출시
Show More

Videos and Screenshots

  • arduino_bt_pcs poster
  • arduino_bt_pcs screenshot 1
  • arduino_bt_pcs screenshot 2
  • arduino_bt_pcs screenshot 3
  • arduino_bt_pcs screenshot 4
  • arduino_bt_pcs screenshot 5
  • arduino_bt_pcs screenshot 6
  • arduino_bt_pcs screenshot 7

arduino_bt_pcs APK Information

Latest Version
1.0.0
Category
Education
Android OS
Android 7.0+
File Size
1.8 MB
Developer
c.s.park
Available on
Safe & Fast APK Downloads on APKPure
APKPure uses signature verification to ensure virus-free arduino_bt_pcs APK downloads for you.

Old Versions of arduino_bt_pcs

APKPure icon

Super Fast and Safe Downloading via APKPure App

One-click to install XAPK/APK files on Android!

Download APKPure
thank icon
We use cookies and other technologies on this website to enhance your user experience.
By clicking any link on this page you are giving your consent to our Privacy Policy and Cookies Policy.
Learn More about Policies