Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot read property 'open' of null #53

Open
juanstan opened this issue Jun 17, 2023 · 4 comments
Open

Cannot read property 'open' of null #53

juanstan opened this issue Jun 17, 2023 · 4 comments

Comments

@juanstan
Copy link

This plugin is not working for me. It does not recognise the class as it returns null

"

import SerialPortAPI from 'react-native-serial-port-api';

async function example() {
/*  const devices = await SerialPortAPI.devicePathsAsync();
  console.log(devices)*/
  const serialPort = await SerialPortAPI.open("/dev/ttyS4", { baudRate: 38400 });
  console.log(serialPort, 'serialPort');

  // subscribe received data
  const sub = serialPort.onReceived(buff => {
    console.log(buff.toString('hex').toUpperCase());
  })

  // unsubscribe
  // sub.remove();

  // send data with hex format
  await serialPort.send('00FF');

  // close
  serialPort.close();

}

example();

"

@bastengao
Copy link
Owner

Which version?

@juanstan
Copy link
Author

juanstan commented Jun 19, 2023

Hello,

I tried the version v.1.4.0-rc.1 as I saw it in previous messages. Previously I think I tried the latest version.

Thank you

@juanstan
Copy link
Author

Do you know if it works with expo? Thank you!

@bastengao
Copy link
Owner

I am not familiar with Expo. Can you try the latest version?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants