-
Notifications
You must be signed in to change notification settings - Fork 15
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
Type Error on Neo-6m-GPS.py #1
Comments
Hi, You are getting this error message because the parse method from the pynmea2 library expects a string as argument but you are passing bytes. To solve that issue you need to convert the byte message into string before passing it to the parser as follows:
Hope it helps! Regards, |
Hi, I forked the project because I wanted to work on the Python part of the repo. In particular, my plan is to remove the dependency to pynmea2. Unfortunately, at the moment I have not too much to work on that but I will definitely fix it on a long run. I will let you guys know when I'm ready for a pull request ;-) |
yes please let me know. This repo is just a collection of useful code for the Neo-6m because I didn't find as many useful information. |
TypeError: argument should be integer or bytes-like object, not 'str'
The text was updated successfully, but these errors were encountered: