Hi guys,
Im following a tutorial on using an UNO with a GSM shield. They use SofwareSerial to enable ports 7 & 8 to communicate with the GSM SHIELD (SIM900).
Im using a MEGA and a GSM MODULE (SIM90). Originally I replaced 7 & 8 in code for 18 & 19 because thats what I normally use for Tx/Rx on the MEGA. It doesnt seem to be working. And by this I mean when I test incoming data from that shield in the loop() by using this code:
if(SIM900.available() >0)
{
Serial.println("Reading SIM");
}
I get nothing logged in the monitor.
Should I be using another set of ports for the SoftwareSerial?
The thing is Im using a MODULE, not a Shield. And I've connected the Tx & Rx cables from my gsm module to the MEGA's 18 & 19 pins.