I need a simple project with Adafruit GPS, Huzzah Feather ESP826 and

and example of SoftwareSerial.
I have been trying for week to get it working. I have all the parts and the Arduino examples are ok up to a point, then they stop working.
This is the path I followed and step 1 works just fine.

Adafruit-ultimate-gps/direct-computer-wiring

// this sketch will allow you to bypass the Atmega chip
// and connect the Ultimate GPS directly to the USB/Serial
// chip converter.
 
// Connect VIN to +5V
// Connect GND to Ground
// Connect GPS RX (data into GPS) to Digital 0
// Connect GPS TX (data out from GPS) to Digital 1
 
void setup() {}
void loop() {}

And then step 1 leads to step 2 which tells me to open an example that doesnt exist.
File→Examples→Adafruit_GPS→echo

And tells me to connect this and I dont know where digital pins 2 and 3 are on the Feather Huzzah.
[RX to digital 2 and TX to digital 3.](http://Connect VIN to +5V, GND to Ground, RX to digital 2 and TX to digital 3.)

I looked at and tried all the Examples for GPS Echo and I cannot get any of them to work. I think that there are 3 of them.
GPS_HardwareSerial_EchoTest
GPS_SoftwareSerial_EchoTest
GPS_SPI_EchoTest

Any and all help is appreciaed.

If you use the Boards Manager to select for the Feather Huzzah exp8266, there is an example sketch for Software Serial called "swsertest". You should try get that running first.

There is a thread on the Feather Huzzah esp8266, the Adafruit GPS, and software serial here
https://forums.adafruit.com/viewtopic.php?f=8&t=125114

Read all the way through. Adafruit tech support has suggested what to, but its not certain that all users have found success. You might to better working through Adafruit directly.

Good luck.