Hi community, I’m an educator trying to use seeduino base shield with Arduino to integrate multiple sensors. I have a questions regarding the shield,
- When using the shield with UNO, can we only bundle sensors that share the same baud rate?
- Should I be using Mega for bundling sensors that use different baud rate?
3.Could you please send me a sample script of how that might work? lets say (sound sensor and barometer sensor)
for instance, if I have
void setup()
{
Serial.begin(115200);
//Serial.println(“Grove - Sound Sensor Test…”);
Serial.begin(9600); if(!bme280.init()){ Serial.println(“Device error!”);
}
Could I just add another like this? (same question goes with the void loop) If not how might one go about go about combining multiple scripts for multiple sensors such as sound and barometer? I would just like to get an understanding of how this might work together.
Thanks you for reading,
Andy,