

Screen Printed Electrodes (SPEs) are a type of electrode created by printing conductive materials, such as carbon, silver, or gold, onto a substrate like ceramic or plastic. These electrodes are widely used in electrochemical sensors and biosensors due to their low cost, ease of fabrication, and versatility. SPEs are ideal for applications requiring disposable or portable sensing solutions.








Below are the general technical specifications for a typical Screen Printed Electrode. Note that specific parameters may vary depending on the manufacturer and model.
Screen Printed Electrodes typically consist of three main electrodes: the working electrode (WE), the reference electrode (RE), and the counter electrode (CE). These are connected to a potentiostat or other measurement device.
| Pin/Connection | Description |
|---|---|
| Working Electrode (WE) | The primary electrode where the electrochemical reaction occurs. Typically made of carbon, gold, or platinum. |
| Reference Electrode (RE) | Provides a stable reference potential for accurate measurements. Often made of silver/silver chloride (Ag/AgCl). |
| Counter Electrode (CE) | Completes the circuit by allowing current to flow. Usually made of carbon or platinum. |
Below is an example of how to interface a Screen Printed Electrode with an Arduino UNO for basic voltage measurement. Note that a signal conditioning circuit (e.g., an operational amplifier) may be required depending on the application.
// Example code for reading voltage from a Screen Printed Electrode (SPE)
// connected to an Arduino UNO analog input pin.
const int analogPin = A0; // Analog pin connected to the working electrode (WE)
float voltage = 0.0; // Variable to store the measured voltage
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the analog input
voltage = sensorValue * (5.0 / 1023.0); // Convert ADC value to voltage
Serial.print("Voltage: ");
Serial.print(voltage);
Serial.println(" V"); // Print the voltage to the Serial Monitor
delay(1000); // Wait for 1 second before the next reading
}
Note: This example assumes the SPE is connected to a signal conditioning circuit that outputs a voltage within the Arduino's 0–5 V input range.
No signal or weak response:
High noise in measurements:
Inconsistent results:
Q: Can I reuse a Screen Printed Electrode?
A: Disposable SPEs are designed for single use to ensure accuracy and prevent contamination. Reusable SPEs can be cleaned and reused, but their performance may degrade over time.
Q: What is the shelf life of an SPE?
A: The shelf life is typically 6–12 months, depending on storage conditions. Store SPEs in a cool, dry place to maximize their lifespan.
Q: Can I use SPEs for gas sensing?
A: Yes, SPEs can be modified with specific coatings or catalysts to detect gases. However, additional preparation may be required.
Q: What potentiostat should I use with SPEs?
A: Any potentiostat compatible with three-electrode systems can be used. Ensure it supports the voltage and current ranges required for your application.