-
Notifications
You must be signed in to change notification settings - Fork 6
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
Wifi connector #21
base: master
Are you sure you want to change the base?
Wifi connector #21
Conversation
Right now I can connect to my drone but I'm not receiving anything nor are commands arriving. Try the modified |
I got wifi to work 🕺 |
I kinda forgot what I had left to do :/ |
_setupPeripheral() { | ||
this.peripheral.discoverAllServicesAndCharacteristics((err, services, characteristics) => { | ||
if (err) { | ||
throw err; |
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.
Can anything even catch this error? 😅
get connected() { | ||
return this.browser && this.server && this.client; | ||
} |
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.
get connected() { | |
return this.browser && this.server && this.client; | |
} | |
get connected() { | |
return !this.browser && this.server && this.client; | |
} |
Also cleaning up the codebase
closes #8