The Elektro Pad (Manufacturer Part ID: elektropad) is a versatile electronic component designed for touch-sensitive interfaces and sensor arrays. Manufactured by Pad, this component is widely used in applications such as touchscreens, interactive displays, and various sensor-based projects. Its ease of integration and reliable performance make it a popular choice among hobbyists and professionals alike.
Parameter | Value |
---|---|
Operating Voltage | 3.3V - 5V |
Operating Current | 10mA |
Power Rating | 50mW |
Response Time | < 10ms |
Operating Temperature | -20°C to 70°C |
Dimensions | 50mm x 50mm x 2mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (3.3V - 5V) |
2 | GND | Ground |
3 | OUT | Output signal (High when touched, Low otherwise) |
4 | NC | Not Connected |
// Example code to interface Elektro Pad with Arduino UNO
const int touchPin = 2; // Pin connected to OUT pin of Elektro Pad
const int ledPin = 13; // Pin connected to an LED
void setup() {
pinMode(touchPin, INPUT); // Set touchPin as input
pinMode(ledPin, OUTPUT); // Set ledPin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int touchState = digitalRead(touchPin); // Read the state of the touch sensor
if (touchState == HIGH) {
digitalWrite(ledPin, HIGH); // Turn on LED if touch is detected
Serial.println("Touch detected!");
} else {
digitalWrite(ledPin, LOW); // Turn off LED if no touch is detected
Serial.println("No touch detected.");
}
delay(100); // Small delay for stability
}
No Response from the Elektro Pad
Erratic Behavior or False Touches
Output Signal Always High or Low
Q1: Can the Elektro Pad be used with a 3.3V power supply?
Q2: How can I increase the sensitivity of the Elektro Pad?
Q3: Is the Elektro Pad waterproof?
Q4: Can I use multiple Elektro Pads in a single project?
By following this documentation, users can effectively integrate and troubleshoot the Elektro Pad in their projects, ensuring optimal performance and reliability.