//導入函示庫
#include "DHT.h"
#include <SPI.h> 
#include <Wire.h> 
#include <Adafruit_GFX.h> 
#include <Adafruit_SSD1306.h> 
#define DHTPIN 14     //設定溫濕度感測器腳位
#define DHTTYPE DHT22   // DHT 22  (AM2302), AM2321
DHT dht(DHTPIN, DHTTYPE);
//設定OLED畫面
#define SCREEN_WIDTH 128 // OLED 寬度像素
#define SCREEN_HEIGHT 64 // OLED 高度像素
// 設定OLED
#define OLED_RESET     -1 // Reset pin # (or -1 if sharing Arduino reset pin)
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET);
float temperature;
void setup() {
  Serial.begin(9600);
  dht.begin();
  // 偵測是否安裝好OLED了
  if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) { // 一般1306 OLED的位址都是0x3C
    Serial.println(F("SSD1306 allocation failed"));
    for(;;); // Don't proceed, loop forever
  }
  display.clearDisplay(); // 清除畫面
}
//主程式
void loop() {
  temperature= dht.readTemperature();//"temperature"存取溫濕度感測器數值
  testdrawstyles_value();//執行副程式
}
//副程式
void testdrawstyles_value() {
  display.clearDisplay();          //清除螢幕
  display.setTextSize(2);          // 設定文字大小
  display.setTextColor(1);         // 1:OLED預設的顏色(這個會依該OLED的顏色來決定)
  display.setCursor(5,0);          // 設定起始座標
  display.print(temperature);      // 要顯示的字串
  display.display();               // 要有這行才會把文字顯示出來
  delay(1000);                     //等待1000毫秒
}