Hackster is hosting Hackster Holidays, Ep. 7: Livestream & Giveaway Drawing. Watch previous episodes or stream live on Friday!Stream Hackster Holidays, Ep. 7 on Friday!
RoboCircuits
Published © CC BY-SA

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,464

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
37 projects • 219 followers
YouTuber, Explorer, Creator, Programmer, Arduino Lover and Engineer

Comments