Electorials Electronics
Published © GPL3+

Review 011: Maker Uno Review

A review of the Maker Uno from Cytron Technologies.

BeginnerProtip12 minutes222
Review 011: Maker Uno Review

Things used in this project

Story

Read more

Schematics

Maker Uno Pinout

Code

Arduino Maker Uno 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.