The Qduino Mini is a miniaturized Arduino-compatible microcontroller board designed by Qtechknow. It is specifically tailored for projects with space constraints without compromising on the functionality and power of a standard Arduino board. The Qduino Mini is notable for its built-in battery charger and fuel gauge, which makes it an excellent choice for portable and wearable electronics.
Pin Number | Function | Description |
---|---|---|
1 | TXD | Serial transmission |
2 | RXD | Serial reception |
3-8 | Digital I/O | General purpose digital input/output pins |
9-10 | PWM | Pulse Width Modulation output |
11-16 | Digital I/O | General purpose digital input/output pins |
17 | AREF | Analog reference voltage |
18-23 | Analog In | Analog input channels |
24 | GND | Ground |
25 | RESET | Reset pin |
26 | 3V3 | 3.3V output |
27 | 5V | 5V output |
28 | GND | Ground |
29 | VIN | Battery input voltage |
Powering the Qduino Mini:
Programming the Qduino Mini:
Connecting I/O Devices:
Qduino Mini not recognized by the computer:
Battery not charging:
Inconsistent behavior or crashes:
// Blink the onboard LED
void setup() {
pinMode(13, OUTPUT); // Set the LED pin 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 the Arduino UNO but is also compatible with the Qduino Mini since they share similar programming architecture. Ensure to select the correct board ("Arduino Leonardo") in the Arduino IDE when uploading the code to the Qduino Mini.