With the code below, the only thing printing is “Did not begin”. I tested two temperature sensors with the ESP32 Pro Micro which works, but when I try to connect to Arduino Giga boards using Qwiic jumpers they don’t work. I tested with two Gigas and two jumper cables. Any guidance would be greatly appreciated.
#include <Wire.h>
#include "SparkFun_STTS22H.h"
SparkFun_STTS22H mySTTS;
float temp;
void setup() {
delay(5000);
Serial.begin(115200);
if( !mySTTS.begin() )
{
Serial.println("Did not begin.");
while(1);
}
mySTTS.setDataRate(STTS22H_POWER_DOWN);
delay(10);
mySTTS.setDataRate(STTS22H_1Hz);
mySTTS.enableAutoIncrement();
}
void loop() {
mySTTS.getTemperatureF(&temp);
Serial.print("Temp: ");
Serial.print(temp);
Serial.println("F");
}