What's Next?

Congratulations

You have completed all 15 lessons of Circuits in C. You can now implement Ohm's law, series/parallel resistance, voltage and current dividers, power calculations, KCL node analysis, Wheatstone bridge, RC and RL transients, RLC oscillators (RK4), capacitor/inductor energy, and RC filter frequency response — all from scratch in C.

What to Explore Next

  • SPICE — Simulate arbitrary circuits using ngspice netlist format. The Circuits in C course is the perfect foundation for understanding what SPICE is computing.
  • Signal Processing in Python — Take filter design to the next level with scipy.signal: Butterworth filters, Bode plots, FFT analysis
  • Differential Equations — The RLC circuit is just one second-order ODE. The diffeq course generalizes RK4 to any system
  • Embedded Systems — Apply circuit knowledge to real hardware: ADC, PWM, I2C, SPI on microcontrollers

Key Formulas

ConceptFormula
Ohm's LawV = I·R
Series resistanceR = R₁ + R₂ + ...
Parallel resistance1/R = 1/R₁ + 1/R₂ + ...
Voltage dividerVout = Vin·R₂/(R₁+R₂)
RC time constantτ = R·C
RC chargingV(t) = Vs·(1 − e^{−t/τ})
RC low-pass gain`
LC resonancef₀ = 1/(2π√(LC))

References

← Previous