Lisleapex Blog
Published

Use D718 B688 to make a first-stage push power amp

Today we are building the simplest power amplifier with a single stage drive. Although the circuit is simple, it can be used in practical ap

BeginnerWork in progress421
Use D718 B688 to make a first-stage push power amp

Things used in this project

Hardware components

D718
×1
B688
×1
IN4848
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

circuit_fJdtKzsM7Y.png

Code

Untitled file

C#
// Push-Pull Amplifier using D718 and B688 transistors

// Define the pin connections
const int inputPin = A0;    // Input signal
const int d718Pin = 9;      // D718 Base Pin
const int b688Pin = 10;     // B688 Base Pin

void setup() {
  pinMode(inputPin, INPUT);
  pinMode(d718Pin, OUTPUT);
  pinMode(b688Pin, OUTPUT);
}

void loop() {
  // Read input signal
  int inputValue = analogRead(inputPin);

  // Amplify the signal and send to transistors
  analogWrite(d718Pin, inputValue / 4);  // Amplify for D718
  analogWrite(b688Pin, 255 - (inputValue / 4));  // Inverse amplify for B688
}

Credits

Lisleapex Blog

Lisleapex Blog

22 projects • 0 followers
Fast Delivery of High-Quality Electronic Components

Comments