The Flora 3-Pin JST connector is a compact, reliable connector compatible with the Adafruit Flora board and other microcontroller platforms. It is designed to facilitate easy and secure connections between the Flora board and various peripherals such as sensors, LEDs, and other electronic components. The connector's design ensures a stable connection while allowing for quick disconnection when needed, making it ideal for wearable electronics and projects that require modularity.
Pin Number | Description | Notes |
---|---|---|
1 | Power (VCC) | Typically 3.3V or 5V |
2 | Data/Control | Signal line (e.g., I2C, GPIO) |
3 | Ground (GND) | Common ground reference |
Q: Can I use the Flora 3-Pin JST connector with other microcontrollers? A: Yes, the connector is compatible with any microcontroller that supports JST PH 3-pin connections, provided the voltage and current requirements are met.
Q: Is soldering required to use this connector? A: No, the Flora 3-Pin JST is designed for plug-and-play use, and no soldering is required when connecting it to the Flora board or compatible peripherals.
Q: How do I know if the connector is properly connected to the Flora board? A: The connector should fit snugly without any wobble, and the connection should be stable without any intermittent disconnections.
Q: What wire gauge should I use with the Flora 3-Pin JST connector? A: The connector is compatible with 26-30 AWG wires. Choose the appropriate gauge based on the current requirements of your application.
// Example code for controlling an LED using Flora 3-Pin JST connector with Arduino UNO
const int ledPin = 6; // Connect the data/control pin of the JST connector to pin 6
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn on the LED
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn off the LED
delay(1000); // Wait for 1 second
}
Remember to ensure that the LED's current and voltage requirements are compatible with the Arduino UNO's output capabilities and that the Flora 3-Pin JST connector is correctly connected to the LED and the Arduino UNO.