Coder Social home page Coder Social logo

Comments (4)

januslo avatar januslo commented on July 28, 2024 2

here's the code for reference:

/**
     * Start the ConnectThread to initiate a connection to a remote device.
     *
     * @param device The BluetoothDevice to connect
     */
    public synchronized void connect(BluetoothDevice device) {
        if (DEBUG) Log.d(TAG, "connect to: " + device);
        BluetoothDevice connectedDevice = null;
        if(mConnectedThread!=null){
            connectedDevice = mConnectedThread.bluetoothDevice();
        }
        if( mState==STATE_CONNECTED && connectedDevice!=null && connectedDevice.getAddress().equals(device.getAddress())){
            // connected already
            Map<String, Object> bundle = new HashMap<String, Object>();
            bundle.put(DEVICE_NAME, device.getName());
            bundle.put(DEVICE_ADDRESS,device.getAddress());
            setState(STATE_CONNECTED, bundle);
        }else {
            // Cancel any thread currently running a connection
            this.stop();
            // Start the thread to manage the connection and perform transmissions
            mConnectedThread = new ConnectedThread(device);
            mConnectedThread.start();
            setState(STATE_CONNECTING, null);
        }
    }

from react-native-bluetooth-escpos-printer.

januslo avatar januslo commented on July 28, 2024 1

yeah, to keep this works, plz update to version 0.0.3 as soon as it's published laster on.

from react-native-bluetooth-escpos-printer.

januslo avatar januslo commented on July 28, 2024

Plz use the master branch directly , keep the last connected device in the localstorage or global vars ,then call connect() again would just resume the connection as long as it's the same one.

from react-native-bluetooth-escpos-printer.

firdaussoberi avatar firdaussoberi commented on July 28, 2024

Thanks for the suggestions! I got it to work. For anyone watching this, for example, in the examples/App.js inside render there is a block like so:

/*some code*/
BluetoothManager.connect(rowData.address)
 .then((s)=>{
   this.setState({
    loading:false,
    boundAddress:rowData.address, 
    name:rowData.name || rowData. address
})
    alert(s);
    AsyncStorage.setItem("lastDevice", JSON.stringify(rowData));   //add here
},(e)=>{
   this.setState({
     loading:false
 })
   alert(e);
}

/*some code*/

Then I define a function reconnectDevice() with promise to AsyncStorage.getItem from "lastDevice" then BluetoothManager.connect(address)

reconnectDevice = () => {
    new Promise((resolve, reject) => {
    AsyncStorage.getItem("lastDevice")  
      .then(res => {
        if (res !== null ) {			
          resolve(true);

          BluetoothManager.connect(JSON.parse(res).address).then((s)=>{
          this.setState({
          loading:false,
          boundAddress:JSON.parse(res).address,
          name:JSON.parse(res).name || JSON.parse(res).address
          })
		    /*for debugging*/
            //alert("Connected again! Device: " + s + ", name is: " + JSON.parse(res).name + ", address is: " + JSON.parse(res).address );
          },(e)=>{
              this.setState({
              loading:false
               })
              //alert(e);
			  //alert("Hi :"  + e);
			  console.log(e);
            })	
			
			this.setState({
                deviceAddress: JSON.parse(res).address,
                isLoading_reconnect:false,
                });		  
		  //alert("Result reconnect is: " + res);
        } else {
          resolve(false);
		  //alert("Result reconnect is: " + res);
        }
      })
      .catch(err => {reject(err); alert("Failed to get data. Contact admin");});
    });
	}

Finally I call it as

componentDidMount(){
this.reconnectDevice();
}

This may not be clean, but it solves my problem (at the moment). Thanks.

from react-native-bluetooth-escpos-printer.

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.