IOT-MCU / ESP-12S-A9-A9G-GPRS-Node-v1.0

63 stars 27 forks source link

Lib error #6

Open sadamyne opened 4 years ago

sadamyne commented 4 years ago

Hi,

When i open one of your samples i get the following error:

"gpsexample:24:40: error: no matching function for call to 'SoftwareSerial::SoftwareSerial(int, int, bool, int)'

SoftwareSerial swSer(14, 12, false, 256);

How can i solve this?

Thanks in advance

IOT-MCU commented 4 years ago

Hi, please refer our wiki to set the arduino. https://github.com/IOT-MCU/ESP-12S-A9-A9G-GPRS-Node-v1.0/wiki

sadamyne commented 4 years ago

Hi,

I have done that already. Thanks in advance

eried commented 4 years ago

I think it works if you just use

SoftwareSerial swSer(14, 12);

sadamyne commented 4 years ago

Thanks :)