Bluno Nano UUID

Im trying to connect to the Bluno Nano V1.3, what is the UUID I need to use in android studio?
2022-01-08 18:42:55 thanks for sharing this i am also searching this
Best Monitor For Photo Editing Under 15000
msmetfc001
Best Monitor For Photo Editing Under 15000

2022-01-08 18:42:55 thanks for sharing this i am also searching this
Best Monitor For Photo Editing Under 15000
msmetfc001
Best Monitor For Photo Editing Under 15000

2021-12-03 18:29:28 Thanks for the update. I'll be sure to keep an eye on this thread.
shepardbrisa5

2021-12-03 18:29:28 Thanks for the update. I'll be sure to keep an eye on this thread.
shepardbrisa5

2021-11-18 19:03:08 Genuvenue is a company that specializes in Wedding Photoshoot in Alberta. They have been in the industry of photography for over a long time.
vivek.genuvenue1220

2021-11-18 19:03:08 Genuvenue is a company that specializes in Wedding Photoshoot in Alberta. They have been in the industry of photography for over a long time.
vivek.genuvenue1220

2021-11-15 18:02:42 BLUNO NANO UUID that is a published article from the year 2016 with the proper range of the stories. The demo link is given here with the proper sort of securing the Bestessays with the more kind of the great information with the BLE products.
lueatherly

2021-11-15 18:02:42 BLUNO NANO UUID that is a published article from the year 2016 with the proper range of the stories. The demo link is given here with the proper sort of securing the Bestessays with the more kind of the great information with the BLE products.
lueatherly

2016-08-29 15: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.

2016-08-29 15: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.

2016-08-25 22: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?

2016-08-25 22: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?

2016-06-27 18:07:58 I don't know much about the UUID... but it can not be modified.
From the source code of our Bluno Basic demo, https://github.com/DFRobot/BlunoBasicDe ... brary.java, I found the UUID applied to all our BLE products, that is
What's more, as to how to know the iBeacon UUID, download a BLE finder from the APP market will help. As I installed the BLE UUID Explorer and find my bluno as:
Leff
From the source code of our Bluno Basic demo, https://github.com/DFRobot/BlunoBasicDe ... brary.java, I found the UUID applied to all our BLE products, that is
Code: Select all
public static final String SerialPortUUID="0000dfb1-0000-1000-8000-00805f9b34fb";
public static final String CommandUUID="0000dfb2-0000-1000-8000-00805f9b34fb";
public static final String ModelNumberStringUUID="00002a24-0000-1000-8000-00805f9b34fb";
What's more, as to how to know the iBeacon UUID, download a BLE finder from the APP market will help. As I installed the BLE UUID Explorer and find my bluno as:

2016-06-27 18:07:58 I don't know much about the UUID... but it can not be modified.
From the source code of our Bluno Basic demo, https://github.com/DFRobot/BlunoBasicDe ... brary.java, I found the UUID applied to all our BLE products, that is
What's more, as to how to know the iBeacon UUID, download a BLE finder from the APP market will help. As I installed the BLE UUID Explorer and find my bluno as:
Leff
From the source code of our Bluno Basic demo, https://github.com/DFRobot/BlunoBasicDe ... brary.java, I found the UUID applied to all our BLE products, that is
Code: Select all
public static final String SerialPortUUID="0000dfb1-0000-1000-8000-00805f9b34fb";
public static final String CommandUUID="0000dfb2-0000-1000-8000-00805f9b34fb";
public static final String ModelNumberStringUUID="00002a24-0000-1000-8000-00805f9b34fb";
What's more, as to how to know the iBeacon UUID, download a BLE finder from the APP market will help. As I installed the BLE UUID Explorer and find my bluno as:

2016-06-25 00:49:58 Im trying to connect to the Bluno Nano V1.3, what is the UUID I need to use in android studio?
frank
