beaver/bq79600
A 10mm x 10mm PCB with a BQ79600 battery monitor IC featuring 8 pins for power, discharge control, threshold detection, trigger, output, control, and reset.
Usage: To use the "@tsci/beaver.bq79600" component: 1. Import the component: ```tsx import { BQ79600 } from "@tsci/beaver.bq79600" ``` 2. Use the component in a circuit design: ```tsx <board width="10mm" height="10mm"> <BQ79600 name="U1" footprint="kicad:Package_SO/TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm" /> </board> ``` Available pins: - pin1: VCC - pin2: DISCH - pin3: THRES - pin4: CTRL - pin5: GND - pin6: TRIG - pin7: OUT - pin8: RESET You can reference these pins using `sel.U1.[pinname]` in traces.
- Version
- 0.0.1
- License
- unset
- Stars
- 0
index.tsx
PCB
Schematic
export default () => (
<board width="10mm" height="10mm">
<chip
name="BQ79600"
footprint="kicad:Package_SO/TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm"
pinLabels={{
pin1: "VCC",
pin2: "DISCH",
pin3: "THRES",
pin4: "CTRL",
pin5: "GND",
pin6: "TRIG",
pin7: "OUT",
pin8: "RESET"
}}
/>
</board>
)