

FLEXI SOFT is a flexible, soft circuit material designed for use in wearable electronics and flexible devices. Its unique properties allow it to conform to various shapes and surfaces, making it ideal for applications where traditional rigid circuit boards are unsuitable. FLEXI SOFT is lightweight, durable, and capable of integrating seamlessly into textiles, medical devices, and other innovative technologies.








Below are the key technical details for FLEXI SOFT:
| Parameter | Specification |
|---|---|
| Material Composition | Conductive polymer with flexible substrate |
| Thickness | 0.1 mm to 0.5 mm |
| Operating Voltage Range | 0.5 V to 12 V |
| Maximum Current Capacity | 100 mA/cm² |
| Operating Temperature | -20°C to 85°C |
| Bend Radius | Minimum 5 mm |
| Stretchability | Up to 20% elongation |
| Adhesion Compatibility | Compatible with textiles, plastics, and silicone |
FLEXI SOFT does not have traditional pins like rigid components. Instead, it features conductive traces that can be connected using soldering, conductive adhesives, or connectors. Below is a table describing the typical connection points:
| Connection Point | Description |
|---|---|
| Power (+) | Positive voltage input for powering the circuit |
| Ground (-) | Ground connection for completing the circuit |
| Signal Traces | Conductive paths for data or control signals |
| Sensor Pads | Optional pads for integrating sensors or inputs |
Below is an example of how to use FLEXI SOFT with an Arduino UNO to create a simple touch sensor:
// Example: Using FLEXI SOFT as a touch sensor with Arduino UNO
const int touchPin = A0; // FLEXI SOFT connected to analog pin A0
int touchValue = 0; // Variable to store sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(touchPin, INPUT); // Set the touch pin as input
}
void loop() {
touchValue = analogRead(touchPin); // Read the sensor value
Serial.print("Touch Value: ");
Serial.println(touchValue); // Print the value to the Serial Monitor
// Add logic to trigger actions based on touch value
if (touchValue > 500) {
Serial.println("Touch detected!");
}
delay(100); // Small delay for stability
}
Issue: No response from the circuit.
Issue: Short circuits between traces.
Issue: FLEXI SOFT is not adhering to the surface.
Issue: Damage to the material during soldering.
Q: Can FLEXI SOFT be washed if used in clothing?
A: Yes, but it must be properly insulated and protected. Use waterproof coatings or enclosures to safeguard the circuitry.
Q: Can I use FLEXI SOFT for high-power applications?
A: No, FLEXI SOFT is designed for low-power applications. Exceeding the maximum current capacity (100 mA/cm²) may damage the material.
Q: How do I repair damaged traces on FLEXI SOFT?
A: Use conductive ink or tape to repair broken traces. Ensure the repair is secure and insulated.
Q: Is FLEXI SOFT compatible with all adhesives?
A: FLEXI SOFT is compatible with most adhesives, but testing is recommended for specific applications to ensure proper bonding.
This documentation provides a comprehensive guide to using FLEXI SOFT effectively in your projects. For further assistance, consult the manufacturer’s datasheet or support resources.