Help with thermostat project

I currently have an SSD 1315 OLED and a DH20 (black cover) temp sensor from the Arduino Sensor Kit. I want them to interface with my Arduino Uno R3 with 2 grove to 4 pin connectors, and get the OLED to display the info. I also don't want to use a breadboard as I will be attempting to integrate this into a small 3d printed case that will go onto the wall. I currently am able to get the OLED to work fine and they both worked fine together when in the default PCB. However, I have no idea how to hook up the temp sensor or how to code it.
This is the code that worked fine with the parts still on the default PCB.
Code:

#include "Arduino_SensorKit.h"

#define Environment Environment_I2C

void setup() {
  Serial.begin(9600);

  Environment.begin();

  Oled.begin();
  Oled.setFlipMode(true);
  
}

void loop() {
  Oled.setFont(u8x8_font_amstrad_cpc_extended_r); 

  //cursor values are in characters, not pixels
  Oled.setCursor(3, 3);
  
  Oled.print("T: ");
  Oled.print(Environment.readTemperature());
  Oled.print("C");
  
  Oled.setCursor(2, 5);
  Oled.print("Hum: ");
  Oled.print(Environment.readHumidity());
  Oled.print("%");

  Oled.setCursor(2,0);
  Oled.print("Hi");
  Oled.setCursor(4,1);
  Oled.print("Good Times!");

  delay(10);
}

As your topic does not relate directly to the installation or operation of the IDE it has been moved to the Programming Questions category of the forum

okay, sorry about that

Start with finding your library on the internet...

Arduino_SensorKit.h

Which leads you here: GitHub - arduino-libraries/Arduino_SensorKit

Look in the /examples folder...

Then, look for a folder like "temp sensor" and find this folder: Temp_and_Humidity

Then open the file inside the folder... Arduino_SensorKit/examples/Temp_and_Humidity/Temp_and_Humidity.ino at main · arduino-libraries/Arduino_SensorKit · GitHub

In that example file you see pin assignments and comments like this...

  // Uncomment line below if your kit has a DHT11 and you're connecting it to 
  // a pin different than 3
  //Environment.setPin(4);

I would interpret this as the normal pin for the sensor is 3.

thank you i'm kinda new to this stuff

still couldn't get it to work, I believe i'm using the wrong pins for the DH20

the temp sensor, either I'm doing something wrong or I don't have the right pin
I saw on seeed studio that the sensor also needs a serial clock, possibly?