import Fuse, ElectricPowerfuse = new Fusefuse.trip_current = 2A +/- 10%fuse.fuse_type = Fuse.FuseType.NON_RESETTABLEfuse.response_type = Fuse.ResponseType.FASTfuse.package = "1206"# Connect fuse in series with power supplypower_input = new ElectricPowerprotected_power = new ElectricPower# Fuse protects the circuit from overcurrentpower_input.hv ~> fuse ~> protected_power.hvpower_input.lv ~ protected_power.lv# For resettable fuse (PTC)ptc_fuse = new Fuseptc_fuse.trip_current = 500mA +/- 20%ptc_fuse.fuse_type = Fuse.FuseType.RESETTABLEptc_fuse.response_type = Fuse.ResponseType.SLOW# Common applications: USB power protection, battery protection
Components
Fuse
Copy
Ask AI
import Fuse, ElectricPowerfuse = new Fusefuse.trip_current = 2A +/- 10%fuse.fuse_type = Fuse.FuseType.NON_RESETTABLEfuse.response_type = Fuse.ResponseType.FASTfuse.package = "1206"# Connect fuse in series with power supplypower_input = new ElectricPowerprotected_power = new ElectricPower# Fuse protects the circuit from overcurrentpower_input.hv ~> fuse ~> protected_power.hvpower_input.lv ~ protected_power.lv# For resettable fuse (PTC)ptc_fuse = new Fuseptc_fuse.trip_current = 500mA +/- 20%ptc_fuse.fuse_type = Fuse.FuseType.RESETTABLEptc_fuse.response_type = Fuse.ResponseType.SLOW# Common applications: USB power protection, battery protection
This module’s manufacturer name, as a string.Only exact matches on the manufacturer’s name will be found by the picker.
It’s recommended to fill this information based on what ato create component
provides.
Only for ModuleInterfaces.
If set to True, require that interface is connected to something outside
of the module it’s defined in.
Copy
Ask AI
import Fuse, ElectricPowerfuse = new Fusefuse.trip_current = 2A +/- 10%fuse.fuse_type = Fuse.FuseType.NON_RESETTABLEfuse.response_type = Fuse.ResponseType.FASTfuse.package = "1206"# Connect fuse in series with power supplypower_input = new ElectricPowerprotected_power = new ElectricPower# Fuse protects the circuit from overcurrentpower_input.hv ~> fuse ~> protected_power.hvpower_input.lv ~ protected_power.lv# For resettable fuse (PTC)ptc_fuse = new Fuseptc_fuse.trip_current = 500mA +/- 20%ptc_fuse.fuse_type = Fuse.FuseType.RESETTABLEptc_fuse.response_type = Fuse.ResponseType.SLOW# Common applications: USB power protection, battery protection