hi how to use multiple shields in Arduino?
if i have two…
example, GSM and Ethernet can this work simultaneously in void setup?
void setup(){
Serial.begin(9600);
if (gsm.begin(2400)){
Serial.println("\nstatus=READY");
started=true;
}
Ethernet.begin(mac, ip);
server.begin();
}