When I add #include <TinyGPS++.h> and TinyGPSPlus gps; to the code it stops inet.httpGET from working as soon as i remove it from the code it starts working again. The same thing happened with TinyGPS so I tried the TinyGPSPluse and the same thing is happening ive been trying to get this to work for 5 days now and I aint had any luck.
It uploads to the board fine but when it starts it prints nothing to the Serial.
when I remove the inet.httpGET the function incomingSMS(); works fine.
Just adding the library reserves memory (in SRAM) for the buffer that the library uses to hold the GPS data. You may, with all those other arrays, be running out of memory.
When i remove the inet.httpGET its say freeMemory()=354 i cant test it with inet.httpGET i because it does not work.
The idea was to comment out the include statement and initialization of the TinyGPSPlus instance, and measure how much free memory you have. Then, uncomment the include statement, and see how much free memory you have. With only 354 bytes available without using the httpGET() method, it's nearly certain that you don't have enough memory to use it AND the TinyGPSPlus class.
When i remove the inet.httpGET its say freeMemory()=354 i cant test it with inet.httpGET i because it does not work.
The idea was to comment out the include statement and initialization of the TinyGPSPlus instance, and measure how much free memory you have. Then, uncomment the include statement, and see how much free memory you have. With only 354 bytes available without using the httpGET() method, it's nearly certain that you don't have enough memory to use it AND the TinyGPSPlus class.
when i add the tinyGPSPluse Lib the code sill works as soon as I do SoftwareSerial ss(7, 6); the code stops working
When I add #include <TinyGPS++.h> and TinyGPSPlus gps; to the code it stops inet.httpGET from working as soon as i remove it from the code it starts working again.
when i add the tinyGPSPluse Lib the code sill works as soon as I do SoftwareSerial ss(7, 6); the code stops working
Two different "causes" for your problem. Make up your mind which is the real cause.
Tell us how much memory is available before adding TinyGPS(Plus). Tell us how much is available after adding TinyGPS(Plus).
Tell us how much memory is available before adding SoftwareSerial. Tell us how much is available after adding SoftwareSerial.