espdemo-1 — ESP32 simulation

An interactive ESP32 circuit simulation you can run free in your browser on Velxio, by aliceee.

Components

Sketch code

#include <Arduino.h>

// put function declarations here:
int myFunction(int, int);

// Arduino Blink Example
void setup() {
  pinMode(2, OUTPUT);
}

void loop() {
  digitalWrite(2, HIGH);
  delay(1000);
  digitalWrite(2, LOW);
  delay(1000);
}

// put function definitions here:
int myFunction(int x, int y) {
  return x + y;
}

More projects by aliceee