Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
RoboCircuits
Published © MIT

SMT ASSEMBLEY FROM JLCPCB | ALTIUM DESIGNER AND EasyEDA

In this we will learn how to design a PCB that can be assembled easily using PCB assembling service then we will order it from Jlcpcb. com

IntermediateFull instructions provided1 hour1,518

Things used in this project

Hardware components

ESP32S
Espressif ESP32S
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Schematics

schematics pdf file

Code

Blink Code

Arduino
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Credits

RoboCircuits
39 projects • 222 followers
YouTuber, Explorer, Creator, Programmer, Arduino Lover and Engineer
Contact

Comments

Please log in or sign up to comment.