#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <SPI.h>
#include<Wire.h>
#include <DHT.h>
#define Type DHT11
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
#define OLED_RESET 1
int sensePin=7;
float humidity;
float tempC;
float tempF;
int setTime=500;
int dt=1000;
int pushup=2;
int pushdown=3;
Adafruit_SSD1306 display(SCREEN_WIDTH,SCREEN_HEIGHT,&Wire,OLED_RESET);
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
HT.begin();
delay(setTime);
display.begin(SSD1306_SWITCHCAPVCC,0x3C);
display.fillScreen(1);
display.display();
pinMode(pushup, INPUT_PULLUP);
pinMODE(pushdown,INPUT_PULLUP);
}
void loop() {
// put your main code here, to run repeatedly:
if(pushup==HIGH){
display.setCursor(64,32);
display.SetTextColor(0);
display.print()
}
}