@typecad/rd_esp32s3
v1.0.2
Published
rd-ESP32S3 typeCAD package
Downloads
184
Maintainers
Readme
rd-ESP32S3
The reference design for the ESP32-S3-MINI-1-N8. A module that provides 2.4 GHz b/g/n WiFi and BLE 5 connectivity, MCU, and PCB antenna.
Use
Components
- U1:
ESP32_S3_MINI_1_N8
- Main IC - C1:
_0603.Capacitor
- Bulk capacitor - C2:
_0603.Capacitor
- Part of RC circuit for U1.EN - C3:
_0603.Capacitor
- Decoupling capacitor - C8:
_0603.Capacitor
- Debounce for SW1 - R1:
_0603.Resistor
- Part of RC circuit for U1.EN - R7:
_0603.Resistor
- Debounce for SW1 - SW1:
Component
- Button to reset IC
Input Connections
- vin:
Power
- 3.3 volt power supply
Code
Import
import { rd_esp32s3 } from "./rd_esp32s3";
Declaration
let typecad = new Schematic('esp32s3_implementation');
let board = new PCB('esp32s3_implementation');
let vin = new Power({voltage: 3.3});
let esp32s3 = new rd_esp32s3(typecad, 'U1', vin);
Create
esp32s3.pcb = board; // optionally include component layout
esp32s3.create();