The BioAmp EXG Pill by Upsidedownlabs (Part ID: EXG Pill sensor) is a compact, wearable device designed for bioelectrical signal acquisition. It is specifically tailored for applications such as electrocardiogram (ECG) and electromyogram (EMG) monitoring. This device integrates advanced sensors to capture physiological signals with high precision, making it ideal for health and fitness tracking, medical research, and wearable technology development.
Parameter | Value |
---|---|
Supply Voltage | 3.3V to 5V |
Operating Current | ~5mA |
Signal Gain | 1000x |
Input Impedance | >10 GΩ |
Bandwidth | 0.5 Hz to 50 Hz (ECG) |
Noise Level | <1 µV RMS |
Output Signal | Analog |
Dimensions | 20mm x 20mm x 3mm |
Weight | ~2 grams |
Operating Temperature Range | -10°C to 50°C |
The BioAmp EXG Pill has a simple pinout for easy integration into circuits:
Pin | Name | Description |
---|---|---|
1 | VCC | Power supply input (3.3V to 5V). |
2 | GND | Ground connection. |
3 | OUT | Analog output signal representing the acquired bioelectrical signal. |
4 | REF | Reference electrode input for differential signal acquisition. |
The BioAmp EXG Pill can be easily interfaced with an Arduino UNO for signal acquisition and processing. Below is an example code snippet:
// Example code for interfacing BioAmp EXG Pill with Arduino UNO
// Reads the analog signal from the OUT pin and displays it on the Serial Monitor
const int bioAmpPin = A0; // Connect the OUT pin of BioAmp EXG Pill to Arduino A0
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(bioAmpPin, INPUT); // Set the bioAmpPin as input
}
void loop() {
int signalValue = analogRead(bioAmpPin); // Read the analog signal from BioAmp
Serial.println(signalValue); // Print the signal value to the Serial Monitor
delay(10); // Small delay for stable readings
}
Note: Use a plotting tool (e.g., Arduino Serial Plotter) to visualize the signal in real-time.
Issue | Solution |
---|---|
No signal or weak signal output | - Check electrode placement and ensure good skin contact. |
- Verify power supply connections and voltage levels. | |
Excessive noise in the output signal | - Use shielded cables and keep wires short. |
- Apply software or hardware filters to remove noise. | |
Signal appears distorted or clipped | - Ensure the power supply is stable and within the specified range. |
- Verify that the ADC input range matches the output range of the BioAmp. | |
Device not working at all | - Double-check all connections and ensure correct pin mapping. |
Can the BioAmp EXG Pill be used for EEG (Electroencephalogram) applications?
What type of electrodes should I use?
Can I use the BioAmp EXG Pill with a 3.3V microcontroller?
Is the device safe for continuous use?
How do I clean the electrodes?
This documentation provides a comprehensive guide to using the BioAmp EXG Pill for bioelectrical signal acquisition. For further assistance, refer to the manufacturer's resources or contact Upsidedownlabs support.