I am trying to like 3 arduino boards (1 main board and to breadboarded arduinos I built) Is it possible to use multiple software serials to link the 2 breadboards to the Arduino Main board.
The 2 breadboards are collecting data that I want the mainboard to handle.
Serial.begin(speed);
Softserial1.beging(speed); or along those lines - search the forum for NewSoftSerial, you will find examples, need to define the pins used, etc.
Softserial2.begin(speed);
Only one instance of NewSoftSerial can be active (buffering incoming data) at one time. So, it will only be possible to do what you want if you have handshaking implemented. That is, the master activates one instance of NewSoftSerial and tells the slave to send data. Then, the master activates the other instance of NewSoftSerial and tells the other slave to send data.
Slaves store data between uploads, and send everything they have buffered when called.