The SparkFun RedBoard Turbo is an advanced development board based on the ATmega328P microcontroller. It is designed to be a drop-in replacement for the Arduino Uno with a form factor and pinout that are familiar to users of the classic Arduino boards. However, the RedBoard Turbo comes with additional features and improved performance, making it suitable for a wide range of applications from rapid prototyping to final product integration.
Common applications for the SparkFun RedBoard Turbo include:
Pin Number | Function | Description |
---|---|---|
1 | RESET | Used to reset the microcontroller |
2-13 | Digital I/O | Digital input/output pins, PWM on 3, 5, 6, 9, 10, 11 |
14-19 | Analog Input | Analog input pins A0-A5 |
20, 21 | I2C | SDA and SCL for I2C communication |
22, 23 | TX/RX | Serial communication pins |
24 | 3.3V | 3.3V power output (up to 150 mA) |
25 | 5V | 5V power output (from regulator) |
26 | GND | Ground |
27 | Vin | Input voltage to the board |
28 | AREF | Analog reference voltage for the ADC |
To use the SparkFun RedBoard Turbo in a circuit:
The RedBoard Turbo can be programmed using the Arduino IDE:
// 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
}
Q: Can I power the RedBoard Turbo using the USB port? A: Yes, the board can be powered through the USB connection when connected to a computer or USB power source.
Q: Is the RedBoard Turbo compatible with all Arduino Uno shields? A: Most shields designed for the Arduino Uno should be compatible with the RedBoard Turbo, but always check the voltage and pinout requirements of the shield.
Q: What is the maximum current the 3.3V pin can provide? A: The 3.3V pin can provide up to 150 mA of current.
Q: How do I reset the board? A: You can reset the board by pressing the onboard reset button or by connecting the RESET pin to ground momentarily.