Hi!
I'm presently working on a project using an Arduino Due board. The project itself consists of getting data from an analog force sensor which is read on analog pins and printed in the serial monitor.
To illustrate, the code looks like this:
int fsrReading0;
void setup(void) {
Serial.begin(9600);
}
void loop(void) {
fsrReading0 = analogRead(A0);
Serial.println(fsrReading0);
delay(1);
}
All of this works, but I recently tried to implement bluetooth, and got problems. I want to send data read on arduino pins to the serial, but through bluetooth instead. I now know that the DUE doesn't support the SoftwareSerial library, as it already as 3 more serial ports. I'm using a HC-06 bluetooth module, and I tried using those 3 ports to send data to the computer, but nothing worked.
To recap, I only want to send data via bluetooth instead of USB. Does anyone know a simple way to do so, using Arduino DUE and HC-06?
Thanks!