Bluno Nano UUID
frank 2016-06-25 08:49:58 14475 Views22 Replies Im trying to connect to the Bluno Nano V1.3, what is the UUID I need to use in android studio?
2022-01-09 02: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
msmetfc001 2022-01-09 02: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
msmetfc001 2021-12-04 02:29:28 Thanks for the update. I'll be sure to keep an eye on this thread.
shepardbrisa5
shepardbrisa5 2021-12-04 02:29:28 Thanks for the update. I'll be sure to keep an eye on this thread.
shepardbrisa5
shepardbrisa5 2021-11-19 03: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
vivek.genuvenue1220 2021-11-19 03: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
vivek.genuvenue1220 2021-11-16 02: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
lueatherly 2021-11-16 02: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
lueatherly 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-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-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-28 02: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:
Leff 2016-06-28 02: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:
Leff 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 
