Arduino 101 temp sensor ble

Just tried the app with Arduino 101 and ble. awesome. Need help. I can hook up to the app but cannot see my temp with Adafruit TM36 on A1 of Arduino. The following is the code to hook up with the app on iPhone. Works well. I guess I need more code to see sensor. Exciting stuff and first time for me.

#define BLYNK_PRINT Serial
#include <BlynkSimpleCurieBLE.h>
#include <CurieBLE.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = “7a836e5e9ae243349d6716617087255c”;
BLEPeripheral blePeripheral;
void setup() {
Serial.begin(9600);
delay(1000);
blePeripheral.setLocalName(“Blynk”);
blePeripheral.setDeviceName(“Blynk”);
blePeripheral.setAppearance(384);
Blynk.begin(blePeripheral, auth);
blePeripheral.begin();
Serial.println(“Waiting for connections…”);
}
void loop() {
Blynk.run();
blePeripheral.poll();
}

First of all, welcome!