Bluno General Arduino

Bluno Nano UUID

userHead frank 2016-06-25 00:49:58 13011 Views19 Replies
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
userHeadPic msmetfc001
2022-01-08 18:42:55 thanks for sharing this i am also searching this
Best Monitor For Photo Editing Under 15000
userHeadPic msmetfc001
2021-12-03 18:29:28 Thanks for the update. I'll be sure to keep an eye on this thread. userHeadPic shepardbrisa5
2021-12-03 18:29:28 Thanks for the update. I'll be sure to keep an eye on this thread. userHeadPic 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. userHeadPic 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. userHeadPic 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. userHeadPic 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. userHeadPic 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:
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.
userHeadPic Wendy.Hu
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:
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.
userHeadPic Wendy.Hu
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?
userHeadPic info
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?
userHeadPic info
2016-06-28 10:38:22 Oh, no pb~ userHeadPic Leff
2016-06-28 10:38:22 Oh, no pb~ userHeadPic Leff
2016-06-27 23:12:35 Thanks! userHeadPic frank
2016-06-27 23:12:35 Thanks! userHeadPic frank
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

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:

(91.11 KiB) Downloaded 803 times
userHeadPic Leff
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

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:

(91.11 KiB) Downloaded 803 times
userHeadPic Leff
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? userHeadPic frank