-
Notifications
You must be signed in to change notification settings - Fork 0
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
Device List #18
Device List #18
Conversation
startScanForMetaWearsAllowDuplicates continues scanning until stopScanForMetaWears is called
See fix details here: facebook/react-native#8714
@@ -6,7 +6,7 @@ import { | |||
View, | |||
StyleSheet, | |||
NativeModules, | |||
NativeAppEventEmitter, | |||
NativeEventEmitter, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you know what's the difference between NativeAppEventEmitter
and NativeEventEmitter
? How come we use one over the other?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup! Before, when we were using NativeAppEventEmitter (the docs told us to do this), Xcode had a warning that said that what we were using was deprecated. I found this: facebook/react-native#8714.
I'll need to fix a couple of bugs before merging. |
Pressing connect initiates a scan for all hardware devices in range. The devices are displayed in a list format and upon pressing, begins the connection process.
Also fixed a few things such as:
This change is