Hi,
So I have a K30 sensor by Senseair that I would like to have communicate to my computer. Essentially it has a RX/TX which is primarily what I need. So I hook everything up to the Boron/flash code and can get it reading CO2 values and working properly. However, I think I need to change the firmware so the boron is sending over bits without trying to execute any other stuff. The code below does not work so I know I am missing something. Any ideas? Please help! Thank you (:
void setup()
{
Cellular.off();
delay(5000);
// put your setup code here, to run once:
Serial.begin(9600); //Opens the main serial port to communicate with thecomputer
Serial1.begin(9600); //Opens the virtual serial port with a baud of9600
}
void loop()
{
}