SparkFun Forums 

Where electronics enthusiasts find answers.

All things pertaining to wireless and RF links
By brian25
#164024
hi how to use multiple shields in Arduino?

if i have two..
example, GSM and Ethernet can this work simultaneously in void setup?
Code: Select all
void setup(){

Serial.begin(9600);
    if (gsm.begin(2400)){
        Serial.println("\nstatus=READY");
        started=true;
    }
Ethernet.begin(mac, ip);
server.begin();

}