

The Switched Capacitor Circuit (SCC) is a versatile electronic component used to implement various analog functions such as filters, oscillators, and more. By switching capacitors in and out of the circuit at a high frequency, the SCC can effectively simulate resistors and other analog components, making it a valuable tool in both analog and digital circuit design.








| Parameter | Value |
|---|---|
| Supply Voltage | 3.3V to 5V |
| Operating Current | 1mA to 10mA |
| Switching Frequency | Up to 1MHz |
| Temperature Range | -40°C to +85°C |
| Package Type | DIP, SMD |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Supply Voltage (3.3V to 5V) |
| 2 | GND | Ground |
| 3 | IN | Input Signal |
| 4 | OUT | Output Signal |
| 5 | CLK | Clock Input for Switching Frequency |
| 6 | NC | No Connection |
| 7 | NC | No Connection |
| 8 | VEE | Negative Supply Voltage (Optional, for dual supply) |
/*
* Example code to use SCC with Arduino UNO
* This code generates a clock signal for the SCC
* and reads the output signal.
*/
const int clkPin = 9; // Pin connected to SCC CLK
const int inPin = A0; // Pin connected to SCC IN
const int outPin = A1; // Pin connected to SCC OUT
void setup() {
pinMode(clkPin, OUTPUT);
pinMode(inPin, INPUT);
pinMode(outPin, INPUT);
Serial.begin(9600);
}
void loop() {
// Generate a clock signal
digitalWrite(clkPin, HIGH);
delayMicroseconds(1); // Adjust for desired frequency
digitalWrite(clkPin, LOW);
delayMicroseconds(1); // Adjust for desired frequency
// Read the input and output signals
int inputSignal = analogRead(inPin);
int outputSignal = analogRead(outPin);
// Print the signals to the Serial Monitor
Serial.print("Input Signal: ");
Serial.print(inputSignal);
Serial.print(" Output Signal: ");
Serial.println(outputSignal);
delay(100); // Adjust as needed
}
No Output Signal:
Noisy Output Signal:
Incorrect Frequency Response:
By following this documentation, users can effectively utilize the SCC in their electronic projects, whether they are beginners or experienced engineers.