#santhosh-kumar-r_docs

1 messages ¡ Page 1 of 1 (latest)

velvet flareBOT
#

👋 Welcome to your new thread!

⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1369935011423457280

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

unkempt cipher
#

No, your application needs to call API to discover and connect the reader.

mint smelt
#

yes . this is my current approach

const {reader: connectedReader, error} = await connectReader(
  {
    reader: {
      ...reader,
      locationId: selectedLocation?.id || reader?.location?.id,
    },
  },
  'usb',
);
#

any other possible of auto connect in Server-driven , javascript instead of react-naitve ?

#

and another doubt, React native is active development. is it safe to use in production environment right ?

unkempt cipher
#

You can use server-driven integration, which doesn't require reader discovery or connect. However take note that only Internet reader (S700 and WisePos E) supports server-driven integration

mint smelt
unkempt cipher