Git Product home page Git Product logo

Comments (12)

graememk avatar graememk commented on August 20, 2024 2

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.

from esp32-xbee.

graememk avatar graememk commented on August 20, 2024

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.

from esp32-xbee.

edgecase14 avatar edgecase14 commented on August 20, 2024

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.

from esp32-xbee.

Popeye1001 avatar Popeye1001 commented on August 20, 2024

While looking through the code, I noticed some code for bluetooth support. Is it possible to update with bluetooth functions?

from esp32-xbee.

gdt avatar gdt commented on August 20, 2024

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.

from esp32-xbee.

jolivart avatar jolivart commented on August 20, 2024

Although not open source,there's a BT+BLE functional code here, 100% compatible with the hardware:
https://www.ardusimple.com/btble-bridge-hookup-guide/
Here are the instructions to load the new firmware:
https://www.ardusimple.com/ble-bridge-firmware-update/

from esp32-xbee.

gdt avatar gdt commented on August 20, 2024

@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.

from esp32-xbee.

gdt avatar gdt commented on August 20, 2024

It actually works to have both wifi/NTRIP and bluetooth. https://github.com/sparkfun/SparkFun_RTK_Firmware/

from esp32-xbee.

namork avatar namork commented on August 20, 2024

graememk

dear graememk. will you share the code? this would be great to develop an eps32 with an oled to have better control...

from esp32-xbee.

graememk avatar graememk commented on August 20, 2024

graememk

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:

`
#include "BluetoothSerial.h"
#define RXD2 16
#define TXD2 17

BluetoothSerial SerialBT;

void setup() {
// put your setup code here, to run once:
SerialBT.begin("ArdusimpleGPS");
Serial.begin(115200);
Serial2.begin(115200, SERIAL_8N1, RXD2, TXD2);
}

void loop() {
// put your main code here, to run repeatedly:
while (Serial2.available()) {
char c = Serial2.read();
Serial.print(c);
SerialBT.print(c);

}

}`

from esp32-xbee.

namork avatar namork commented on August 20, 2024

graememk

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:

` #include "BluetoothSerial.h" #define RXD2 16 #define TXD2 17

BluetoothSerial SerialBT;

void setup() { // put your setup code here, to run once: SerialBT.begin("ArdusimpleGPS"); Serial.begin(115200); Serial2.begin(115200, SERIAL_8N1, RXD2, TXD2); }

void loop() { // put your main code here, to run repeatedly: while (Serial2.available()) { char c = Serial2.read(); Serial.print(c); SerialBT.print(c);

}

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!!!!!!!!!!

from esp32-xbee.

0marraqueta avatar 0marraqueta commented on August 20, 2024

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?

from esp32-xbee.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.