The BioAmp EXG PILL by Upside Down Labs (Part ID: EXG PILL) is a small, versatile biopotential amplifier designed for capturing high-quality electrophysiological signals such as ECG (Electrocardiography), EMG (Electromyography), and EEG (Electroencephalography). This component is ideal for applications in biomedical research, health monitoring, and biofeedback systems.
Parameter | Value |
---|---|
Supply Voltage | 3.3V - 5V |
Operating Current | 1.5mA |
Gain | 1000x |
Input Impedance | >10 GΩ |
Bandwidth | 0.5 Hz - 100 Hz |
Output Voltage | 0 - 3.3V |
Dimensions | 20mm x 20mm |
Pin | Name | Description |
---|---|---|
1 | VCC | Power supply (3.3V - 5V) |
2 | GND | Ground |
3 | IN+ | Non-inverting input for biopotential signal |
4 | IN- | Inverting input for biopotential signal |
5 | OUT | Amplified output signal |
6 | REF | Reference voltage (typically connected to GND) |
Below is an example code to read the amplified signal from the BioAmp EXG PILL using an Arduino UNO:
// Define the analog pin connected to the OUT pin of BioAmp EXG PILL
const int bioAmpPin = A0;
void setup() {
// Initialize serial communication at 9600 baud rate
Serial.begin(9600);
}
void loop() {
// Read the analog value from the BioAmp EXG PILL
int sensorValue = analogRead(bioAmpPin);
// Convert the analog value to voltage (assuming 5V reference)
float voltage = sensorValue * (5.0 / 1023.0);
// Print the voltage to the serial monitor
Serial.print("Voltage: ");
Serial.println(voltage);
// Delay for a short period to avoid flooding the serial monitor
delay(100);
}
No Signal Output:
Noisy Signal:
Incorrect Readings:
Q1: Can the BioAmp EXG PILL be used with a 3.3V power supply?
Q2: What type of signals can the BioAmp EXG PILL amplify?
Q3: How can I reduce noise in the signal?
Q4: Can I use the BioAmp EXG PILL with other microcontrollers besides Arduino?
This documentation provides a comprehensive guide to using the BioAmp EXG PILL. Whether you are a beginner or an experienced user, following these instructions and best practices will help you achieve accurate and reliable biopotential signal measurements.