Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Electorials Electronics
Published © GPL3+

Review 003: Seeeduino v4.2 Review

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

BeginnerProtip12 minutes661
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
85 projects • 66 followers
I'm an electronic hobbyist interested in anything, from Arduino to drones. I plan to educate people with the content on my website.
Contact

Comments

Please log in or sign up to comment.