Electorials Electronics
Published © GPL3+

Review 003: Seeeduino v4.2 Review

A review of the Seeeduino v4.2 from Seeed Studio.

BeginnerProtip12 minutes643
Review 003: Seeeduino v4.2 Review

Things used in this project

Story

Read more

Schematics

Seeeduino v4.2 Pinout

Code

Arduino Seeeduino v4.2 Sample Code

C/C++
void setup() {
  pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   
  delay(1000);                       
  digitalWrite(LED_BUILTIN, LOW);    
  delay(1000);                      
}

Credits

Electorials Electronics

Electorials Electronics

85 projects • 63 followers
I'm an electronic hobbyist interested in anything, from Arduino to drones. I plan to educate people with the content on my website.

Comments