-
Notifications
You must be signed in to change notification settings - Fork 46
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
Add bluetooth support for obtaining NMEA #48
Comments
I also would like this, The ESP32 has bluetooth, It would mean that to have bluetooth and a Ntrip connection wont need 2 extra hardware pieces. The UART NEMA feed is there, Putting it over bluetooth hopefully is an easy addition. I feel that I'm out of my depth to try and implement this myself. |
There are many Android apps which support Bluetooth, but not BLE GNSS receivers. Bluetooth support would enable these. We can't change our company to use a different software, so we must instead find a different module. |
While looking through the code, I noticed some code for bluetooth support. Is it possible to update with bluetooth functions? |
The astute reader will realize that this code is unmaintained; there hasn't been a release going on 4 years. You may wish to see if the sparkfun code (which is maintained) can run on this device. I suspect it's not too hard, but haven't gotten around to trying. |
Although not open source,there's a BT+BLE functional code here, 100% compatible with the hardware: |
@jolivart interesting. Looks like it can no longer do NTRIP, which means it isn't workable with QField. Plus, it's very disappointing to see Ardusimple moving away from open source. |
I ended up building a hat with another esp32 on it to do the Bluetooth serial connection from the main UART output. In the the Arduino IDE the Bluetooth stack does take up a considerable amount of memory/flash so possibly having everything in the one package isn't feasible. |
It actually works to have both wifi/NTRIP and bluetooth. https://github.com/sparkfun/SparkFun_RTK_Firmware/ |
dear graememk. will you share the code? this would be great to develop an eps32 with an oled to have better control... |
Its brutally simple: ` BluetoothSerial SerialBT; void setup() { void loop() { } }` |
wow, fast and simple. cool! that should work with any esp32 with bluetooth? and it’s hocked to rx/tx on the board? probably it will also work with the mosaicHAT, right? thanks a lot!!!!!!!!!! |
Hello, thanks for the code, Everything seems to be working correctly but I can't make the corrections through NTRIP, I always have the RTK FIX=SINGLE solution. How should I have the board configured? |
Separately from NTRIP, it would be very useful to enable accessing the NMEA stream over bluetooth. This would ease integration with various devices, especially software that already has bluetooth support, which seem to be the standard approach for "external GPS".
(While it would also be nice to have a way for a computer with bluetooth to proxy NTRIP, this request is just about access to the NMEA output stream.)
The text was updated successfully, but these errors were encountered: