Мне нужно использовать UUID в моей программе для подключения этого arduino к моему приложению в мобильном телефоне. Я использую HC-05 в качестве разъема Bluetooth. Могу ли я поместить свой UUID в плату Arduino? Я пытаюсь найти мою проблему на форуме Arduino, но ничего не происходит.
Спасибо. Извините, я новичок в этом форуме.
#include <SoftwareSerial.h>
SoftwareSerial BTserial(10, 11); // RX | TX
//UUID uuid("E2C56DB5-DFFB-48D2-B060-D0F5A71096E0");
int sensorPin = A0;
int sensorValue = 0;
void setup() {
BTserial.begin(9600);
//BTserial(uuid);
}
void loop() {
sensorValue = analogRead(sensorPin);
//IMPORTANT: The complete String has to be of the Form: 1234,1234,1234,1234;
//(every Value has to be seperated through a comma (',') and the message has to
//end with a semikolon (';'))
BTserial.print("789789");
BTserial.print(",");
BTserial.print("1234.0");
BTserial.print(",");
BTserial.print("1234 hPa");
BTserial.print(",");
BTserial.print("900 ml/s");
BTserial.print(",");
BTserial.print(sensorValue);
BTserial.print(";");
//message to the receiving device
delay(20);
}
Я пытаюсь найти библиотеку или что-то, что может помочь мне добавить этот UUID в мой код.