Tranfer the data Arduino to PC (HC-06)

How I can transfer the data read of a gas sensor from the "arduino" to the pc by bluetooh hc-06. Should I use the arduino's software or some another platform?

This is my code

#include "DHT.h"
#include "MQ135.h"
#define DHTPIN 5 **
#define ANALOGPIN 5
#define TIMEOUT 3000
#define DHTTYPE DHT11 // DHT 11
DHT dht(DHTPIN, DHTTYPE);
MQ135 gasSensor = MQ135(ANALOGPIN);
void setup() {
** Serial.begin(9600);

** dht.begin();**
}
void loop() {
** float h = dht.readHumidity();**
** float t = dht.readTemperature();**
** if (isnan(h) || isnan(t)) {**
** Serial.println("Failed to read from DHT sensor!");**
** return;**
** }**
** float ppm = gasSensor.getPPM();**
** Serial.print("T: ");**
** Serial.print(t);**
__ Serial.print(" C\t");__
** Serial.print("H: ");
*
** Serial.print(h);**
** Serial.print(" %\t");**
** Serial.print("CO2: ");**
** Serial.print(ppm);**
** Serial.println(" ppm");**
** delay(TIMEOUT);**
}

Help me please

I guess you buy a Bluetooth shield or module and follow the instructions that come with it.

If that code works using the USB cable and the serial monitor, it will work using bluetooth. No change required other than ensuring you are using a proper terminal programme instead of the serial monitor. I use RealTerm but they are all much the same. This will also enable you to timestamp your data, using the PC clock, and record it to .csv.

You might find the following background notes useful

http://homepages.ihug.com.au/~npyner/Arduino/GUIDE_2BT.pdf
http://homepages.ihug.com.au/~npyner/Arduino/BT_2_WAY.ino