vshymanskyy / TinyGSM

A small Arduino library for GSM modules, that just works
GNU Lesser General Public License v3.0
1.91k stars 709 forks source link

SIM7000SSL doesn't support User and Pass for APN. #655

Open Matthew-Sparkmate opened 2 years ago

Matthew-Sparkmate commented 2 years ago
sendAT(GF("+CNCFG=1,\""), apn, "\",\"", "\",\"", user, pwd, '"');

needs to be switched to:

sendAT(GF("+CNCFG=1,\""), apn, "\",\"", user, "\",\"", pwd, '"');

https://github.com/vshymanskyy/TinyGSM/blob/3356c1d5c7bbde4a8440021b591453545ffccbde/src/TinyGsmClientSIM7000SSL.h#L245