void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
sensors.begin(); // initialize the bus
display.begin(SSD1306_SWITCHCAPVCC, 0x3c); // initialize with the I2C addr 0x3D (for the 128x64)
display.clearDisplay();
pinMode(buzzerPin,OUTPUT);//set the buzzer as as OUTPUT
// digitalWrite(buzzerPin,LOW);//initialize the buzzerPin as LOW level
digitalWrite(buzzerPin,HIGH);
}