Page 1 of 1

Arduino Shield Question

Posted: Tue Oct 01, 2013 3:32 am
by brian25
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();

}

Re: Arduino Shield Question

Posted: Fri Oct 18, 2013 11:16 am
by TS-Tim
Hi,
I think that all you need to worry about is using NewSoftserial for the second baud rate.
http://arduiniana.org/libraries/NewSoftSerial/
Also if you have hardware overlap, you can use the Go_Between shield to remap your pins
https://www.sparkfun.com/products/11002