sentryx — Xiao Esp32 C3 simulation

An interactive Xiao Esp32 C3 circuit simulation you can run free in your browser on Velxio, by akshaya.

Components

Sketch code

#define SOS_INPUT 3

void setup() {
  pinMode(SOS_INPUT, INPUT);
}

void loop() {
  if (digitalRead(SOS_INPUT) == HIGH) {
    // SOS received from S3
  }
}

More projects by akshaya