The MakerEdu Creator is a versatile and powerful microcontroller board designed by Makerlabvn, tailored for educational purposes and prototyping projects. It is engineered to interface with a wide array of sensors, motors, and other electronic components, providing a flexible platform for learners and hobbyists to explore the world of electronics and programming.
Pin Number | Function | Description |
---|---|---|
1 | RESET | Used to reset the microcontroller |
2-13 | Digital I/O | Digital input/output pins |
14-19 | Analog Input | Analog input pins |
20 | GND | Ground pin |
21 | AREF | Analog reference voltage for the ADC |
22 | 3.3V | 3.3 volts output (50 mA max) |
23 | 5V | 5 volts output (draw dependent on input) |
24 | GND | Ground pin |
25 | Vin | Input voltage to the board |
26-31 | PWM | Pulse Width Modulation output pins |
Q: Can I power the MakerEdu Creator with a 9V battery?
Q: What should I do if I exceed the current limit on a pin?
Q: How do I connect the MakerEdu Creator to a computer?
// Blink an LED connected to pin 13
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for a second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for a second
}
Note: The example code provided is for illustrative purposes. The actual implementation may vary depending on the specific version of the MakerEdu Creator board and the project requirements.