analog_devices_LT1763CS8 module#

Analog Devices LT1763 Low Dropout Linear Regulator

Component and circuit definitions for the Analog Devices LT1763 series low dropout linear regulators with complete application circuit.

class SymbolLT1763CS8[source]#

Bases: Symbol

pin_name_size: float | None = 0.7874#

Font size of pin name text of Pin objects in this symbol, in grid units. If unset, defers to a parent Symbol, if a parent exists. This can be overriden at the Pin level by setting its pin_name_size attribute.

pad_name_size: float | None = 0.7874#

Font size of pad name text of Pin objects in this symbol, in grid units. If unset, defers to a parent Symbol, if a parent exists. This can be overriden at the Pin level by setting its pad_name_size attribute.

OUT = Pin((-11, 3), 2, <Direction.Left: 'left'>)#
SENSE_ADJ = Pin((-11, 1), 2, <Direction.Left: 'left'>)#
GND0 = Pin((-11, -1), 2, <Direction.Left: 'left'>)#
BYP = Pin((-11, -3), 2, <Direction.Left: 'left'>)#
SHDN_NOT = Pin((11, -3), 2, <Direction.Right: 'right'>)#
GND1 = Pin((11, -1), 2, <Direction.Right: 'right'>)#
GND2 = Pin((11, 1), 2, <Direction.Right: 'right'>)#
IN = Pin((11, 3), 2, <Direction.Right: 'right'>)#
reference_designator = Shape[Text]#
value_label = Shape[Text]#
shapes = [Polygon(elements=((11.0, 5.0), (-11.0, 5.0), (-11.0, -5.0), (11.0, -5.0)), holes=()), Shape[Circle]]#
class LT1763CS8(output_voltage: float)[source]#

Bases: Component

Analog Devices LT1763 Low Dropout Linear Regulator

Parametric component supporting multiple output voltages: - 1.5V, 1.8V, 2.5V, 3.0V, 3.3V, 5.0V

Features: - Low dropout voltage: 300mV @ 500mA - Output current: 500mA - Input voltage range: 1.8V to 20V - Shutdown control - Thermal protection

Parameters:

output_voltage (float)

OUT = Port()#

Regulated output voltage

SENSE_ADJ = Port()#

Remote sense/adjust pin

GND0 = Port()#

Ground pin 1

BYP = Port()#

Bypass pin for internal reference

SHDN_NOT = Port()#

Shutdown control (active low)

GND1 = Port()#

Ground pin 2

GND2 = Port()#

Ground pin 3

IN = Port()#

Input voltage

class LT1763LDO(input_voltage: float, output_voltage: float, enable_control: bool = False)[source]#

Bases: Circuit

Parametric LT1763 Low Dropout Linear Regulator Circuit

Complete LDO circuit with proper input, output, and bypass capacitors as recommended in the LT1763 datasheet.

Features: - Input capacitor (Cin): 10µF - Output capacitor (Cout): 10µF - Bypass capacitor (Cbyp): 0.01µF - Parametric input and output voltages - Proper voltage ratings (2x expected voltage minimum) - Optional shutdown control

Parameters:
  • input_voltage (float) – Expected input voltage in volts

  • output_voltage (float) – Desired output voltage in volts (1.5, 1.8, 2.5, 3.0, 3.3, or 5.0)

  • enable_control (bool) – If True, exposes shutdown control pin; if False, ties SHDN high

power_in = Power()#
power_out = Power()#
enable: Port | None = None#

Enable control (active high). Pull low to shutdown regulator.

Device#

alias of LT1763LDO