The AdaGator Side Black is a versatile prototyping accessory designed for use with the Adafruit Gemma board, a tiny wearable platform board that packs a punch in a small form factor. The AdaGator Side Black extends the functionality of the Gemma board by providing a side connector with clearly labeled pins. This makes it easier for hobbyists, designers, and engineers to connect various components and prototype their wearable projects quickly and efficiently.
The AdaGator Side Black is designed to complement the Adafruit Gemma board and does not have electronic components that dictate voltage, current, or power ratings. However, it is crucial to adhere to the specifications of the Gemma board when using the AdaGator Side Black.
Pin Label | Description |
---|---|
VOUT | Voltage output from Gemma, connected to external components |
A1 | Analog input/output pin 1 |
A2 | Analog input/output pin 2 |
D0 | Digital input/output pin 0, also used for serial communication |
D1 | Digital input/output pin 1, also used for I2C SDA |
D2 | Digital input/output pin 2, also used for I2C SCL |
GND | Ground connection |
Q: Can the AdaGator Side Black be used with other boards besides the Gemma? A: The AdaGator Side Black is specifically designed for the Adafruit Gemma board and may not be compatible with other boards.
Q: Is soldering required to use the AdaGator Side Black? A: No, the AdaGator Side Black is designed for easy prototyping and does not require soldering when used with the Gemma board.
Q: How do I power my project using the AdaGator Side Black? A: Power your project through the Gemma board, which can be powered via USB or a battery. The VOUT pin on the AdaGator Side Black will provide power to your connected components.
// Example code for blinking an LED connected to the AdaGator Side Black
// and the Adafruit Gemma board.
#define LED_PIN 1 // Define the pin connected to the LED
void setup() {
pinMode(LED_PIN, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(LED_PIN, HIGH); // Turn the LED on
delay(1000); // Wait for a second
digitalWrite(LED_PIN, LOW); // Turn the LED off
delay(1000); // Wait for a second
}
Note: The example code provided is for illustrative purposes and is intended to be used with the Adafruit Gemma board programmed via the Arduino IDE or compatible software. Ensure that the LED is connected to the correct pin on the AdaGator Side Black corresponding to the Gemma board's pinout.