Inductance

By Examples

void setup() {
    chipName("Inductance");

    pin(1, "GND", GROUND);
    pin(2, "IN1");
    pin(3, "OUT1");
    pin(4, "IN2");
    pin(5, "OUT2");
    pin(6, "VCC", POWER);

    // Set the inductance value between pins 2 and 3 to 0.1 H
    inductance(2, 3, 0.1);
    // Set the inductance value between pins 4 and 1 to 0.05 H
    inductance(4, 1, 0.05);
}

void loop() {
}