brian25
Member level 2
- Joined
- Feb 18, 2013
- Messages
- 52
- Helped
- 2
- Reputation
- 4
- Reaction score
- 2
- Trophy points
- 1,288
- Activity points
- 1,601
hi how to use multiple shields in Arduino?
if i have two..
example, GSM and Ethernet can this work simultaneously in void setup?
if i have two..
example, GSM and Ethernet can this work simultaneously in void setup?
Code:
void setup(){
Serial.begin(9600);
if (gsm.begin(2400)){
Serial.println("\nstatus=READY");
started=true;
}
Ethernet.begin(mac, ip);
server.begin();
}