Search results

  1. H

    How to receive the bluetooth signal from phone?

    include <SoftwareSerial.h> int bluetoothTx = 2; int bluetoothRx = 3; int LED=13; SoftwareSerial bluetooth(bluetoothTx, bluetoothRx); void setup() { //Setup usb serial connection to computer Serial.begin(9600); //Setup Bluetooth serial connecti/on to android delay(100); bluetooth.begin(9600)...
  2. H

    how to receive the bluetooth signal from phone?

    include <SoftwareSerial.h> int bluetoothTx = 2; int bluetoothRx = 3; int LED=13; SoftwareSerial bluetooth(bluetoothTx, bluetoothRx); void setup() { //Setup usb serial connection to computer Serial.begin(9600); //Setup Bluetooth serial connecti/on to android delay(100)...
Back
Top