const int buzzerPin = 13;
const int redledPin = 4;
const int oledsdaPin = 1;
const int oledsclPin = 2;
const int rgbPin_R = 14;
const int rgbPin_B = 17;
const int rgbPin_G = 18;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32-S3!");
//Wire.begin(oledsdaPin, oledsclPin);
pinMode(buzzerPin, OUTPUT);
pinMode(redledPin, OUTPUT);
pinMode(rgbPin_R, OUTPUT);
pinMode(rgbPin_B, OUTPUT);
pinMode(rgbPin_G, OUTPUT);
}
void loop() {
digitalWrite(redledPin, HIGH);
delay(1000);
digitalWrite(redledPin, LOW);
// put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
}