Bluno Nano UUID
frank 2016-06-25 08:49:58 15059 Views6 Replies Im trying to connect to the Bluno Nano V1.3, what is the UUID I need to use in android studio?
2021-12-04 02:29:28 Thanks for the update. I'll be sure to keep an eye on this thread.
shepardbrisa5
shepardbrisa5 2016-08-29 23:49:26 hello
Yes, the above all you mentioned can be finished by an Arduino sketch. The following code is used for buliding connection between two ble devices:
And there is a link about data sending, maybe you can make a reference:
viewtopic.php?f=18&t=1991&p=9214#p9214
Then you can edit the code again according to your own requirements.
Wendy.Hu
Yes, the above all you mentioned can be finished by an Arduino sketch. The following code is used for buliding connection between two ble devices:
Code: Select all
void setup() {
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
int num=1;
Serial.write(num);
}
Code: Select all
int a=0;
void setup() {
Serial.begin(115200); //initial the Serial
}
void loop()
{
if(Serial.available())
{
a=Serial.write(Serial.read());
Serial.println(a);
}
}
And there is a link about data sending, maybe you can make a reference:
viewtopic.php?f=18&t=1991&p=9214#p9214
Then you can edit the code again according to your own requirements.
Wendy.Hu 2016-08-26 06:33:19 Is it possible to do all that (discovery, connection, pairing, data sending) from an Arduino sketch?
What commands would I need to send and how?
info
What commands would I need to send and how?
info 2016-06-25 08:49:58 Im trying to connect to the Bluno Nano V1.3, what is the UUID I need to use in android studio?
frank
frank 
