I have a TC74 temp sensor as well as a bunch of other sensors and LED’s hooked up to my Arduino 101. All of them work properly on the Blynk app accept for the TC74. I can only get a reading of 1023 using the Value Display instead of getting an actual temperature reading. The same thing happens if I try using the Labeled Value for a celcius temperature reading. I am just using the basic Blynk program, do I need to add something else to get the temp reading? I am using Bluetooth. Please help!
#include <BlynkSimpleCurieBLE.h>
#include <CurieBLE.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = “8b7746df056b45ab8712514c4e617a0d”;
BLEPeripheral blePeripheral;
void setup() {
Serial.begin(9600);
blePeripheral.setLocalName(“Dylan”);
blePeripheral.setDeviceName(“Dylan”);
blePeripheral.setAppearance(384);
Blynk.begin(blePeripheral, auth);
blePeripheral.begin();
}
void loop()
{
Blynk.run();
blePeripheral.poll();
}