Git Product home page Git Product logo

Comments (3)

marcosinigaglia avatar marcosinigaglia commented on May 26, 2024

Hi, before connect you have to wait the scan has found the peripheral.
Il giorno mar 21 giu 2016 alle 04:21 Xtian [email protected] ha
scritto:

[image: screen shot 2016-06-21 at 10 19 29 am]
https://cloud.githubusercontent.com/assets/13525454/16216000/cdfd0634-3799-11e6-967b-2fca2df17fbb.png
this is my code, please help me. thanks


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#9, or mute
the thread
https://github.com/notifications/unsubscribe/AAQnh74wJl7WQFlh6fQNw8G2iURvigRAks5qN0qcgaJpZM4I6TZF
.

from react-native-ble-manager.

NabilEL avatar NabilEL commented on May 26, 2024

You have to subscribe to the BleManagerDiscoverPeripheral event, and inside it you will be able to connect to the device you want (you still have to scan though) :

Example :

      BleManager.scan([],60)
            .then(() => {
                console.log('scan started');
            })
            .catch((error) => {
                console.log("error scan : " + error);
            });
       NativeAppEventEmitter.addListener('BleManagerDiscoverPeripheral', (args) => {
           // Connect to your device here
       });

from react-native-ble-manager.

tarang9211 avatar tarang9211 commented on May 26, 2024

I tried the above code, and I still cannot connect to my MAC from my iPhone. This is the code

 btnPress() {
    BleManager.scan([], 60)
    .then(() => {
        console.log('scan started');
    });

    DeviceEventEmitter.addListener('BleManagerDiscoverPeripheral', (args) => {
        console.log(args);
        BleManager.connect('<uuid>')
        .then(() => {  
            console.log('success')
        })
        .catch((error) => {
            console.log(error);
        });
    })
  }

I do not even get any output from the console.log(args)

from react-native-ble-manager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.