Using the new Arduino IDE for ESP8266 and found bugs, report them here

Moderator: igrr

User avatar
By Fasol0
#62878 Hello everybody,

I'm trying to use the Ultimate GPS Shield form Adafruit working with my Wemos D1 board.
I need to use Software Serial between GPS and wemos in order to keep Hardware serial for debugging.

I'm using the Adafruit_GPS lib which fits more to my GPS than the generic TinyGPS++ lib.

But it seems like the SoftwareSerial from ESP8266 (i'm using 2.3.1) is not recognized. Here is the code:

Code: Select all#include <Adafruit_GPS.h>
#include <SoftwareSerial.h>

SoftwareSerial mySerial(D6, D7);
Adafruit_GPS GPS(&mySerial);
// I get the error "no matching function to call to //'Adafruit_GPS::Adafruit_GPS(SoftwareSerial*)'


Any idea?