@tscircuit/props 0.0.479 → 0.0.481
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/dist/index.d.ts +2220 -62
- package/dist/index.js +49 -7
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +93 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6464,6 +6464,9 @@ declare const supplierProps: z.ZodObject<{
|
|
|
6464
6464
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6465
6465
|
}>;
|
|
6466
6466
|
interface PinAttributeMap {
|
|
6467
|
+
capabilities?: Array<"i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx">;
|
|
6468
|
+
activeCapabilities?: Array<"i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx">;
|
|
6469
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx";
|
|
6467
6470
|
providesPower?: boolean;
|
|
6468
6471
|
requiresPower?: boolean;
|
|
6469
6472
|
providesGround?: boolean;
|
|
@@ -6474,8 +6477,21 @@ interface PinAttributeMap {
|
|
|
6474
6477
|
includeInBoardPinout?: boolean;
|
|
6475
6478
|
highlightColor?: string;
|
|
6476
6479
|
mustBeConnected?: boolean;
|
|
6480
|
+
canUseInternalPullup?: boolean;
|
|
6481
|
+
isUsingInternalPullup?: boolean;
|
|
6482
|
+
needsExternalPullup?: boolean;
|
|
6483
|
+
canUseInternalPulldown?: boolean;
|
|
6484
|
+
isUsingInternalPulldown?: boolean;
|
|
6485
|
+
needsExternalPulldown?: boolean;
|
|
6486
|
+
canUseOpenDrain?: boolean;
|
|
6487
|
+
isUsingOpenDrain?: boolean;
|
|
6488
|
+
canUsePushPull?: boolean;
|
|
6489
|
+
isUsingPushPull?: boolean;
|
|
6477
6490
|
}
|
|
6478
6491
|
declare const pinAttributeMap: z.ZodObject<{
|
|
6492
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6493
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6494
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
6479
6495
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
6480
6496
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
6481
6497
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6486,7 +6502,20 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6486
6502
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
6487
6503
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
6488
6504
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
6505
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6506
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6507
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6508
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6509
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6510
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6511
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6512
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6513
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6514
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6489
6515
|
}, "strip", z.ZodTypeAny, {
|
|
6516
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6517
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6518
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6490
6519
|
providesPower?: boolean | undefined;
|
|
6491
6520
|
requiresPower?: boolean | undefined;
|
|
6492
6521
|
providesGround?: boolean | undefined;
|
|
@@ -6497,7 +6526,20 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6497
6526
|
includeInBoardPinout?: boolean | undefined;
|
|
6498
6527
|
highlightColor?: string | undefined;
|
|
6499
6528
|
mustBeConnected?: boolean | undefined;
|
|
6529
|
+
canUseInternalPullup?: boolean | undefined;
|
|
6530
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
6531
|
+
needsExternalPullup?: boolean | undefined;
|
|
6532
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
6533
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
6534
|
+
needsExternalPulldown?: boolean | undefined;
|
|
6535
|
+
canUseOpenDrain?: boolean | undefined;
|
|
6536
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
6537
|
+
canUsePushPull?: boolean | undefined;
|
|
6538
|
+
isUsingPushPull?: boolean | undefined;
|
|
6500
6539
|
}, {
|
|
6540
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6541
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6542
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6501
6543
|
providesPower?: boolean | undefined;
|
|
6502
6544
|
requiresPower?: boolean | undefined;
|
|
6503
6545
|
providesGround?: boolean | undefined;
|
|
@@ -6508,6 +6550,16 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6508
6550
|
includeInBoardPinout?: boolean | undefined;
|
|
6509
6551
|
highlightColor?: string | undefined;
|
|
6510
6552
|
mustBeConnected?: boolean | undefined;
|
|
6553
|
+
canUseInternalPullup?: boolean | undefined;
|
|
6554
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
6555
|
+
needsExternalPullup?: boolean | undefined;
|
|
6556
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
6557
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
6558
|
+
needsExternalPulldown?: boolean | undefined;
|
|
6559
|
+
canUseOpenDrain?: boolean | undefined;
|
|
6560
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
6561
|
+
canUsePushPull?: boolean | undefined;
|
|
6562
|
+
isUsingPushPull?: boolean | undefined;
|
|
6511
6563
|
}>;
|
|
6512
6564
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
6513
6565
|
key?: any;
|
|
@@ -9591,6 +9643,9 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9591
9643
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
9592
9644
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
9593
9645
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9646
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
9647
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
9648
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
9594
9649
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
9595
9650
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
9596
9651
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9601,7 +9656,20 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9601
9656
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
9602
9657
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
9603
9658
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
9604
|
-
|
|
9659
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
9660
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
9661
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
9662
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
9663
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
9664
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
9665
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
9666
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
9667
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9668
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9669
|
+
}, "strip", z.ZodTypeAny, {
|
|
9670
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9671
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9672
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
9605
9673
|
providesPower?: boolean | undefined;
|
|
9606
9674
|
requiresPower?: boolean | undefined;
|
|
9607
9675
|
providesGround?: boolean | undefined;
|
|
@@ -9612,7 +9680,20 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9612
9680
|
includeInBoardPinout?: boolean | undefined;
|
|
9613
9681
|
highlightColor?: string | undefined;
|
|
9614
9682
|
mustBeConnected?: boolean | undefined;
|
|
9615
|
-
|
|
9683
|
+
canUseInternalPullup?: boolean | undefined;
|
|
9684
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
9685
|
+
needsExternalPullup?: boolean | undefined;
|
|
9686
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
9687
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
9688
|
+
needsExternalPulldown?: boolean | undefined;
|
|
9689
|
+
canUseOpenDrain?: boolean | undefined;
|
|
9690
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
9691
|
+
canUsePushPull?: boolean | undefined;
|
|
9692
|
+
isUsingPushPull?: boolean | undefined;
|
|
9693
|
+
}, {
|
|
9694
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9695
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9696
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
9616
9697
|
providesPower?: boolean | undefined;
|
|
9617
9698
|
requiresPower?: boolean | undefined;
|
|
9618
9699
|
providesGround?: boolean | undefined;
|
|
@@ -9623,6 +9704,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9623
9704
|
includeInBoardPinout?: boolean | undefined;
|
|
9624
9705
|
highlightColor?: string | undefined;
|
|
9625
9706
|
mustBeConnected?: boolean | undefined;
|
|
9707
|
+
canUseInternalPullup?: boolean | undefined;
|
|
9708
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
9709
|
+
needsExternalPullup?: boolean | undefined;
|
|
9710
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
9711
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
9712
|
+
needsExternalPulldown?: boolean | undefined;
|
|
9713
|
+
canUseOpenDrain?: boolean | undefined;
|
|
9714
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
9715
|
+
canUsePushPull?: boolean | undefined;
|
|
9716
|
+
isUsingPushPull?: boolean | undefined;
|
|
9626
9717
|
}>>>;
|
|
9627
9718
|
mfn: z.ZodOptional<z.ZodString>;
|
|
9628
9719
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -9682,6 +9773,9 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9682
9773
|
displayName?: string | undefined;
|
|
9683
9774
|
datasheetUrl?: string | undefined;
|
|
9684
9775
|
pinAttributes?: Record<string, {
|
|
9776
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9777
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9778
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
9685
9779
|
providesPower?: boolean | undefined;
|
|
9686
9780
|
requiresPower?: boolean | undefined;
|
|
9687
9781
|
providesGround?: boolean | undefined;
|
|
@@ -9692,6 +9786,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9692
9786
|
includeInBoardPinout?: boolean | undefined;
|
|
9693
9787
|
highlightColor?: string | undefined;
|
|
9694
9788
|
mustBeConnected?: boolean | undefined;
|
|
9789
|
+
canUseInternalPullup?: boolean | undefined;
|
|
9790
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
9791
|
+
needsExternalPullup?: boolean | undefined;
|
|
9792
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
9793
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
9794
|
+
needsExternalPulldown?: boolean | undefined;
|
|
9795
|
+
canUseOpenDrain?: boolean | undefined;
|
|
9796
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
9797
|
+
canUsePushPull?: boolean | undefined;
|
|
9798
|
+
isUsingPushPull?: boolean | undefined;
|
|
9695
9799
|
}> | undefined;
|
|
9696
9800
|
cadModel?: string | {
|
|
9697
9801
|
stlUrl: string;
|
|
@@ -10188,6 +10292,9 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10188
10292
|
displayName?: string | undefined;
|
|
10189
10293
|
datasheetUrl?: string | undefined;
|
|
10190
10294
|
pinAttributes?: Record<string, {
|
|
10295
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
10296
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
10297
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
10191
10298
|
providesPower?: boolean | undefined;
|
|
10192
10299
|
requiresPower?: boolean | undefined;
|
|
10193
10300
|
providesGround?: boolean | undefined;
|
|
@@ -10198,6 +10305,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10198
10305
|
includeInBoardPinout?: boolean | undefined;
|
|
10199
10306
|
highlightColor?: string | undefined;
|
|
10200
10307
|
mustBeConnected?: boolean | undefined;
|
|
10308
|
+
canUseInternalPullup?: boolean | undefined;
|
|
10309
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
10310
|
+
needsExternalPullup?: boolean | undefined;
|
|
10311
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
10312
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
10313
|
+
needsExternalPulldown?: boolean | undefined;
|
|
10314
|
+
canUseOpenDrain?: boolean | undefined;
|
|
10315
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
10316
|
+
canUsePushPull?: boolean | undefined;
|
|
10317
|
+
isUsingPushPull?: boolean | undefined;
|
|
10201
10318
|
}> | undefined;
|
|
10202
10319
|
cadModel?: string | {
|
|
10203
10320
|
stlUrl: string;
|
|
@@ -13689,6 +13806,9 @@ declare const componentProps: z.ZodObject<{
|
|
|
13689
13806
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
13690
13807
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
13691
13808
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13809
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
13810
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
13811
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
13692
13812
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
13693
13813
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
13694
13814
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13699,7 +13819,20 @@ declare const componentProps: z.ZodObject<{
|
|
|
13699
13819
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
13700
13820
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
13701
13821
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
13702
|
-
|
|
13822
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
13823
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
13824
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
13825
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
13826
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
13827
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
13828
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
13829
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
13830
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13831
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13832
|
+
}, "strip", z.ZodTypeAny, {
|
|
13833
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13834
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13835
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
13703
13836
|
providesPower?: boolean | undefined;
|
|
13704
13837
|
requiresPower?: boolean | undefined;
|
|
13705
13838
|
providesGround?: boolean | undefined;
|
|
@@ -13710,7 +13843,20 @@ declare const componentProps: z.ZodObject<{
|
|
|
13710
13843
|
includeInBoardPinout?: boolean | undefined;
|
|
13711
13844
|
highlightColor?: string | undefined;
|
|
13712
13845
|
mustBeConnected?: boolean | undefined;
|
|
13713
|
-
|
|
13846
|
+
canUseInternalPullup?: boolean | undefined;
|
|
13847
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
13848
|
+
needsExternalPullup?: boolean | undefined;
|
|
13849
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
13850
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
13851
|
+
needsExternalPulldown?: boolean | undefined;
|
|
13852
|
+
canUseOpenDrain?: boolean | undefined;
|
|
13853
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
13854
|
+
canUsePushPull?: boolean | undefined;
|
|
13855
|
+
isUsingPushPull?: boolean | undefined;
|
|
13856
|
+
}, {
|
|
13857
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13858
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13859
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
13714
13860
|
providesPower?: boolean | undefined;
|
|
13715
13861
|
requiresPower?: boolean | undefined;
|
|
13716
13862
|
providesGround?: boolean | undefined;
|
|
@@ -13721,6 +13867,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
13721
13867
|
includeInBoardPinout?: boolean | undefined;
|
|
13722
13868
|
highlightColor?: string | undefined;
|
|
13723
13869
|
mustBeConnected?: boolean | undefined;
|
|
13870
|
+
canUseInternalPullup?: boolean | undefined;
|
|
13871
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
13872
|
+
needsExternalPullup?: boolean | undefined;
|
|
13873
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
13874
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
13875
|
+
needsExternalPulldown?: boolean | undefined;
|
|
13876
|
+
canUseOpenDrain?: boolean | undefined;
|
|
13877
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
13878
|
+
canUsePushPull?: boolean | undefined;
|
|
13879
|
+
isUsingPushPull?: boolean | undefined;
|
|
13724
13880
|
}>>>;
|
|
13725
13881
|
mfn: z.ZodOptional<z.ZodString>;
|
|
13726
13882
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -13780,6 +13936,9 @@ declare const componentProps: z.ZodObject<{
|
|
|
13780
13936
|
displayName?: string | undefined;
|
|
13781
13937
|
datasheetUrl?: string | undefined;
|
|
13782
13938
|
pinAttributes?: Record<string, {
|
|
13939
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13940
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13941
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
13783
13942
|
providesPower?: boolean | undefined;
|
|
13784
13943
|
requiresPower?: boolean | undefined;
|
|
13785
13944
|
providesGround?: boolean | undefined;
|
|
@@ -13790,6 +13949,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
13790
13949
|
includeInBoardPinout?: boolean | undefined;
|
|
13791
13950
|
highlightColor?: string | undefined;
|
|
13792
13951
|
mustBeConnected?: boolean | undefined;
|
|
13952
|
+
canUseInternalPullup?: boolean | undefined;
|
|
13953
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
13954
|
+
needsExternalPullup?: boolean | undefined;
|
|
13955
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
13956
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
13957
|
+
needsExternalPulldown?: boolean | undefined;
|
|
13958
|
+
canUseOpenDrain?: boolean | undefined;
|
|
13959
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
13960
|
+
canUsePushPull?: boolean | undefined;
|
|
13961
|
+
isUsingPushPull?: boolean | undefined;
|
|
13793
13962
|
}> | undefined;
|
|
13794
13963
|
cadModel?: string | {
|
|
13795
13964
|
stlUrl: string;
|
|
@@ -14286,6 +14455,9 @@ declare const componentProps: z.ZodObject<{
|
|
|
14286
14455
|
displayName?: string | undefined;
|
|
14287
14456
|
datasheetUrl?: string | undefined;
|
|
14288
14457
|
pinAttributes?: Record<string, {
|
|
14458
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
14459
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
14460
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
14289
14461
|
providesPower?: boolean | undefined;
|
|
14290
14462
|
requiresPower?: boolean | undefined;
|
|
14291
14463
|
providesGround?: boolean | undefined;
|
|
@@ -14296,6 +14468,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
14296
14468
|
includeInBoardPinout?: boolean | undefined;
|
|
14297
14469
|
highlightColor?: string | undefined;
|
|
14298
14470
|
mustBeConnected?: boolean | undefined;
|
|
14471
|
+
canUseInternalPullup?: boolean | undefined;
|
|
14472
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
14473
|
+
needsExternalPullup?: boolean | undefined;
|
|
14474
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
14475
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
14476
|
+
needsExternalPulldown?: boolean | undefined;
|
|
14477
|
+
canUseOpenDrain?: boolean | undefined;
|
|
14478
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
14479
|
+
canUsePushPull?: boolean | undefined;
|
|
14480
|
+
isUsingPushPull?: boolean | undefined;
|
|
14299
14481
|
}> | undefined;
|
|
14300
14482
|
cadModel?: string | {
|
|
14301
14483
|
stlUrl: string;
|
|
@@ -30990,6 +31172,9 @@ declare const chipProps: z.ZodObject<{
|
|
|
30990
31172
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
30991
31173
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
30992
31174
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
31175
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
31176
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
31177
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
30993
31178
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
30994
31179
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
30995
31180
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31000,7 +31185,20 @@ declare const chipProps: z.ZodObject<{
|
|
|
31000
31185
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
31001
31186
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
31002
31187
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
31003
|
-
|
|
31188
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
31189
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
31190
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
31191
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
31192
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
31193
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
31194
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
31195
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
31196
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31197
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31198
|
+
}, "strip", z.ZodTypeAny, {
|
|
31199
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31200
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31201
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
31004
31202
|
providesPower?: boolean | undefined;
|
|
31005
31203
|
requiresPower?: boolean | undefined;
|
|
31006
31204
|
providesGround?: boolean | undefined;
|
|
@@ -31011,7 +31209,20 @@ declare const chipProps: z.ZodObject<{
|
|
|
31011
31209
|
includeInBoardPinout?: boolean | undefined;
|
|
31012
31210
|
highlightColor?: string | undefined;
|
|
31013
31211
|
mustBeConnected?: boolean | undefined;
|
|
31014
|
-
|
|
31212
|
+
canUseInternalPullup?: boolean | undefined;
|
|
31213
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
31214
|
+
needsExternalPullup?: boolean | undefined;
|
|
31215
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
31216
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
31217
|
+
needsExternalPulldown?: boolean | undefined;
|
|
31218
|
+
canUseOpenDrain?: boolean | undefined;
|
|
31219
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
31220
|
+
canUsePushPull?: boolean | undefined;
|
|
31221
|
+
isUsingPushPull?: boolean | undefined;
|
|
31222
|
+
}, {
|
|
31223
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31224
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31225
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
31015
31226
|
providesPower?: boolean | undefined;
|
|
31016
31227
|
requiresPower?: boolean | undefined;
|
|
31017
31228
|
providesGround?: boolean | undefined;
|
|
@@ -31022,6 +31233,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
31022
31233
|
includeInBoardPinout?: boolean | undefined;
|
|
31023
31234
|
highlightColor?: string | undefined;
|
|
31024
31235
|
mustBeConnected?: boolean | undefined;
|
|
31236
|
+
canUseInternalPullup?: boolean | undefined;
|
|
31237
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
31238
|
+
needsExternalPullup?: boolean | undefined;
|
|
31239
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
31240
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
31241
|
+
needsExternalPulldown?: boolean | undefined;
|
|
31242
|
+
canUseOpenDrain?: boolean | undefined;
|
|
31243
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
31244
|
+
canUsePushPull?: boolean | undefined;
|
|
31245
|
+
isUsingPushPull?: boolean | undefined;
|
|
31025
31246
|
}>>>;
|
|
31026
31247
|
mfn: z.ZodOptional<z.ZodString>;
|
|
31027
31248
|
} & {
|
|
@@ -31378,6 +31599,9 @@ declare const chipProps: z.ZodObject<{
|
|
|
31378
31599
|
displayName?: string | undefined;
|
|
31379
31600
|
datasheetUrl?: string | undefined;
|
|
31380
31601
|
pinAttributes?: Record<string, {
|
|
31602
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31603
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31604
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
31381
31605
|
providesPower?: boolean | undefined;
|
|
31382
31606
|
requiresPower?: boolean | undefined;
|
|
31383
31607
|
providesGround?: boolean | undefined;
|
|
@@ -31388,6 +31612,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
31388
31612
|
includeInBoardPinout?: boolean | undefined;
|
|
31389
31613
|
highlightColor?: string | undefined;
|
|
31390
31614
|
mustBeConnected?: boolean | undefined;
|
|
31615
|
+
canUseInternalPullup?: boolean | undefined;
|
|
31616
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
31617
|
+
needsExternalPullup?: boolean | undefined;
|
|
31618
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
31619
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
31620
|
+
needsExternalPulldown?: boolean | undefined;
|
|
31621
|
+
canUseOpenDrain?: boolean | undefined;
|
|
31622
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
31623
|
+
canUsePushPull?: boolean | undefined;
|
|
31624
|
+
isUsingPushPull?: boolean | undefined;
|
|
31391
31625
|
}> | undefined;
|
|
31392
31626
|
cadModel?: string | {
|
|
31393
31627
|
stlUrl: string;
|
|
@@ -31960,6 +32194,9 @@ declare const chipProps: z.ZodObject<{
|
|
|
31960
32194
|
displayName?: string | undefined;
|
|
31961
32195
|
datasheetUrl?: string | undefined;
|
|
31962
32196
|
pinAttributes?: Record<string, {
|
|
32197
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
32198
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
32199
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
31963
32200
|
providesPower?: boolean | undefined;
|
|
31964
32201
|
requiresPower?: boolean | undefined;
|
|
31965
32202
|
providesGround?: boolean | undefined;
|
|
@@ -31970,6 +32207,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
31970
32207
|
includeInBoardPinout?: boolean | undefined;
|
|
31971
32208
|
highlightColor?: string | undefined;
|
|
31972
32209
|
mustBeConnected?: boolean | undefined;
|
|
32210
|
+
canUseInternalPullup?: boolean | undefined;
|
|
32211
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
32212
|
+
needsExternalPullup?: boolean | undefined;
|
|
32213
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
32214
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
32215
|
+
needsExternalPulldown?: boolean | undefined;
|
|
32216
|
+
canUseOpenDrain?: boolean | undefined;
|
|
32217
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
32218
|
+
canUsePushPull?: boolean | undefined;
|
|
32219
|
+
isUsingPushPull?: boolean | undefined;
|
|
31973
32220
|
}> | undefined;
|
|
31974
32221
|
cadModel?: string | {
|
|
31975
32222
|
stlUrl: string;
|
|
@@ -35538,6 +35785,9 @@ declare const bugProps: z.ZodObject<{
|
|
|
35538
35785
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
35539
35786
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
35540
35787
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
35788
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
35789
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
35790
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
35541
35791
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
35542
35792
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
35543
35793
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -35548,7 +35798,20 @@ declare const bugProps: z.ZodObject<{
|
|
|
35548
35798
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
35549
35799
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
35550
35800
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
35551
|
-
|
|
35801
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
35802
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
35803
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
35804
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
35805
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
35806
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
35807
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
35808
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
35809
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35810
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35811
|
+
}, "strip", z.ZodTypeAny, {
|
|
35812
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35813
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35814
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
35552
35815
|
providesPower?: boolean | undefined;
|
|
35553
35816
|
requiresPower?: boolean | undefined;
|
|
35554
35817
|
providesGround?: boolean | undefined;
|
|
@@ -35559,7 +35822,20 @@ declare const bugProps: z.ZodObject<{
|
|
|
35559
35822
|
includeInBoardPinout?: boolean | undefined;
|
|
35560
35823
|
highlightColor?: string | undefined;
|
|
35561
35824
|
mustBeConnected?: boolean | undefined;
|
|
35562
|
-
|
|
35825
|
+
canUseInternalPullup?: boolean | undefined;
|
|
35826
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
35827
|
+
needsExternalPullup?: boolean | undefined;
|
|
35828
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
35829
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
35830
|
+
needsExternalPulldown?: boolean | undefined;
|
|
35831
|
+
canUseOpenDrain?: boolean | undefined;
|
|
35832
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
35833
|
+
canUsePushPull?: boolean | undefined;
|
|
35834
|
+
isUsingPushPull?: boolean | undefined;
|
|
35835
|
+
}, {
|
|
35836
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35837
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35838
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
35563
35839
|
providesPower?: boolean | undefined;
|
|
35564
35840
|
requiresPower?: boolean | undefined;
|
|
35565
35841
|
providesGround?: boolean | undefined;
|
|
@@ -35570,6 +35846,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
35570
35846
|
includeInBoardPinout?: boolean | undefined;
|
|
35571
35847
|
highlightColor?: string | undefined;
|
|
35572
35848
|
mustBeConnected?: boolean | undefined;
|
|
35849
|
+
canUseInternalPullup?: boolean | undefined;
|
|
35850
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
35851
|
+
needsExternalPullup?: boolean | undefined;
|
|
35852
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
35853
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
35854
|
+
needsExternalPulldown?: boolean | undefined;
|
|
35855
|
+
canUseOpenDrain?: boolean | undefined;
|
|
35856
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
35857
|
+
canUsePushPull?: boolean | undefined;
|
|
35858
|
+
isUsingPushPull?: boolean | undefined;
|
|
35573
35859
|
}>>>;
|
|
35574
35860
|
mfn: z.ZodOptional<z.ZodString>;
|
|
35575
35861
|
} & {
|
|
@@ -35926,6 +36212,9 @@ declare const bugProps: z.ZodObject<{
|
|
|
35926
36212
|
displayName?: string | undefined;
|
|
35927
36213
|
datasheetUrl?: string | undefined;
|
|
35928
36214
|
pinAttributes?: Record<string, {
|
|
36215
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
36216
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
36217
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
35929
36218
|
providesPower?: boolean | undefined;
|
|
35930
36219
|
requiresPower?: boolean | undefined;
|
|
35931
36220
|
providesGround?: boolean | undefined;
|
|
@@ -35936,6 +36225,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
35936
36225
|
includeInBoardPinout?: boolean | undefined;
|
|
35937
36226
|
highlightColor?: string | undefined;
|
|
35938
36227
|
mustBeConnected?: boolean | undefined;
|
|
36228
|
+
canUseInternalPullup?: boolean | undefined;
|
|
36229
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
36230
|
+
needsExternalPullup?: boolean | undefined;
|
|
36231
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
36232
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
36233
|
+
needsExternalPulldown?: boolean | undefined;
|
|
36234
|
+
canUseOpenDrain?: boolean | undefined;
|
|
36235
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
36236
|
+
canUsePushPull?: boolean | undefined;
|
|
36237
|
+
isUsingPushPull?: boolean | undefined;
|
|
35939
36238
|
}> | undefined;
|
|
35940
36239
|
cadModel?: string | {
|
|
35941
36240
|
stlUrl: string;
|
|
@@ -36508,6 +36807,9 @@ declare const bugProps: z.ZodObject<{
|
|
|
36508
36807
|
displayName?: string | undefined;
|
|
36509
36808
|
datasheetUrl?: string | undefined;
|
|
36510
36809
|
pinAttributes?: Record<string, {
|
|
36810
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
36811
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
36812
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
36511
36813
|
providesPower?: boolean | undefined;
|
|
36512
36814
|
requiresPower?: boolean | undefined;
|
|
36513
36815
|
providesGround?: boolean | undefined;
|
|
@@ -36518,6 +36820,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
36518
36820
|
includeInBoardPinout?: boolean | undefined;
|
|
36519
36821
|
highlightColor?: string | undefined;
|
|
36520
36822
|
mustBeConnected?: boolean | undefined;
|
|
36823
|
+
canUseInternalPullup?: boolean | undefined;
|
|
36824
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
36825
|
+
needsExternalPullup?: boolean | undefined;
|
|
36826
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
36827
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
36828
|
+
needsExternalPulldown?: boolean | undefined;
|
|
36829
|
+
canUseOpenDrain?: boolean | undefined;
|
|
36830
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
36831
|
+
canUsePushPull?: boolean | undefined;
|
|
36832
|
+
isUsingPushPull?: boolean | undefined;
|
|
36521
36833
|
}> | undefined;
|
|
36522
36834
|
cadModel?: string | {
|
|
36523
36835
|
stlUrl: string;
|
|
@@ -40085,6 +40397,9 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40085
40397
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
40086
40398
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
40087
40399
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
40400
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
40401
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
40402
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
40088
40403
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
40089
40404
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
40090
40405
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40095,7 +40410,20 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40095
40410
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
40096
40411
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
40097
40412
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
40098
|
-
|
|
40413
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
40414
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
40415
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
40416
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
40417
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
40418
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
40419
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
40420
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
40421
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40422
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40423
|
+
}, "strip", z.ZodTypeAny, {
|
|
40424
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40425
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40426
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
40099
40427
|
providesPower?: boolean | undefined;
|
|
40100
40428
|
requiresPower?: boolean | undefined;
|
|
40101
40429
|
providesGround?: boolean | undefined;
|
|
@@ -40106,7 +40434,20 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40106
40434
|
includeInBoardPinout?: boolean | undefined;
|
|
40107
40435
|
highlightColor?: string | undefined;
|
|
40108
40436
|
mustBeConnected?: boolean | undefined;
|
|
40109
|
-
|
|
40437
|
+
canUseInternalPullup?: boolean | undefined;
|
|
40438
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
40439
|
+
needsExternalPullup?: boolean | undefined;
|
|
40440
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
40441
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
40442
|
+
needsExternalPulldown?: boolean | undefined;
|
|
40443
|
+
canUseOpenDrain?: boolean | undefined;
|
|
40444
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
40445
|
+
canUsePushPull?: boolean | undefined;
|
|
40446
|
+
isUsingPushPull?: boolean | undefined;
|
|
40447
|
+
}, {
|
|
40448
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40449
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40450
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
40110
40451
|
providesPower?: boolean | undefined;
|
|
40111
40452
|
requiresPower?: boolean | undefined;
|
|
40112
40453
|
providesGround?: boolean | undefined;
|
|
@@ -40117,6 +40458,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40117
40458
|
includeInBoardPinout?: boolean | undefined;
|
|
40118
40459
|
highlightColor?: string | undefined;
|
|
40119
40460
|
mustBeConnected?: boolean | undefined;
|
|
40461
|
+
canUseInternalPullup?: boolean | undefined;
|
|
40462
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
40463
|
+
needsExternalPullup?: boolean | undefined;
|
|
40464
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
40465
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
40466
|
+
needsExternalPulldown?: boolean | undefined;
|
|
40467
|
+
canUseOpenDrain?: boolean | undefined;
|
|
40468
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
40469
|
+
canUsePushPull?: boolean | undefined;
|
|
40470
|
+
isUsingPushPull?: boolean | undefined;
|
|
40120
40471
|
}>>>;
|
|
40121
40472
|
mfn: z.ZodOptional<z.ZodString>;
|
|
40122
40473
|
} & {
|
|
@@ -40473,6 +40824,9 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40473
40824
|
displayName?: string | undefined;
|
|
40474
40825
|
datasheetUrl?: string | undefined;
|
|
40475
40826
|
pinAttributes?: Record<string, {
|
|
40827
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40828
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40829
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
40476
40830
|
providesPower?: boolean | undefined;
|
|
40477
40831
|
requiresPower?: boolean | undefined;
|
|
40478
40832
|
providesGround?: boolean | undefined;
|
|
@@ -40483,6 +40837,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40483
40837
|
includeInBoardPinout?: boolean | undefined;
|
|
40484
40838
|
highlightColor?: string | undefined;
|
|
40485
40839
|
mustBeConnected?: boolean | undefined;
|
|
40840
|
+
canUseInternalPullup?: boolean | undefined;
|
|
40841
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
40842
|
+
needsExternalPullup?: boolean | undefined;
|
|
40843
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
40844
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
40845
|
+
needsExternalPulldown?: boolean | undefined;
|
|
40846
|
+
canUseOpenDrain?: boolean | undefined;
|
|
40847
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
40848
|
+
canUsePushPull?: boolean | undefined;
|
|
40849
|
+
isUsingPushPull?: boolean | undefined;
|
|
40486
40850
|
}> | undefined;
|
|
40487
40851
|
cadModel?: string | {
|
|
40488
40852
|
stlUrl: string;
|
|
@@ -41055,6 +41419,9 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41055
41419
|
displayName?: string | undefined;
|
|
41056
41420
|
datasheetUrl?: string | undefined;
|
|
41057
41421
|
pinAttributes?: Record<string, {
|
|
41422
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
41423
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
41424
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
41058
41425
|
providesPower?: boolean | undefined;
|
|
41059
41426
|
requiresPower?: boolean | undefined;
|
|
41060
41427
|
providesGround?: boolean | undefined;
|
|
@@ -41065,6 +41432,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41065
41432
|
includeInBoardPinout?: boolean | undefined;
|
|
41066
41433
|
highlightColor?: string | undefined;
|
|
41067
41434
|
mustBeConnected?: boolean | undefined;
|
|
41435
|
+
canUseInternalPullup?: boolean | undefined;
|
|
41436
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
41437
|
+
needsExternalPullup?: boolean | undefined;
|
|
41438
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
41439
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
41440
|
+
needsExternalPulldown?: boolean | undefined;
|
|
41441
|
+
canUseOpenDrain?: boolean | undefined;
|
|
41442
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
41443
|
+
canUsePushPull?: boolean | undefined;
|
|
41444
|
+
isUsingPushPull?: boolean | undefined;
|
|
41068
41445
|
}> | undefined;
|
|
41069
41446
|
cadModel?: string | {
|
|
41070
41447
|
stlUrl: string;
|
|
@@ -44664,6 +45041,9 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44664
45041
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
44665
45042
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
44666
45043
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45044
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
45045
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
45046
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
44667
45047
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
44668
45048
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
44669
45049
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -44674,7 +45054,20 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44674
45054
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
44675
45055
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
44676
45056
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
44677
|
-
|
|
45057
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
45058
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
45059
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
45060
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
45061
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
45062
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
45063
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
45064
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
45065
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45066
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45067
|
+
}, "strip", z.ZodTypeAny, {
|
|
45068
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45069
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45070
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
44678
45071
|
providesPower?: boolean | undefined;
|
|
44679
45072
|
requiresPower?: boolean | undefined;
|
|
44680
45073
|
providesGround?: boolean | undefined;
|
|
@@ -44685,7 +45078,20 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44685
45078
|
includeInBoardPinout?: boolean | undefined;
|
|
44686
45079
|
highlightColor?: string | undefined;
|
|
44687
45080
|
mustBeConnected?: boolean | undefined;
|
|
44688
|
-
|
|
45081
|
+
canUseInternalPullup?: boolean | undefined;
|
|
45082
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
45083
|
+
needsExternalPullup?: boolean | undefined;
|
|
45084
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
45085
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
45086
|
+
needsExternalPulldown?: boolean | undefined;
|
|
45087
|
+
canUseOpenDrain?: boolean | undefined;
|
|
45088
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
45089
|
+
canUsePushPull?: boolean | undefined;
|
|
45090
|
+
isUsingPushPull?: boolean | undefined;
|
|
45091
|
+
}, {
|
|
45092
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45093
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45094
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
44689
45095
|
providesPower?: boolean | undefined;
|
|
44690
45096
|
requiresPower?: boolean | undefined;
|
|
44691
45097
|
providesGround?: boolean | undefined;
|
|
@@ -44696,6 +45102,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44696
45102
|
includeInBoardPinout?: boolean | undefined;
|
|
44697
45103
|
highlightColor?: string | undefined;
|
|
44698
45104
|
mustBeConnected?: boolean | undefined;
|
|
45105
|
+
canUseInternalPullup?: boolean | undefined;
|
|
45106
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
45107
|
+
needsExternalPullup?: boolean | undefined;
|
|
45108
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
45109
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
45110
|
+
needsExternalPulldown?: boolean | undefined;
|
|
45111
|
+
canUseOpenDrain?: boolean | undefined;
|
|
45112
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
45113
|
+
canUsePushPull?: boolean | undefined;
|
|
45114
|
+
isUsingPushPull?: boolean | undefined;
|
|
44699
45115
|
}>>>;
|
|
44700
45116
|
mfn: z.ZodOptional<z.ZodString>;
|
|
44701
45117
|
} & {
|
|
@@ -45041,6 +45457,9 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45041
45457
|
displayName?: string | undefined;
|
|
45042
45458
|
datasheetUrl?: string | undefined;
|
|
45043
45459
|
pinAttributes?: Record<string, {
|
|
45460
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45461
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45462
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
45044
45463
|
providesPower?: boolean | undefined;
|
|
45045
45464
|
requiresPower?: boolean | undefined;
|
|
45046
45465
|
providesGround?: boolean | undefined;
|
|
@@ -45051,6 +45470,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45051
45470
|
includeInBoardPinout?: boolean | undefined;
|
|
45052
45471
|
highlightColor?: string | undefined;
|
|
45053
45472
|
mustBeConnected?: boolean | undefined;
|
|
45473
|
+
canUseInternalPullup?: boolean | undefined;
|
|
45474
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
45475
|
+
needsExternalPullup?: boolean | undefined;
|
|
45476
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
45477
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
45478
|
+
needsExternalPulldown?: boolean | undefined;
|
|
45479
|
+
canUseOpenDrain?: boolean | undefined;
|
|
45480
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
45481
|
+
canUsePushPull?: boolean | undefined;
|
|
45482
|
+
isUsingPushPull?: boolean | undefined;
|
|
45054
45483
|
}> | undefined;
|
|
45055
45484
|
cadModel?: string | {
|
|
45056
45485
|
stlUrl: string;
|
|
@@ -45618,6 +46047,9 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45618
46047
|
displayName?: string | undefined;
|
|
45619
46048
|
datasheetUrl?: string | undefined;
|
|
45620
46049
|
pinAttributes?: Record<string, {
|
|
46050
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
46051
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
46052
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
45621
46053
|
providesPower?: boolean | undefined;
|
|
45622
46054
|
requiresPower?: boolean | undefined;
|
|
45623
46055
|
providesGround?: boolean | undefined;
|
|
@@ -45628,6 +46060,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45628
46060
|
includeInBoardPinout?: boolean | undefined;
|
|
45629
46061
|
highlightColor?: string | undefined;
|
|
45630
46062
|
mustBeConnected?: boolean | undefined;
|
|
46063
|
+
canUseInternalPullup?: boolean | undefined;
|
|
46064
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
46065
|
+
needsExternalPullup?: boolean | undefined;
|
|
46066
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
46067
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
46068
|
+
needsExternalPulldown?: boolean | undefined;
|
|
46069
|
+
canUseOpenDrain?: boolean | undefined;
|
|
46070
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
46071
|
+
canUsePushPull?: boolean | undefined;
|
|
46072
|
+
isUsingPushPull?: boolean | undefined;
|
|
45631
46073
|
}> | undefined;
|
|
45632
46074
|
cadModel?: string | {
|
|
45633
46075
|
stlUrl: string;
|
|
@@ -49199,6 +49641,9 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49199
49641
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
49200
49642
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
49201
49643
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
49644
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
49645
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
49646
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
49202
49647
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
49203
49648
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
49204
49649
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -49209,7 +49654,20 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49209
49654
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
49210
49655
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
49211
49656
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
49212
|
-
|
|
49657
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
49658
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
49659
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
49660
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
49661
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
49662
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
49663
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
49664
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
49665
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49666
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49667
|
+
}, "strip", z.ZodTypeAny, {
|
|
49668
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49669
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49670
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
49213
49671
|
providesPower?: boolean | undefined;
|
|
49214
49672
|
requiresPower?: boolean | undefined;
|
|
49215
49673
|
providesGround?: boolean | undefined;
|
|
@@ -49220,7 +49678,20 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49220
49678
|
includeInBoardPinout?: boolean | undefined;
|
|
49221
49679
|
highlightColor?: string | undefined;
|
|
49222
49680
|
mustBeConnected?: boolean | undefined;
|
|
49223
|
-
|
|
49681
|
+
canUseInternalPullup?: boolean | undefined;
|
|
49682
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
49683
|
+
needsExternalPullup?: boolean | undefined;
|
|
49684
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
49685
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
49686
|
+
needsExternalPulldown?: boolean | undefined;
|
|
49687
|
+
canUseOpenDrain?: boolean | undefined;
|
|
49688
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
49689
|
+
canUsePushPull?: boolean | undefined;
|
|
49690
|
+
isUsingPushPull?: boolean | undefined;
|
|
49691
|
+
}, {
|
|
49692
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49693
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49694
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
49224
49695
|
providesPower?: boolean | undefined;
|
|
49225
49696
|
requiresPower?: boolean | undefined;
|
|
49226
49697
|
providesGround?: boolean | undefined;
|
|
@@ -49231,6 +49702,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49231
49702
|
includeInBoardPinout?: boolean | undefined;
|
|
49232
49703
|
highlightColor?: string | undefined;
|
|
49233
49704
|
mustBeConnected?: boolean | undefined;
|
|
49705
|
+
canUseInternalPullup?: boolean | undefined;
|
|
49706
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
49707
|
+
needsExternalPullup?: boolean | undefined;
|
|
49708
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
49709
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
49710
|
+
needsExternalPulldown?: boolean | undefined;
|
|
49711
|
+
canUseOpenDrain?: boolean | undefined;
|
|
49712
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
49713
|
+
canUsePushPull?: boolean | undefined;
|
|
49714
|
+
isUsingPushPull?: boolean | undefined;
|
|
49234
49715
|
}>>>;
|
|
49235
49716
|
mfn: z.ZodOptional<z.ZodString>;
|
|
49236
49717
|
} & {
|
|
@@ -49579,6 +50060,9 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49579
50060
|
displayName?: string | undefined;
|
|
49580
50061
|
datasheetUrl?: string | undefined;
|
|
49581
50062
|
pinAttributes?: Record<string, {
|
|
50063
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50064
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50065
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
49582
50066
|
providesPower?: boolean | undefined;
|
|
49583
50067
|
requiresPower?: boolean | undefined;
|
|
49584
50068
|
providesGround?: boolean | undefined;
|
|
@@ -49589,6 +50073,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49589
50073
|
includeInBoardPinout?: boolean | undefined;
|
|
49590
50074
|
highlightColor?: string | undefined;
|
|
49591
50075
|
mustBeConnected?: boolean | undefined;
|
|
50076
|
+
canUseInternalPullup?: boolean | undefined;
|
|
50077
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
50078
|
+
needsExternalPullup?: boolean | undefined;
|
|
50079
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
50080
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
50081
|
+
needsExternalPulldown?: boolean | undefined;
|
|
50082
|
+
canUseOpenDrain?: boolean | undefined;
|
|
50083
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
50084
|
+
canUsePushPull?: boolean | undefined;
|
|
50085
|
+
isUsingPushPull?: boolean | undefined;
|
|
49592
50086
|
}> | undefined;
|
|
49593
50087
|
cadModel?: string | {
|
|
49594
50088
|
stlUrl: string;
|
|
@@ -50158,6 +50652,9 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50158
50652
|
displayName?: string | undefined;
|
|
50159
50653
|
datasheetUrl?: string | undefined;
|
|
50160
50654
|
pinAttributes?: Record<string, {
|
|
50655
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50656
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50657
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
50161
50658
|
providesPower?: boolean | undefined;
|
|
50162
50659
|
requiresPower?: boolean | undefined;
|
|
50163
50660
|
providesGround?: boolean | undefined;
|
|
@@ -50168,6 +50665,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50168
50665
|
includeInBoardPinout?: boolean | undefined;
|
|
50169
50666
|
highlightColor?: string | undefined;
|
|
50170
50667
|
mustBeConnected?: boolean | undefined;
|
|
50668
|
+
canUseInternalPullup?: boolean | undefined;
|
|
50669
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
50670
|
+
needsExternalPullup?: boolean | undefined;
|
|
50671
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
50672
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
50673
|
+
needsExternalPulldown?: boolean | undefined;
|
|
50674
|
+
canUseOpenDrain?: boolean | undefined;
|
|
50675
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
50676
|
+
canUsePushPull?: boolean | undefined;
|
|
50677
|
+
isUsingPushPull?: boolean | undefined;
|
|
50171
50678
|
}> | undefined;
|
|
50172
50679
|
cadModel?: string | {
|
|
50173
50680
|
stlUrl: string;
|
|
@@ -53750,6 +54257,9 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53750
54257
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
53751
54258
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
53752
54259
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
54260
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
54261
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
54262
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
53753
54263
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
53754
54264
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
53755
54265
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -53760,7 +54270,20 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53760
54270
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
53761
54271
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
53762
54272
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
53763
|
-
|
|
54273
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
54274
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
54275
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
54276
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
54277
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
54278
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
54279
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
54280
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
54281
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54282
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54283
|
+
}, "strip", z.ZodTypeAny, {
|
|
54284
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54285
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54286
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
53764
54287
|
providesPower?: boolean | undefined;
|
|
53765
54288
|
requiresPower?: boolean | undefined;
|
|
53766
54289
|
providesGround?: boolean | undefined;
|
|
@@ -53771,7 +54294,20 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53771
54294
|
includeInBoardPinout?: boolean | undefined;
|
|
53772
54295
|
highlightColor?: string | undefined;
|
|
53773
54296
|
mustBeConnected?: boolean | undefined;
|
|
53774
|
-
|
|
54297
|
+
canUseInternalPullup?: boolean | undefined;
|
|
54298
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
54299
|
+
needsExternalPullup?: boolean | undefined;
|
|
54300
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
54301
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
54302
|
+
needsExternalPulldown?: boolean | undefined;
|
|
54303
|
+
canUseOpenDrain?: boolean | undefined;
|
|
54304
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
54305
|
+
canUsePushPull?: boolean | undefined;
|
|
54306
|
+
isUsingPushPull?: boolean | undefined;
|
|
54307
|
+
}, {
|
|
54308
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54309
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54310
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
53775
54311
|
providesPower?: boolean | undefined;
|
|
53776
54312
|
requiresPower?: boolean | undefined;
|
|
53777
54313
|
providesGround?: boolean | undefined;
|
|
@@ -53782,6 +54318,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53782
54318
|
includeInBoardPinout?: boolean | undefined;
|
|
53783
54319
|
highlightColor?: string | undefined;
|
|
53784
54320
|
mustBeConnected?: boolean | undefined;
|
|
54321
|
+
canUseInternalPullup?: boolean | undefined;
|
|
54322
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
54323
|
+
needsExternalPullup?: boolean | undefined;
|
|
54324
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
54325
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
54326
|
+
needsExternalPulldown?: boolean | undefined;
|
|
54327
|
+
canUseOpenDrain?: boolean | undefined;
|
|
54328
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
54329
|
+
canUsePushPull?: boolean | undefined;
|
|
54330
|
+
isUsingPushPull?: boolean | undefined;
|
|
53785
54331
|
}>>>;
|
|
53786
54332
|
mfn: z.ZodOptional<z.ZodString>;
|
|
53787
54333
|
} & {
|
|
@@ -54001,6 +54547,9 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54001
54547
|
displayName?: string | undefined;
|
|
54002
54548
|
datasheetUrl?: string | undefined;
|
|
54003
54549
|
pinAttributes?: Record<string, {
|
|
54550
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54551
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54552
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
54004
54553
|
providesPower?: boolean | undefined;
|
|
54005
54554
|
requiresPower?: boolean | undefined;
|
|
54006
54555
|
providesGround?: boolean | undefined;
|
|
@@ -54011,6 +54560,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54011
54560
|
includeInBoardPinout?: boolean | undefined;
|
|
54012
54561
|
highlightColor?: string | undefined;
|
|
54013
54562
|
mustBeConnected?: boolean | undefined;
|
|
54563
|
+
canUseInternalPullup?: boolean | undefined;
|
|
54564
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
54565
|
+
needsExternalPullup?: boolean | undefined;
|
|
54566
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
54567
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
54568
|
+
needsExternalPulldown?: boolean | undefined;
|
|
54569
|
+
canUseOpenDrain?: boolean | undefined;
|
|
54570
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
54571
|
+
canUsePushPull?: boolean | undefined;
|
|
54572
|
+
isUsingPushPull?: boolean | undefined;
|
|
54014
54573
|
}> | undefined;
|
|
54015
54574
|
cadModel?: string | {
|
|
54016
54575
|
stlUrl: string;
|
|
@@ -54550,6 +55109,9 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54550
55109
|
displayName?: string | undefined;
|
|
54551
55110
|
datasheetUrl?: string | undefined;
|
|
54552
55111
|
pinAttributes?: Record<string, {
|
|
55112
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
55113
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
55114
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
54553
55115
|
providesPower?: boolean | undefined;
|
|
54554
55116
|
requiresPower?: boolean | undefined;
|
|
54555
55117
|
providesGround?: boolean | undefined;
|
|
@@ -54560,6 +55122,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54560
55122
|
includeInBoardPinout?: boolean | undefined;
|
|
54561
55123
|
highlightColor?: string | undefined;
|
|
54562
55124
|
mustBeConnected?: boolean | undefined;
|
|
55125
|
+
canUseInternalPullup?: boolean | undefined;
|
|
55126
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
55127
|
+
needsExternalPullup?: boolean | undefined;
|
|
55128
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
55129
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
55130
|
+
needsExternalPulldown?: boolean | undefined;
|
|
55131
|
+
canUseOpenDrain?: boolean | undefined;
|
|
55132
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
55133
|
+
canUsePushPull?: boolean | undefined;
|
|
55134
|
+
isUsingPushPull?: boolean | undefined;
|
|
54563
55135
|
}> | undefined;
|
|
54564
55136
|
cadModel?: string | {
|
|
54565
55137
|
stlUrl: string;
|
|
@@ -58104,6 +58676,9 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58104
58676
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
58105
58677
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
58106
58678
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
58679
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
58680
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
58681
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
58107
58682
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
58108
58683
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
58109
58684
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -58114,7 +58689,20 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58114
58689
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
58115
58690
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
58116
58691
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
58117
|
-
|
|
58692
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
58693
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
58694
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
58695
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
58696
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
58697
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
58698
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
58699
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
58700
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58701
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58702
|
+
}, "strip", z.ZodTypeAny, {
|
|
58703
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58704
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58705
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
58118
58706
|
providesPower?: boolean | undefined;
|
|
58119
58707
|
requiresPower?: boolean | undefined;
|
|
58120
58708
|
providesGround?: boolean | undefined;
|
|
@@ -58125,7 +58713,20 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58125
58713
|
includeInBoardPinout?: boolean | undefined;
|
|
58126
58714
|
highlightColor?: string | undefined;
|
|
58127
58715
|
mustBeConnected?: boolean | undefined;
|
|
58128
|
-
|
|
58716
|
+
canUseInternalPullup?: boolean | undefined;
|
|
58717
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
58718
|
+
needsExternalPullup?: boolean | undefined;
|
|
58719
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
58720
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
58721
|
+
needsExternalPulldown?: boolean | undefined;
|
|
58722
|
+
canUseOpenDrain?: boolean | undefined;
|
|
58723
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
58724
|
+
canUsePushPull?: boolean | undefined;
|
|
58725
|
+
isUsingPushPull?: boolean | undefined;
|
|
58726
|
+
}, {
|
|
58727
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58728
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58729
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
58129
58730
|
providesPower?: boolean | undefined;
|
|
58130
58731
|
requiresPower?: boolean | undefined;
|
|
58131
58732
|
providesGround?: boolean | undefined;
|
|
@@ -58136,6 +58737,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58136
58737
|
includeInBoardPinout?: boolean | undefined;
|
|
58137
58738
|
highlightColor?: string | undefined;
|
|
58138
58739
|
mustBeConnected?: boolean | undefined;
|
|
58740
|
+
canUseInternalPullup?: boolean | undefined;
|
|
58741
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
58742
|
+
needsExternalPullup?: boolean | undefined;
|
|
58743
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
58744
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
58745
|
+
needsExternalPulldown?: boolean | undefined;
|
|
58746
|
+
canUseOpenDrain?: boolean | undefined;
|
|
58747
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
58748
|
+
canUsePushPull?: boolean | undefined;
|
|
58749
|
+
isUsingPushPull?: boolean | undefined;
|
|
58139
58750
|
}>>>;
|
|
58140
58751
|
mfn: z.ZodOptional<z.ZodString>;
|
|
58141
58752
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -58199,6 +58810,9 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58199
58810
|
displayName?: string | undefined;
|
|
58200
58811
|
datasheetUrl?: string | undefined;
|
|
58201
58812
|
pinAttributes?: Record<string, {
|
|
58813
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58814
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58815
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
58202
58816
|
providesPower?: boolean | undefined;
|
|
58203
58817
|
requiresPower?: boolean | undefined;
|
|
58204
58818
|
providesGround?: boolean | undefined;
|
|
@@ -58209,6 +58823,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58209
58823
|
includeInBoardPinout?: boolean | undefined;
|
|
58210
58824
|
highlightColor?: string | undefined;
|
|
58211
58825
|
mustBeConnected?: boolean | undefined;
|
|
58826
|
+
canUseInternalPullup?: boolean | undefined;
|
|
58827
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
58828
|
+
needsExternalPullup?: boolean | undefined;
|
|
58829
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
58830
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
58831
|
+
needsExternalPulldown?: boolean | undefined;
|
|
58832
|
+
canUseOpenDrain?: boolean | undefined;
|
|
58833
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
58834
|
+
canUsePushPull?: boolean | undefined;
|
|
58835
|
+
isUsingPushPull?: boolean | undefined;
|
|
58212
58836
|
}> | undefined;
|
|
58213
58837
|
cadModel?: string | {
|
|
58214
58838
|
stlUrl: string;
|
|
@@ -58708,6 +59332,9 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58708
59332
|
displayName?: string | undefined;
|
|
58709
59333
|
datasheetUrl?: string | undefined;
|
|
58710
59334
|
pinAttributes?: Record<string, {
|
|
59335
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
59336
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
59337
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
58711
59338
|
providesPower?: boolean | undefined;
|
|
58712
59339
|
requiresPower?: boolean | undefined;
|
|
58713
59340
|
providesGround?: boolean | undefined;
|
|
@@ -58718,6 +59345,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58718
59345
|
includeInBoardPinout?: boolean | undefined;
|
|
58719
59346
|
highlightColor?: string | undefined;
|
|
58720
59347
|
mustBeConnected?: boolean | undefined;
|
|
59348
|
+
canUseInternalPullup?: boolean | undefined;
|
|
59349
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
59350
|
+
needsExternalPullup?: boolean | undefined;
|
|
59351
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
59352
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
59353
|
+
needsExternalPulldown?: boolean | undefined;
|
|
59354
|
+
canUseOpenDrain?: boolean | undefined;
|
|
59355
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
59356
|
+
canUsePushPull?: boolean | undefined;
|
|
59357
|
+
isUsingPushPull?: boolean | undefined;
|
|
58721
59358
|
}> | undefined;
|
|
58722
59359
|
cadModel?: string | {
|
|
58723
59360
|
stlUrl: string;
|
|
@@ -62240,6 +62877,9 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62240
62877
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
62241
62878
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
62242
62879
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
62880
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
62881
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
62882
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
62243
62883
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
62244
62884
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
62245
62885
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -62250,7 +62890,20 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62250
62890
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
62251
62891
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
62252
62892
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
62253
|
-
|
|
62893
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
62894
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
62895
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
62896
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
62897
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
62898
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
62899
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
62900
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
62901
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
62902
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
62903
|
+
}, "strip", z.ZodTypeAny, {
|
|
62904
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62905
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62906
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
62254
62907
|
providesPower?: boolean | undefined;
|
|
62255
62908
|
requiresPower?: boolean | undefined;
|
|
62256
62909
|
providesGround?: boolean | undefined;
|
|
@@ -62261,7 +62914,20 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62261
62914
|
includeInBoardPinout?: boolean | undefined;
|
|
62262
62915
|
highlightColor?: string | undefined;
|
|
62263
62916
|
mustBeConnected?: boolean | undefined;
|
|
62264
|
-
|
|
62917
|
+
canUseInternalPullup?: boolean | undefined;
|
|
62918
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
62919
|
+
needsExternalPullup?: boolean | undefined;
|
|
62920
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
62921
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
62922
|
+
needsExternalPulldown?: boolean | undefined;
|
|
62923
|
+
canUseOpenDrain?: boolean | undefined;
|
|
62924
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
62925
|
+
canUsePushPull?: boolean | undefined;
|
|
62926
|
+
isUsingPushPull?: boolean | undefined;
|
|
62927
|
+
}, {
|
|
62928
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62929
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62930
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
62265
62931
|
providesPower?: boolean | undefined;
|
|
62266
62932
|
requiresPower?: boolean | undefined;
|
|
62267
62933
|
providesGround?: boolean | undefined;
|
|
@@ -62272,6 +62938,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62272
62938
|
includeInBoardPinout?: boolean | undefined;
|
|
62273
62939
|
highlightColor?: string | undefined;
|
|
62274
62940
|
mustBeConnected?: boolean | undefined;
|
|
62941
|
+
canUseInternalPullup?: boolean | undefined;
|
|
62942
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
62943
|
+
needsExternalPullup?: boolean | undefined;
|
|
62944
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
62945
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
62946
|
+
needsExternalPulldown?: boolean | undefined;
|
|
62947
|
+
canUseOpenDrain?: boolean | undefined;
|
|
62948
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
62949
|
+
canUsePushPull?: boolean | undefined;
|
|
62950
|
+
isUsingPushPull?: boolean | undefined;
|
|
62275
62951
|
}>>>;
|
|
62276
62952
|
mfn: z.ZodOptional<z.ZodString>;
|
|
62277
62953
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -62338,6 +63014,9 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62338
63014
|
displayName?: string | undefined;
|
|
62339
63015
|
datasheetUrl?: string | undefined;
|
|
62340
63016
|
pinAttributes?: Record<string, {
|
|
63017
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
63018
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
63019
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
62341
63020
|
providesPower?: boolean | undefined;
|
|
62342
63021
|
requiresPower?: boolean | undefined;
|
|
62343
63022
|
providesGround?: boolean | undefined;
|
|
@@ -62348,6 +63027,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62348
63027
|
includeInBoardPinout?: boolean | undefined;
|
|
62349
63028
|
highlightColor?: string | undefined;
|
|
62350
63029
|
mustBeConnected?: boolean | undefined;
|
|
63030
|
+
canUseInternalPullup?: boolean | undefined;
|
|
63031
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
63032
|
+
needsExternalPullup?: boolean | undefined;
|
|
63033
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
63034
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
63035
|
+
needsExternalPulldown?: boolean | undefined;
|
|
63036
|
+
canUseOpenDrain?: boolean | undefined;
|
|
63037
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
63038
|
+
canUsePushPull?: boolean | undefined;
|
|
63039
|
+
isUsingPushPull?: boolean | undefined;
|
|
62351
63040
|
}> | undefined;
|
|
62352
63041
|
cadModel?: string | {
|
|
62353
63042
|
stlUrl: string;
|
|
@@ -62849,6 +63538,9 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62849
63538
|
displayName?: string | undefined;
|
|
62850
63539
|
datasheetUrl?: string | undefined;
|
|
62851
63540
|
pinAttributes?: Record<string, {
|
|
63541
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
63542
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
63543
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
62852
63544
|
providesPower?: boolean | undefined;
|
|
62853
63545
|
requiresPower?: boolean | undefined;
|
|
62854
63546
|
providesGround?: boolean | undefined;
|
|
@@ -62859,6 +63551,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62859
63551
|
includeInBoardPinout?: boolean | undefined;
|
|
62860
63552
|
highlightColor?: string | undefined;
|
|
62861
63553
|
mustBeConnected?: boolean | undefined;
|
|
63554
|
+
canUseInternalPullup?: boolean | undefined;
|
|
63555
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
63556
|
+
needsExternalPullup?: boolean | undefined;
|
|
63557
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
63558
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
63559
|
+
needsExternalPulldown?: boolean | undefined;
|
|
63560
|
+
canUseOpenDrain?: boolean | undefined;
|
|
63561
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
63562
|
+
canUsePushPull?: boolean | undefined;
|
|
63563
|
+
isUsingPushPull?: boolean | undefined;
|
|
62862
63564
|
}> | undefined;
|
|
62863
63565
|
cadModel?: string | {
|
|
62864
63566
|
stlUrl: string;
|
|
@@ -67997,6 +68699,9 @@ declare const resistorProps: z.ZodObject<{
|
|
|
67997
68699
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
67998
68700
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
67999
68701
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
68702
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
68703
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
68704
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
68000
68705
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
68001
68706
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
68002
68707
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -68007,7 +68712,20 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68007
68712
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
68008
68713
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
68009
68714
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
68010
|
-
|
|
68715
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
68716
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
68717
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
68718
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
68719
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
68720
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
68721
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
68722
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
68723
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68724
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68725
|
+
}, "strip", z.ZodTypeAny, {
|
|
68726
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68727
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68728
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
68011
68729
|
providesPower?: boolean | undefined;
|
|
68012
68730
|
requiresPower?: boolean | undefined;
|
|
68013
68731
|
providesGround?: boolean | undefined;
|
|
@@ -68018,7 +68736,20 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68018
68736
|
includeInBoardPinout?: boolean | undefined;
|
|
68019
68737
|
highlightColor?: string | undefined;
|
|
68020
68738
|
mustBeConnected?: boolean | undefined;
|
|
68021
|
-
|
|
68739
|
+
canUseInternalPullup?: boolean | undefined;
|
|
68740
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
68741
|
+
needsExternalPullup?: boolean | undefined;
|
|
68742
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
68743
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
68744
|
+
needsExternalPulldown?: boolean | undefined;
|
|
68745
|
+
canUseOpenDrain?: boolean | undefined;
|
|
68746
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
68747
|
+
canUsePushPull?: boolean | undefined;
|
|
68748
|
+
isUsingPushPull?: boolean | undefined;
|
|
68749
|
+
}, {
|
|
68750
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68751
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68752
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
68022
68753
|
providesPower?: boolean | undefined;
|
|
68023
68754
|
requiresPower?: boolean | undefined;
|
|
68024
68755
|
providesGround?: boolean | undefined;
|
|
@@ -68029,6 +68760,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68029
68760
|
includeInBoardPinout?: boolean | undefined;
|
|
68030
68761
|
highlightColor?: string | undefined;
|
|
68031
68762
|
mustBeConnected?: boolean | undefined;
|
|
68763
|
+
canUseInternalPullup?: boolean | undefined;
|
|
68764
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
68765
|
+
needsExternalPullup?: boolean | undefined;
|
|
68766
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
68767
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
68768
|
+
needsExternalPulldown?: boolean | undefined;
|
|
68769
|
+
canUseOpenDrain?: boolean | undefined;
|
|
68770
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
68771
|
+
canUsePushPull?: boolean | undefined;
|
|
68772
|
+
isUsingPushPull?: boolean | undefined;
|
|
68032
68773
|
}>>>;
|
|
68033
68774
|
mfn: z.ZodOptional<z.ZodString>;
|
|
68034
68775
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -68099,6 +68840,9 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68099
68840
|
displayName?: string | undefined;
|
|
68100
68841
|
datasheetUrl?: string | undefined;
|
|
68101
68842
|
pinAttributes?: Record<string, {
|
|
68843
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68844
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68845
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
68102
68846
|
providesPower?: boolean | undefined;
|
|
68103
68847
|
requiresPower?: boolean | undefined;
|
|
68104
68848
|
providesGround?: boolean | undefined;
|
|
@@ -68109,6 +68853,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68109
68853
|
includeInBoardPinout?: boolean | undefined;
|
|
68110
68854
|
highlightColor?: string | undefined;
|
|
68111
68855
|
mustBeConnected?: boolean | undefined;
|
|
68856
|
+
canUseInternalPullup?: boolean | undefined;
|
|
68857
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
68858
|
+
needsExternalPullup?: boolean | undefined;
|
|
68859
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
68860
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
68861
|
+
needsExternalPulldown?: boolean | undefined;
|
|
68862
|
+
canUseOpenDrain?: boolean | undefined;
|
|
68863
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
68864
|
+
canUsePushPull?: boolean | undefined;
|
|
68865
|
+
isUsingPushPull?: boolean | undefined;
|
|
68112
68866
|
}> | undefined;
|
|
68113
68867
|
cadModel?: string | {
|
|
68114
68868
|
stlUrl: string;
|
|
@@ -68614,6 +69368,9 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68614
69368
|
displayName?: string | undefined;
|
|
68615
69369
|
datasheetUrl?: string | undefined;
|
|
68616
69370
|
pinAttributes?: Record<string, {
|
|
69371
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
69372
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
69373
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
68617
69374
|
providesPower?: boolean | undefined;
|
|
68618
69375
|
requiresPower?: boolean | undefined;
|
|
68619
69376
|
providesGround?: boolean | undefined;
|
|
@@ -68624,6 +69381,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68624
69381
|
includeInBoardPinout?: boolean | undefined;
|
|
68625
69382
|
highlightColor?: string | undefined;
|
|
68626
69383
|
mustBeConnected?: boolean | undefined;
|
|
69384
|
+
canUseInternalPullup?: boolean | undefined;
|
|
69385
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
69386
|
+
needsExternalPullup?: boolean | undefined;
|
|
69387
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
69388
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
69389
|
+
needsExternalPulldown?: boolean | undefined;
|
|
69390
|
+
canUseOpenDrain?: boolean | undefined;
|
|
69391
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
69392
|
+
canUsePushPull?: boolean | undefined;
|
|
69393
|
+
isUsingPushPull?: boolean | undefined;
|
|
68627
69394
|
}> | undefined;
|
|
68628
69395
|
cadModel?: string | {
|
|
68629
69396
|
stlUrl: string;
|
|
@@ -72133,6 +72900,9 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72133
72900
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
72134
72901
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
72135
72902
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
72903
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
72904
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
72905
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
72136
72906
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
72137
72907
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
72138
72908
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -72143,7 +72913,20 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72143
72913
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
72144
72914
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
72145
72915
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
72146
|
-
|
|
72916
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
72917
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
72918
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
72919
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
72920
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
72921
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
72922
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
72923
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
72924
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
72925
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
72926
|
+
}, "strip", z.ZodTypeAny, {
|
|
72927
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72928
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72929
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
72147
72930
|
providesPower?: boolean | undefined;
|
|
72148
72931
|
requiresPower?: boolean | undefined;
|
|
72149
72932
|
providesGround?: boolean | undefined;
|
|
@@ -72154,7 +72937,20 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72154
72937
|
includeInBoardPinout?: boolean | undefined;
|
|
72155
72938
|
highlightColor?: string | undefined;
|
|
72156
72939
|
mustBeConnected?: boolean | undefined;
|
|
72157
|
-
|
|
72940
|
+
canUseInternalPullup?: boolean | undefined;
|
|
72941
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
72942
|
+
needsExternalPullup?: boolean | undefined;
|
|
72943
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
72944
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
72945
|
+
needsExternalPulldown?: boolean | undefined;
|
|
72946
|
+
canUseOpenDrain?: boolean | undefined;
|
|
72947
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
72948
|
+
canUsePushPull?: boolean | undefined;
|
|
72949
|
+
isUsingPushPull?: boolean | undefined;
|
|
72950
|
+
}, {
|
|
72951
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72952
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72953
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
72158
72954
|
providesPower?: boolean | undefined;
|
|
72159
72955
|
requiresPower?: boolean | undefined;
|
|
72160
72956
|
providesGround?: boolean | undefined;
|
|
@@ -72165,6 +72961,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72165
72961
|
includeInBoardPinout?: boolean | undefined;
|
|
72166
72962
|
highlightColor?: string | undefined;
|
|
72167
72963
|
mustBeConnected?: boolean | undefined;
|
|
72964
|
+
canUseInternalPullup?: boolean | undefined;
|
|
72965
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
72966
|
+
needsExternalPullup?: boolean | undefined;
|
|
72967
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
72968
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
72969
|
+
needsExternalPulldown?: boolean | undefined;
|
|
72970
|
+
canUseOpenDrain?: boolean | undefined;
|
|
72971
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
72972
|
+
canUsePushPull?: boolean | undefined;
|
|
72973
|
+
isUsingPushPull?: boolean | undefined;
|
|
72168
72974
|
}>>>;
|
|
72169
72975
|
mfn: z.ZodOptional<z.ZodString>;
|
|
72170
72976
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -72229,6 +73035,9 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72229
73035
|
displayName?: string | undefined;
|
|
72230
73036
|
datasheetUrl?: string | undefined;
|
|
72231
73037
|
pinAttributes?: Record<string, {
|
|
73038
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73039
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73040
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
72232
73041
|
providesPower?: boolean | undefined;
|
|
72233
73042
|
requiresPower?: boolean | undefined;
|
|
72234
73043
|
providesGround?: boolean | undefined;
|
|
@@ -72239,6 +73048,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72239
73048
|
includeInBoardPinout?: boolean | undefined;
|
|
72240
73049
|
highlightColor?: string | undefined;
|
|
72241
73050
|
mustBeConnected?: boolean | undefined;
|
|
73051
|
+
canUseInternalPullup?: boolean | undefined;
|
|
73052
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
73053
|
+
needsExternalPullup?: boolean | undefined;
|
|
73054
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
73055
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
73056
|
+
needsExternalPulldown?: boolean | undefined;
|
|
73057
|
+
canUseOpenDrain?: boolean | undefined;
|
|
73058
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
73059
|
+
canUsePushPull?: boolean | undefined;
|
|
73060
|
+
isUsingPushPull?: boolean | undefined;
|
|
72242
73061
|
}> | undefined;
|
|
72243
73062
|
cadModel?: string | {
|
|
72244
73063
|
stlUrl: string;
|
|
@@ -72738,6 +73557,9 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72738
73557
|
displayName?: string | undefined;
|
|
72739
73558
|
datasheetUrl?: string | undefined;
|
|
72740
73559
|
pinAttributes?: Record<string, {
|
|
73560
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73561
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73562
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
72741
73563
|
providesPower?: boolean | undefined;
|
|
72742
73564
|
requiresPower?: boolean | undefined;
|
|
72743
73565
|
providesGround?: boolean | undefined;
|
|
@@ -72748,6 +73570,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72748
73570
|
includeInBoardPinout?: boolean | undefined;
|
|
72749
73571
|
highlightColor?: string | undefined;
|
|
72750
73572
|
mustBeConnected?: boolean | undefined;
|
|
73573
|
+
canUseInternalPullup?: boolean | undefined;
|
|
73574
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
73575
|
+
needsExternalPullup?: boolean | undefined;
|
|
73576
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
73577
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
73578
|
+
needsExternalPulldown?: boolean | undefined;
|
|
73579
|
+
canUseOpenDrain?: boolean | undefined;
|
|
73580
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
73581
|
+
canUsePushPull?: boolean | undefined;
|
|
73582
|
+
isUsingPushPull?: boolean | undefined;
|
|
72751
73583
|
}> | undefined;
|
|
72752
73584
|
cadModel?: string | {
|
|
72753
73585
|
stlUrl: string;
|
|
@@ -76252,6 +77084,9 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76252
77084
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
76253
77085
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
76254
77086
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
77087
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
77088
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
77089
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
76255
77090
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
76256
77091
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
76257
77092
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -76262,7 +77097,20 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76262
77097
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
76263
77098
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
76264
77099
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
76265
|
-
|
|
77100
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
77101
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
77102
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
77103
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
77104
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
77105
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
77106
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
77107
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
77108
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77109
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77110
|
+
}, "strip", z.ZodTypeAny, {
|
|
77111
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77112
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77113
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
76266
77114
|
providesPower?: boolean | undefined;
|
|
76267
77115
|
requiresPower?: boolean | undefined;
|
|
76268
77116
|
providesGround?: boolean | undefined;
|
|
@@ -76273,7 +77121,20 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76273
77121
|
includeInBoardPinout?: boolean | undefined;
|
|
76274
77122
|
highlightColor?: string | undefined;
|
|
76275
77123
|
mustBeConnected?: boolean | undefined;
|
|
76276
|
-
|
|
77124
|
+
canUseInternalPullup?: boolean | undefined;
|
|
77125
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
77126
|
+
needsExternalPullup?: boolean | undefined;
|
|
77127
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
77128
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
77129
|
+
needsExternalPulldown?: boolean | undefined;
|
|
77130
|
+
canUseOpenDrain?: boolean | undefined;
|
|
77131
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
77132
|
+
canUsePushPull?: boolean | undefined;
|
|
77133
|
+
isUsingPushPull?: boolean | undefined;
|
|
77134
|
+
}, {
|
|
77135
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77136
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77137
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
76277
77138
|
providesPower?: boolean | undefined;
|
|
76278
77139
|
requiresPower?: boolean | undefined;
|
|
76279
77140
|
providesGround?: boolean | undefined;
|
|
@@ -76284,6 +77145,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76284
77145
|
includeInBoardPinout?: boolean | undefined;
|
|
76285
77146
|
highlightColor?: string | undefined;
|
|
76286
77147
|
mustBeConnected?: boolean | undefined;
|
|
77148
|
+
canUseInternalPullup?: boolean | undefined;
|
|
77149
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
77150
|
+
needsExternalPullup?: boolean | undefined;
|
|
77151
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
77152
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
77153
|
+
needsExternalPulldown?: boolean | undefined;
|
|
77154
|
+
canUseOpenDrain?: boolean | undefined;
|
|
77155
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
77156
|
+
canUsePushPull?: boolean | undefined;
|
|
77157
|
+
isUsingPushPull?: boolean | undefined;
|
|
76287
77158
|
}>>>;
|
|
76288
77159
|
mfn: z.ZodOptional<z.ZodString>;
|
|
76289
77160
|
} & {
|
|
@@ -76352,6 +77223,9 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76352
77223
|
displayName?: string | undefined;
|
|
76353
77224
|
datasheetUrl?: string | undefined;
|
|
76354
77225
|
pinAttributes?: Record<string, {
|
|
77226
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77227
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77228
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
76355
77229
|
providesPower?: boolean | undefined;
|
|
76356
77230
|
requiresPower?: boolean | undefined;
|
|
76357
77231
|
providesGround?: boolean | undefined;
|
|
@@ -76362,6 +77236,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76362
77236
|
includeInBoardPinout?: boolean | undefined;
|
|
76363
77237
|
highlightColor?: string | undefined;
|
|
76364
77238
|
mustBeConnected?: boolean | undefined;
|
|
77239
|
+
canUseInternalPullup?: boolean | undefined;
|
|
77240
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
77241
|
+
needsExternalPullup?: boolean | undefined;
|
|
77242
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
77243
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
77244
|
+
needsExternalPulldown?: boolean | undefined;
|
|
77245
|
+
canUseOpenDrain?: boolean | undefined;
|
|
77246
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
77247
|
+
canUsePushPull?: boolean | undefined;
|
|
77248
|
+
isUsingPushPull?: boolean | undefined;
|
|
76365
77249
|
}> | undefined;
|
|
76366
77250
|
cadModel?: string | {
|
|
76367
77251
|
stlUrl: string;
|
|
@@ -76864,6 +77748,9 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76864
77748
|
displayName?: string | undefined;
|
|
76865
77749
|
datasheetUrl?: string | undefined;
|
|
76866
77750
|
pinAttributes?: Record<string, {
|
|
77751
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77752
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77753
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
76867
77754
|
providesPower?: boolean | undefined;
|
|
76868
77755
|
requiresPower?: boolean | undefined;
|
|
76869
77756
|
providesGround?: boolean | undefined;
|
|
@@ -76874,6 +77761,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76874
77761
|
includeInBoardPinout?: boolean | undefined;
|
|
76875
77762
|
highlightColor?: string | undefined;
|
|
76876
77763
|
mustBeConnected?: boolean | undefined;
|
|
77764
|
+
canUseInternalPullup?: boolean | undefined;
|
|
77765
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
77766
|
+
needsExternalPullup?: boolean | undefined;
|
|
77767
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
77768
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
77769
|
+
needsExternalPulldown?: boolean | undefined;
|
|
77770
|
+
canUseOpenDrain?: boolean | undefined;
|
|
77771
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
77772
|
+
canUsePushPull?: boolean | undefined;
|
|
77773
|
+
isUsingPushPull?: boolean | undefined;
|
|
76877
77774
|
}> | undefined;
|
|
76878
77775
|
cadModel?: string | {
|
|
76879
77776
|
stlUrl: string;
|
|
@@ -80376,6 +81273,9 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80376
81273
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
80377
81274
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
80378
81275
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
81276
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
81277
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
81278
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
80379
81279
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
80380
81280
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
80381
81281
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -80386,7 +81286,20 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80386
81286
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
80387
81287
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
80388
81288
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
80389
|
-
|
|
81289
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
81290
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
81291
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
81292
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
81293
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
81294
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
81295
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
81296
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
81297
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81298
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81299
|
+
}, "strip", z.ZodTypeAny, {
|
|
81300
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81301
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81302
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
80390
81303
|
providesPower?: boolean | undefined;
|
|
80391
81304
|
requiresPower?: boolean | undefined;
|
|
80392
81305
|
providesGround?: boolean | undefined;
|
|
@@ -80397,7 +81310,20 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80397
81310
|
includeInBoardPinout?: boolean | undefined;
|
|
80398
81311
|
highlightColor?: string | undefined;
|
|
80399
81312
|
mustBeConnected?: boolean | undefined;
|
|
80400
|
-
|
|
81313
|
+
canUseInternalPullup?: boolean | undefined;
|
|
81314
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
81315
|
+
needsExternalPullup?: boolean | undefined;
|
|
81316
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
81317
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
81318
|
+
needsExternalPulldown?: boolean | undefined;
|
|
81319
|
+
canUseOpenDrain?: boolean | undefined;
|
|
81320
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
81321
|
+
canUsePushPull?: boolean | undefined;
|
|
81322
|
+
isUsingPushPull?: boolean | undefined;
|
|
81323
|
+
}, {
|
|
81324
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81325
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81326
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
80401
81327
|
providesPower?: boolean | undefined;
|
|
80402
81328
|
requiresPower?: boolean | undefined;
|
|
80403
81329
|
providesGround?: boolean | undefined;
|
|
@@ -80408,6 +81334,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80408
81334
|
includeInBoardPinout?: boolean | undefined;
|
|
80409
81335
|
highlightColor?: string | undefined;
|
|
80410
81336
|
mustBeConnected?: boolean | undefined;
|
|
81337
|
+
canUseInternalPullup?: boolean | undefined;
|
|
81338
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
81339
|
+
needsExternalPullup?: boolean | undefined;
|
|
81340
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
81341
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
81342
|
+
needsExternalPulldown?: boolean | undefined;
|
|
81343
|
+
canUseOpenDrain?: boolean | undefined;
|
|
81344
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
81345
|
+
canUsePushPull?: boolean | undefined;
|
|
81346
|
+
isUsingPushPull?: boolean | undefined;
|
|
80411
81347
|
}>>>;
|
|
80412
81348
|
mfn: z.ZodOptional<z.ZodString>;
|
|
80413
81349
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -80473,6 +81409,9 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80473
81409
|
displayName?: string | undefined;
|
|
80474
81410
|
datasheetUrl?: string | undefined;
|
|
80475
81411
|
pinAttributes?: Record<string, {
|
|
81412
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81413
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81414
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
80476
81415
|
providesPower?: boolean | undefined;
|
|
80477
81416
|
requiresPower?: boolean | undefined;
|
|
80478
81417
|
providesGround?: boolean | undefined;
|
|
@@ -80483,6 +81422,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80483
81422
|
includeInBoardPinout?: boolean | undefined;
|
|
80484
81423
|
highlightColor?: string | undefined;
|
|
80485
81424
|
mustBeConnected?: boolean | undefined;
|
|
81425
|
+
canUseInternalPullup?: boolean | undefined;
|
|
81426
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
81427
|
+
needsExternalPullup?: boolean | undefined;
|
|
81428
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
81429
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
81430
|
+
needsExternalPulldown?: boolean | undefined;
|
|
81431
|
+
canUseOpenDrain?: boolean | undefined;
|
|
81432
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
81433
|
+
canUsePushPull?: boolean | undefined;
|
|
81434
|
+
isUsingPushPull?: boolean | undefined;
|
|
80486
81435
|
}> | undefined;
|
|
80487
81436
|
cadModel?: string | {
|
|
80488
81437
|
stlUrl: string;
|
|
@@ -80982,6 +81931,9 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80982
81931
|
displayName?: string | undefined;
|
|
80983
81932
|
datasheetUrl?: string | undefined;
|
|
80984
81933
|
pinAttributes?: Record<string, {
|
|
81934
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81935
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81936
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
80985
81937
|
providesPower?: boolean | undefined;
|
|
80986
81938
|
requiresPower?: boolean | undefined;
|
|
80987
81939
|
providesGround?: boolean | undefined;
|
|
@@ -80992,6 +81944,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80992
81944
|
includeInBoardPinout?: boolean | undefined;
|
|
80993
81945
|
highlightColor?: string | undefined;
|
|
80994
81946
|
mustBeConnected?: boolean | undefined;
|
|
81947
|
+
canUseInternalPullup?: boolean | undefined;
|
|
81948
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
81949
|
+
needsExternalPullup?: boolean | undefined;
|
|
81950
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
81951
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
81952
|
+
needsExternalPulldown?: boolean | undefined;
|
|
81953
|
+
canUseOpenDrain?: boolean | undefined;
|
|
81954
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
81955
|
+
canUsePushPull?: boolean | undefined;
|
|
81956
|
+
isUsingPushPull?: boolean | undefined;
|
|
80995
81957
|
}> | undefined;
|
|
80996
81958
|
cadModel?: string | {
|
|
80997
81959
|
stlUrl: string;
|
|
@@ -85977,6 +86939,9 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85977
86939
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
85978
86940
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
85979
86941
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
86942
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
86943
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
86944
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
85980
86945
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
85981
86946
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
85982
86947
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -85987,7 +86952,20 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85987
86952
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
85988
86953
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
85989
86954
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
85990
|
-
|
|
86955
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
86956
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
86957
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
86958
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
86959
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
86960
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
86961
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
86962
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
86963
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
86964
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
86965
|
+
}, "strip", z.ZodTypeAny, {
|
|
86966
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
86967
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
86968
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
85991
86969
|
providesPower?: boolean | undefined;
|
|
85992
86970
|
requiresPower?: boolean | undefined;
|
|
85993
86971
|
providesGround?: boolean | undefined;
|
|
@@ -85998,7 +86976,20 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85998
86976
|
includeInBoardPinout?: boolean | undefined;
|
|
85999
86977
|
highlightColor?: string | undefined;
|
|
86000
86978
|
mustBeConnected?: boolean | undefined;
|
|
86001
|
-
|
|
86979
|
+
canUseInternalPullup?: boolean | undefined;
|
|
86980
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
86981
|
+
needsExternalPullup?: boolean | undefined;
|
|
86982
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
86983
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
86984
|
+
needsExternalPulldown?: boolean | undefined;
|
|
86985
|
+
canUseOpenDrain?: boolean | undefined;
|
|
86986
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
86987
|
+
canUsePushPull?: boolean | undefined;
|
|
86988
|
+
isUsingPushPull?: boolean | undefined;
|
|
86989
|
+
}, {
|
|
86990
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
86991
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
86992
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
86002
86993
|
providesPower?: boolean | undefined;
|
|
86003
86994
|
requiresPower?: boolean | undefined;
|
|
86004
86995
|
providesGround?: boolean | undefined;
|
|
@@ -86009,6 +87000,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
86009
87000
|
includeInBoardPinout?: boolean | undefined;
|
|
86010
87001
|
highlightColor?: string | undefined;
|
|
86011
87002
|
mustBeConnected?: boolean | undefined;
|
|
87003
|
+
canUseInternalPullup?: boolean | undefined;
|
|
87004
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
87005
|
+
needsExternalPullup?: boolean | undefined;
|
|
87006
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
87007
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
87008
|
+
needsExternalPulldown?: boolean | undefined;
|
|
87009
|
+
canUseOpenDrain?: boolean | undefined;
|
|
87010
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
87011
|
+
canUsePushPull?: boolean | undefined;
|
|
87012
|
+
isUsingPushPull?: boolean | undefined;
|
|
86012
87013
|
}>>>;
|
|
86013
87014
|
mfn: z.ZodOptional<z.ZodString>;
|
|
86014
87015
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -86084,6 +87085,9 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
86084
87085
|
displayName?: string | undefined;
|
|
86085
87086
|
datasheetUrl?: string | undefined;
|
|
86086
87087
|
pinAttributes?: Record<string, {
|
|
87088
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87089
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87090
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
86087
87091
|
providesPower?: boolean | undefined;
|
|
86088
87092
|
requiresPower?: boolean | undefined;
|
|
86089
87093
|
providesGround?: boolean | undefined;
|
|
@@ -86094,6 +87098,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
86094
87098
|
includeInBoardPinout?: boolean | undefined;
|
|
86095
87099
|
highlightColor?: string | undefined;
|
|
86096
87100
|
mustBeConnected?: boolean | undefined;
|
|
87101
|
+
canUseInternalPullup?: boolean | undefined;
|
|
87102
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
87103
|
+
needsExternalPullup?: boolean | undefined;
|
|
87104
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
87105
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
87106
|
+
needsExternalPulldown?: boolean | undefined;
|
|
87107
|
+
canUseOpenDrain?: boolean | undefined;
|
|
87108
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
87109
|
+
canUsePushPull?: boolean | undefined;
|
|
87110
|
+
isUsingPushPull?: boolean | undefined;
|
|
86097
87111
|
}> | undefined;
|
|
86098
87112
|
cadModel?: string | {
|
|
86099
87113
|
stlUrl: string;
|
|
@@ -86600,6 +87614,9 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
86600
87614
|
displayName?: string | undefined;
|
|
86601
87615
|
datasheetUrl?: string | undefined;
|
|
86602
87616
|
pinAttributes?: Record<string, {
|
|
87617
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87618
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87619
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
86603
87620
|
providesPower?: boolean | undefined;
|
|
86604
87621
|
requiresPower?: boolean | undefined;
|
|
86605
87622
|
providesGround?: boolean | undefined;
|
|
@@ -86610,6 +87627,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
86610
87627
|
includeInBoardPinout?: boolean | undefined;
|
|
86611
87628
|
highlightColor?: string | undefined;
|
|
86612
87629
|
mustBeConnected?: boolean | undefined;
|
|
87630
|
+
canUseInternalPullup?: boolean | undefined;
|
|
87631
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
87632
|
+
needsExternalPullup?: boolean | undefined;
|
|
87633
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
87634
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
87635
|
+
needsExternalPulldown?: boolean | undefined;
|
|
87636
|
+
canUseOpenDrain?: boolean | undefined;
|
|
87637
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
87638
|
+
canUsePushPull?: boolean | undefined;
|
|
87639
|
+
isUsingPushPull?: boolean | undefined;
|
|
86613
87640
|
}> | undefined;
|
|
86614
87641
|
cadModel?: string | {
|
|
86615
87642
|
stlUrl: string;
|
|
@@ -90145,6 +91172,9 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90145
91172
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
90146
91173
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
90147
91174
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
91175
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
91176
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
91177
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
90148
91178
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
90149
91179
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
90150
91180
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -90155,7 +91185,20 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90155
91185
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
90156
91186
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
90157
91187
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
90158
|
-
|
|
91188
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
91189
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
91190
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
91191
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
91192
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
91193
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
91194
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
91195
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
91196
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91197
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91198
|
+
}, "strip", z.ZodTypeAny, {
|
|
91199
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91200
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91201
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
90159
91202
|
providesPower?: boolean | undefined;
|
|
90160
91203
|
requiresPower?: boolean | undefined;
|
|
90161
91204
|
providesGround?: boolean | undefined;
|
|
@@ -90166,7 +91209,20 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90166
91209
|
includeInBoardPinout?: boolean | undefined;
|
|
90167
91210
|
highlightColor?: string | undefined;
|
|
90168
91211
|
mustBeConnected?: boolean | undefined;
|
|
90169
|
-
|
|
91212
|
+
canUseInternalPullup?: boolean | undefined;
|
|
91213
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
91214
|
+
needsExternalPullup?: boolean | undefined;
|
|
91215
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
91216
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
91217
|
+
needsExternalPulldown?: boolean | undefined;
|
|
91218
|
+
canUseOpenDrain?: boolean | undefined;
|
|
91219
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
91220
|
+
canUsePushPull?: boolean | undefined;
|
|
91221
|
+
isUsingPushPull?: boolean | undefined;
|
|
91222
|
+
}, {
|
|
91223
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91224
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91225
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
90170
91226
|
providesPower?: boolean | undefined;
|
|
90171
91227
|
requiresPower?: boolean | undefined;
|
|
90172
91228
|
providesGround?: boolean | undefined;
|
|
@@ -90177,6 +91233,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90177
91233
|
includeInBoardPinout?: boolean | undefined;
|
|
90178
91234
|
highlightColor?: string | undefined;
|
|
90179
91235
|
mustBeConnected?: boolean | undefined;
|
|
91236
|
+
canUseInternalPullup?: boolean | undefined;
|
|
91237
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
91238
|
+
needsExternalPullup?: boolean | undefined;
|
|
91239
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
91240
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
91241
|
+
needsExternalPulldown?: boolean | undefined;
|
|
91242
|
+
canUseOpenDrain?: boolean | undefined;
|
|
91243
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
91244
|
+
canUsePushPull?: boolean | undefined;
|
|
91245
|
+
isUsingPushPull?: boolean | undefined;
|
|
90180
91246
|
}>>>;
|
|
90181
91247
|
mfn: z.ZodOptional<z.ZodString>;
|
|
90182
91248
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -90239,6 +91305,9 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90239
91305
|
displayName?: string | undefined;
|
|
90240
91306
|
datasheetUrl?: string | undefined;
|
|
90241
91307
|
pinAttributes?: Record<string, {
|
|
91308
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91309
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91310
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
90242
91311
|
providesPower?: boolean | undefined;
|
|
90243
91312
|
requiresPower?: boolean | undefined;
|
|
90244
91313
|
providesGround?: boolean | undefined;
|
|
@@ -90249,6 +91318,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90249
91318
|
includeInBoardPinout?: boolean | undefined;
|
|
90250
91319
|
highlightColor?: string | undefined;
|
|
90251
91320
|
mustBeConnected?: boolean | undefined;
|
|
91321
|
+
canUseInternalPullup?: boolean | undefined;
|
|
91322
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
91323
|
+
needsExternalPullup?: boolean | undefined;
|
|
91324
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
91325
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
91326
|
+
needsExternalPulldown?: boolean | undefined;
|
|
91327
|
+
canUseOpenDrain?: boolean | undefined;
|
|
91328
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
91329
|
+
canUsePushPull?: boolean | undefined;
|
|
91330
|
+
isUsingPushPull?: boolean | undefined;
|
|
90252
91331
|
}> | undefined;
|
|
90253
91332
|
cadModel?: string | {
|
|
90254
91333
|
stlUrl: string;
|
|
@@ -90747,6 +91826,9 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90747
91826
|
displayName?: string | undefined;
|
|
90748
91827
|
datasheetUrl?: string | undefined;
|
|
90749
91828
|
pinAttributes?: Record<string, {
|
|
91829
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91830
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91831
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
90750
91832
|
providesPower?: boolean | undefined;
|
|
90751
91833
|
requiresPower?: boolean | undefined;
|
|
90752
91834
|
providesGround?: boolean | undefined;
|
|
@@ -90757,6 +91839,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
90757
91839
|
includeInBoardPinout?: boolean | undefined;
|
|
90758
91840
|
highlightColor?: string | undefined;
|
|
90759
91841
|
mustBeConnected?: boolean | undefined;
|
|
91842
|
+
canUseInternalPullup?: boolean | undefined;
|
|
91843
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
91844
|
+
needsExternalPullup?: boolean | undefined;
|
|
91845
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
91846
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
91847
|
+
needsExternalPulldown?: boolean | undefined;
|
|
91848
|
+
canUseOpenDrain?: boolean | undefined;
|
|
91849
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
91850
|
+
canUsePushPull?: boolean | undefined;
|
|
91851
|
+
isUsingPushPull?: boolean | undefined;
|
|
90760
91852
|
}> | undefined;
|
|
90761
91853
|
cadModel?: string | {
|
|
90762
91854
|
stlUrl: string;
|
|
@@ -98723,6 +99815,9 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98723
99815
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
98724
99816
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
98725
99817
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
99818
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
99819
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
99820
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
98726
99821
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
98727
99822
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
98728
99823
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -98733,7 +99828,20 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98733
99828
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
98734
99829
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
98735
99830
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
98736
|
-
|
|
99831
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
99832
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
99833
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
99834
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
99835
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
99836
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
99837
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
99838
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
99839
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
99840
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
99841
|
+
}, "strip", z.ZodTypeAny, {
|
|
99842
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99843
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99844
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
98737
99845
|
providesPower?: boolean | undefined;
|
|
98738
99846
|
requiresPower?: boolean | undefined;
|
|
98739
99847
|
providesGround?: boolean | undefined;
|
|
@@ -98744,7 +99852,20 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98744
99852
|
includeInBoardPinout?: boolean | undefined;
|
|
98745
99853
|
highlightColor?: string | undefined;
|
|
98746
99854
|
mustBeConnected?: boolean | undefined;
|
|
98747
|
-
|
|
99855
|
+
canUseInternalPullup?: boolean | undefined;
|
|
99856
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
99857
|
+
needsExternalPullup?: boolean | undefined;
|
|
99858
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
99859
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
99860
|
+
needsExternalPulldown?: boolean | undefined;
|
|
99861
|
+
canUseOpenDrain?: boolean | undefined;
|
|
99862
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
99863
|
+
canUsePushPull?: boolean | undefined;
|
|
99864
|
+
isUsingPushPull?: boolean | undefined;
|
|
99865
|
+
}, {
|
|
99866
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99867
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99868
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
98748
99869
|
providesPower?: boolean | undefined;
|
|
98749
99870
|
requiresPower?: boolean | undefined;
|
|
98750
99871
|
providesGround?: boolean | undefined;
|
|
@@ -98755,6 +99876,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98755
99876
|
includeInBoardPinout?: boolean | undefined;
|
|
98756
99877
|
highlightColor?: string | undefined;
|
|
98757
99878
|
mustBeConnected?: boolean | undefined;
|
|
99879
|
+
canUseInternalPullup?: boolean | undefined;
|
|
99880
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
99881
|
+
needsExternalPullup?: boolean | undefined;
|
|
99882
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
99883
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
99884
|
+
needsExternalPulldown?: boolean | undefined;
|
|
99885
|
+
canUseOpenDrain?: boolean | undefined;
|
|
99886
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
99887
|
+
canUsePushPull?: boolean | undefined;
|
|
99888
|
+
isUsingPushPull?: boolean | undefined;
|
|
98758
99889
|
}>>>;
|
|
98759
99890
|
mfn: z.ZodOptional<z.ZodString>;
|
|
98760
99891
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -98819,6 +99950,9 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98819
99950
|
displayName?: string | undefined;
|
|
98820
99951
|
datasheetUrl?: string | undefined;
|
|
98821
99952
|
pinAttributes?: Record<string, {
|
|
99953
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99954
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99955
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
98822
99956
|
providesPower?: boolean | undefined;
|
|
98823
99957
|
requiresPower?: boolean | undefined;
|
|
98824
99958
|
providesGround?: boolean | undefined;
|
|
@@ -98829,6 +99963,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
98829
99963
|
includeInBoardPinout?: boolean | undefined;
|
|
98830
99964
|
highlightColor?: string | undefined;
|
|
98831
99965
|
mustBeConnected?: boolean | undefined;
|
|
99966
|
+
canUseInternalPullup?: boolean | undefined;
|
|
99967
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
99968
|
+
needsExternalPullup?: boolean | undefined;
|
|
99969
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
99970
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
99971
|
+
needsExternalPulldown?: boolean | undefined;
|
|
99972
|
+
canUseOpenDrain?: boolean | undefined;
|
|
99973
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
99974
|
+
canUsePushPull?: boolean | undefined;
|
|
99975
|
+
isUsingPushPull?: boolean | undefined;
|
|
98832
99976
|
}> | undefined;
|
|
98833
99977
|
cadModel?: string | {
|
|
98834
99978
|
stlUrl: string;
|
|
@@ -99329,6 +100473,9 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99329
100473
|
displayName?: string | undefined;
|
|
99330
100474
|
datasheetUrl?: string | undefined;
|
|
99331
100475
|
pinAttributes?: Record<string, {
|
|
100476
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100477
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100478
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
99332
100479
|
providesPower?: boolean | undefined;
|
|
99333
100480
|
requiresPower?: boolean | undefined;
|
|
99334
100481
|
providesGround?: boolean | undefined;
|
|
@@ -99339,6 +100486,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99339
100486
|
includeInBoardPinout?: boolean | undefined;
|
|
99340
100487
|
highlightColor?: string | undefined;
|
|
99341
100488
|
mustBeConnected?: boolean | undefined;
|
|
100489
|
+
canUseInternalPullup?: boolean | undefined;
|
|
100490
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
100491
|
+
needsExternalPullup?: boolean | undefined;
|
|
100492
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
100493
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
100494
|
+
needsExternalPulldown?: boolean | undefined;
|
|
100495
|
+
canUseOpenDrain?: boolean | undefined;
|
|
100496
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
100497
|
+
canUsePushPull?: boolean | undefined;
|
|
100498
|
+
isUsingPushPull?: boolean | undefined;
|
|
99342
100499
|
}> | undefined;
|
|
99343
100500
|
cadModel?: string | {
|
|
99344
100501
|
stlUrl: string;
|
|
@@ -104515,6 +105672,9 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
104515
105672
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
104516
105673
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
104517
105674
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
105675
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
105676
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
105677
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
104518
105678
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
104519
105679
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
104520
105680
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -104525,7 +105685,20 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
104525
105685
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
104526
105686
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
104527
105687
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
104528
|
-
|
|
105688
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
105689
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
105690
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
105691
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
105692
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
105693
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
105694
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
105695
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
105696
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
105697
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
105698
|
+
}, "strip", z.ZodTypeAny, {
|
|
105699
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105700
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105701
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
104529
105702
|
providesPower?: boolean | undefined;
|
|
104530
105703
|
requiresPower?: boolean | undefined;
|
|
104531
105704
|
providesGround?: boolean | undefined;
|
|
@@ -104536,7 +105709,20 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
104536
105709
|
includeInBoardPinout?: boolean | undefined;
|
|
104537
105710
|
highlightColor?: string | undefined;
|
|
104538
105711
|
mustBeConnected?: boolean | undefined;
|
|
104539
|
-
|
|
105712
|
+
canUseInternalPullup?: boolean | undefined;
|
|
105713
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
105714
|
+
needsExternalPullup?: boolean | undefined;
|
|
105715
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
105716
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
105717
|
+
needsExternalPulldown?: boolean | undefined;
|
|
105718
|
+
canUseOpenDrain?: boolean | undefined;
|
|
105719
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
105720
|
+
canUsePushPull?: boolean | undefined;
|
|
105721
|
+
isUsingPushPull?: boolean | undefined;
|
|
105722
|
+
}, {
|
|
105723
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105724
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105725
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
104540
105726
|
providesPower?: boolean | undefined;
|
|
104541
105727
|
requiresPower?: boolean | undefined;
|
|
104542
105728
|
providesGround?: boolean | undefined;
|
|
@@ -104547,6 +105733,16 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
104547
105733
|
includeInBoardPinout?: boolean | undefined;
|
|
104548
105734
|
highlightColor?: string | undefined;
|
|
104549
105735
|
mustBeConnected?: boolean | undefined;
|
|
105736
|
+
canUseInternalPullup?: boolean | undefined;
|
|
105737
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
105738
|
+
needsExternalPullup?: boolean | undefined;
|
|
105739
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
105740
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
105741
|
+
needsExternalPulldown?: boolean | undefined;
|
|
105742
|
+
canUseOpenDrain?: boolean | undefined;
|
|
105743
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
105744
|
+
canUsePushPull?: boolean | undefined;
|
|
105745
|
+
isUsingPushPull?: boolean | undefined;
|
|
104550
105746
|
}>>>;
|
|
104551
105747
|
mfn: z.ZodOptional<z.ZodString>;
|
|
104552
105748
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -104778,6 +105974,9 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
104778
105974
|
displayName?: string | undefined;
|
|
104779
105975
|
datasheetUrl?: string | undefined;
|
|
104780
105976
|
pinAttributes?: Record<string, {
|
|
105977
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105978
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105979
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
104781
105980
|
providesPower?: boolean | undefined;
|
|
104782
105981
|
requiresPower?: boolean | undefined;
|
|
104783
105982
|
providesGround?: boolean | undefined;
|
|
@@ -104788,6 +105987,16 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
104788
105987
|
includeInBoardPinout?: boolean | undefined;
|
|
104789
105988
|
highlightColor?: string | undefined;
|
|
104790
105989
|
mustBeConnected?: boolean | undefined;
|
|
105990
|
+
canUseInternalPullup?: boolean | undefined;
|
|
105991
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
105992
|
+
needsExternalPullup?: boolean | undefined;
|
|
105993
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
105994
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
105995
|
+
needsExternalPulldown?: boolean | undefined;
|
|
105996
|
+
canUseOpenDrain?: boolean | undefined;
|
|
105997
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
105998
|
+
canUsePushPull?: boolean | undefined;
|
|
105999
|
+
isUsingPushPull?: boolean | undefined;
|
|
104791
106000
|
}> | undefined;
|
|
104792
106001
|
cadModel?: string | {
|
|
104793
106002
|
stlUrl: string;
|
|
@@ -105336,6 +106545,9 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105336
106545
|
displayName?: string | undefined;
|
|
105337
106546
|
datasheetUrl?: string | undefined;
|
|
105338
106547
|
pinAttributes?: Record<string, {
|
|
106548
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106549
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106550
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
105339
106551
|
providesPower?: boolean | undefined;
|
|
105340
106552
|
requiresPower?: boolean | undefined;
|
|
105341
106553
|
providesGround?: boolean | undefined;
|
|
@@ -105346,6 +106558,16 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105346
106558
|
includeInBoardPinout?: boolean | undefined;
|
|
105347
106559
|
highlightColor?: string | undefined;
|
|
105348
106560
|
mustBeConnected?: boolean | undefined;
|
|
106561
|
+
canUseInternalPullup?: boolean | undefined;
|
|
106562
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
106563
|
+
needsExternalPullup?: boolean | undefined;
|
|
106564
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
106565
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
106566
|
+
needsExternalPulldown?: boolean | undefined;
|
|
106567
|
+
canUseOpenDrain?: boolean | undefined;
|
|
106568
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
106569
|
+
canUsePushPull?: boolean | undefined;
|
|
106570
|
+
isUsingPushPull?: boolean | undefined;
|
|
105349
106571
|
}> | undefined;
|
|
105350
106572
|
cadModel?: string | {
|
|
105351
106573
|
stlUrl: string;
|
|
@@ -108959,6 +110181,9 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
108959
110181
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
108960
110182
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
108961
110183
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
110184
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
110185
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
110186
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
108962
110187
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
108963
110188
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
108964
110189
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -108969,7 +110194,20 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
108969
110194
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
108970
110195
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
108971
110196
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
108972
|
-
|
|
110197
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
110198
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
110199
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
110200
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
110201
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
110202
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
110203
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
110204
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
110205
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110206
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110207
|
+
}, "strip", z.ZodTypeAny, {
|
|
110208
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110209
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110210
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
108973
110211
|
providesPower?: boolean | undefined;
|
|
108974
110212
|
requiresPower?: boolean | undefined;
|
|
108975
110213
|
providesGround?: boolean | undefined;
|
|
@@ -108980,7 +110218,20 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
108980
110218
|
includeInBoardPinout?: boolean | undefined;
|
|
108981
110219
|
highlightColor?: string | undefined;
|
|
108982
110220
|
mustBeConnected?: boolean | undefined;
|
|
108983
|
-
|
|
110221
|
+
canUseInternalPullup?: boolean | undefined;
|
|
110222
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
110223
|
+
needsExternalPullup?: boolean | undefined;
|
|
110224
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
110225
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
110226
|
+
needsExternalPulldown?: boolean | undefined;
|
|
110227
|
+
canUseOpenDrain?: boolean | undefined;
|
|
110228
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
110229
|
+
canUsePushPull?: boolean | undefined;
|
|
110230
|
+
isUsingPushPull?: boolean | undefined;
|
|
110231
|
+
}, {
|
|
110232
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110233
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110234
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
108984
110235
|
providesPower?: boolean | undefined;
|
|
108985
110236
|
requiresPower?: boolean | undefined;
|
|
108986
110237
|
providesGround?: boolean | undefined;
|
|
@@ -108991,6 +110242,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
108991
110242
|
includeInBoardPinout?: boolean | undefined;
|
|
108992
110243
|
highlightColor?: string | undefined;
|
|
108993
110244
|
mustBeConnected?: boolean | undefined;
|
|
110245
|
+
canUseInternalPullup?: boolean | undefined;
|
|
110246
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
110247
|
+
needsExternalPullup?: boolean | undefined;
|
|
110248
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
110249
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
110250
|
+
needsExternalPulldown?: boolean | undefined;
|
|
110251
|
+
canUseOpenDrain?: boolean | undefined;
|
|
110252
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
110253
|
+
canUsePushPull?: boolean | undefined;
|
|
110254
|
+
isUsingPushPull?: boolean | undefined;
|
|
108994
110255
|
}>>>;
|
|
108995
110256
|
mfn: z.ZodOptional<z.ZodString>;
|
|
108996
110257
|
} & {
|
|
@@ -109347,6 +110608,9 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
109347
110608
|
displayName?: string | undefined;
|
|
109348
110609
|
datasheetUrl?: string | undefined;
|
|
109349
110610
|
pinAttributes?: Record<string, {
|
|
110611
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110612
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110613
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
109350
110614
|
providesPower?: boolean | undefined;
|
|
109351
110615
|
requiresPower?: boolean | undefined;
|
|
109352
110616
|
providesGround?: boolean | undefined;
|
|
@@ -109357,6 +110621,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
109357
110621
|
includeInBoardPinout?: boolean | undefined;
|
|
109358
110622
|
highlightColor?: string | undefined;
|
|
109359
110623
|
mustBeConnected?: boolean | undefined;
|
|
110624
|
+
canUseInternalPullup?: boolean | undefined;
|
|
110625
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
110626
|
+
needsExternalPullup?: boolean | undefined;
|
|
110627
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
110628
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
110629
|
+
needsExternalPulldown?: boolean | undefined;
|
|
110630
|
+
canUseOpenDrain?: boolean | undefined;
|
|
110631
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
110632
|
+
canUsePushPull?: boolean | undefined;
|
|
110633
|
+
isUsingPushPull?: boolean | undefined;
|
|
109360
110634
|
}> | undefined;
|
|
109361
110635
|
cadModel?: string | {
|
|
109362
110636
|
stlUrl: string;
|
|
@@ -109929,6 +111203,9 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
109929
111203
|
displayName?: string | undefined;
|
|
109930
111204
|
datasheetUrl?: string | undefined;
|
|
109931
111205
|
pinAttributes?: Record<string, {
|
|
111206
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111207
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111208
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
109932
111209
|
providesPower?: boolean | undefined;
|
|
109933
111210
|
requiresPower?: boolean | undefined;
|
|
109934
111211
|
providesGround?: boolean | undefined;
|
|
@@ -109939,6 +111216,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
109939
111216
|
includeInBoardPinout?: boolean | undefined;
|
|
109940
111217
|
highlightColor?: string | undefined;
|
|
109941
111218
|
mustBeConnected?: boolean | undefined;
|
|
111219
|
+
canUseInternalPullup?: boolean | undefined;
|
|
111220
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
111221
|
+
needsExternalPullup?: boolean | undefined;
|
|
111222
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
111223
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
111224
|
+
needsExternalPulldown?: boolean | undefined;
|
|
111225
|
+
canUseOpenDrain?: boolean | undefined;
|
|
111226
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
111227
|
+
canUsePushPull?: boolean | undefined;
|
|
111228
|
+
isUsingPushPull?: boolean | undefined;
|
|
109942
111229
|
}> | undefined;
|
|
109943
111230
|
cadModel?: string | {
|
|
109944
111231
|
stlUrl: string;
|
|
@@ -114908,6 +116195,9 @@ declare const transistorProps: z.ZodObject<{
|
|
|
114908
116195
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
114909
116196
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
114910
116197
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
116198
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
116199
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
116200
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
114911
116201
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
114912
116202
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
114913
116203
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -114918,7 +116208,20 @@ declare const transistorProps: z.ZodObject<{
|
|
|
114918
116208
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
114919
116209
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
114920
116210
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
114921
|
-
|
|
116211
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
116212
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
116213
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
116214
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
116215
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
116216
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
116217
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
116218
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
116219
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116220
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116221
|
+
}, "strip", z.ZodTypeAny, {
|
|
116222
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116223
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116224
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
114922
116225
|
providesPower?: boolean | undefined;
|
|
114923
116226
|
requiresPower?: boolean | undefined;
|
|
114924
116227
|
providesGround?: boolean | undefined;
|
|
@@ -114929,7 +116232,20 @@ declare const transistorProps: z.ZodObject<{
|
|
|
114929
116232
|
includeInBoardPinout?: boolean | undefined;
|
|
114930
116233
|
highlightColor?: string | undefined;
|
|
114931
116234
|
mustBeConnected?: boolean | undefined;
|
|
114932
|
-
|
|
116235
|
+
canUseInternalPullup?: boolean | undefined;
|
|
116236
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
116237
|
+
needsExternalPullup?: boolean | undefined;
|
|
116238
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
116239
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
116240
|
+
needsExternalPulldown?: boolean | undefined;
|
|
116241
|
+
canUseOpenDrain?: boolean | undefined;
|
|
116242
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
116243
|
+
canUsePushPull?: boolean | undefined;
|
|
116244
|
+
isUsingPushPull?: boolean | undefined;
|
|
116245
|
+
}, {
|
|
116246
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116247
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116248
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
114933
116249
|
providesPower?: boolean | undefined;
|
|
114934
116250
|
requiresPower?: boolean | undefined;
|
|
114935
116251
|
providesGround?: boolean | undefined;
|
|
@@ -114940,6 +116256,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
114940
116256
|
includeInBoardPinout?: boolean | undefined;
|
|
114941
116257
|
highlightColor?: string | undefined;
|
|
114942
116258
|
mustBeConnected?: boolean | undefined;
|
|
116259
|
+
canUseInternalPullup?: boolean | undefined;
|
|
116260
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
116261
|
+
needsExternalPullup?: boolean | undefined;
|
|
116262
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
116263
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
116264
|
+
needsExternalPulldown?: boolean | undefined;
|
|
116265
|
+
canUseOpenDrain?: boolean | undefined;
|
|
116266
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
116267
|
+
canUsePushPull?: boolean | undefined;
|
|
116268
|
+
isUsingPushPull?: boolean | undefined;
|
|
114943
116269
|
}>>>;
|
|
114944
116270
|
mfn: z.ZodOptional<z.ZodString>;
|
|
114945
116271
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -115003,6 +116329,9 @@ declare const transistorProps: z.ZodObject<{
|
|
|
115003
116329
|
displayName?: string | undefined;
|
|
115004
116330
|
datasheetUrl?: string | undefined;
|
|
115005
116331
|
pinAttributes?: Record<string, {
|
|
116332
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116333
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116334
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
115006
116335
|
providesPower?: boolean | undefined;
|
|
115007
116336
|
requiresPower?: boolean | undefined;
|
|
115008
116337
|
providesGround?: boolean | undefined;
|
|
@@ -115013,6 +116342,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
115013
116342
|
includeInBoardPinout?: boolean | undefined;
|
|
115014
116343
|
highlightColor?: string | undefined;
|
|
115015
116344
|
mustBeConnected?: boolean | undefined;
|
|
116345
|
+
canUseInternalPullup?: boolean | undefined;
|
|
116346
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
116347
|
+
needsExternalPullup?: boolean | undefined;
|
|
116348
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
116349
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
116350
|
+
needsExternalPulldown?: boolean | undefined;
|
|
116351
|
+
canUseOpenDrain?: boolean | undefined;
|
|
116352
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
116353
|
+
canUsePushPull?: boolean | undefined;
|
|
116354
|
+
isUsingPushPull?: boolean | undefined;
|
|
115016
116355
|
}> | undefined;
|
|
115017
116356
|
cadModel?: string | {
|
|
115018
116357
|
stlUrl: string;
|
|
@@ -115511,6 +116850,9 @@ declare const transistorProps: z.ZodObject<{
|
|
|
115511
116850
|
displayName?: string | undefined;
|
|
115512
116851
|
datasheetUrl?: string | undefined;
|
|
115513
116852
|
pinAttributes?: Record<string, {
|
|
116853
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116854
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116855
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
115514
116856
|
providesPower?: boolean | undefined;
|
|
115515
116857
|
requiresPower?: boolean | undefined;
|
|
115516
116858
|
providesGround?: boolean | undefined;
|
|
@@ -115521,6 +116863,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
115521
116863
|
includeInBoardPinout?: boolean | undefined;
|
|
115522
116864
|
highlightColor?: string | undefined;
|
|
115523
116865
|
mustBeConnected?: boolean | undefined;
|
|
116866
|
+
canUseInternalPullup?: boolean | undefined;
|
|
116867
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
116868
|
+
needsExternalPullup?: boolean | undefined;
|
|
116869
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
116870
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
116871
|
+
needsExternalPulldown?: boolean | undefined;
|
|
116872
|
+
canUseOpenDrain?: boolean | undefined;
|
|
116873
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
116874
|
+
canUsePushPull?: boolean | undefined;
|
|
116875
|
+
isUsingPushPull?: boolean | undefined;
|
|
115524
116876
|
}> | undefined;
|
|
115525
116877
|
cadModel?: string | {
|
|
115526
116878
|
stlUrl: string;
|
|
@@ -119020,6 +120372,9 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119020
120372
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
119021
120373
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
119022
120374
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
120375
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
120376
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
120377
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
119023
120378
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
119024
120379
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
119025
120380
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -119030,7 +120385,20 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119030
120385
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
119031
120386
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
119032
120387
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
119033
|
-
|
|
120388
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
120389
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
120390
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
120391
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
120392
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
120393
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
120394
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
120395
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
120396
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120397
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120398
|
+
}, "strip", z.ZodTypeAny, {
|
|
120399
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120400
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120401
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
119034
120402
|
providesPower?: boolean | undefined;
|
|
119035
120403
|
requiresPower?: boolean | undefined;
|
|
119036
120404
|
providesGround?: boolean | undefined;
|
|
@@ -119041,7 +120409,20 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119041
120409
|
includeInBoardPinout?: boolean | undefined;
|
|
119042
120410
|
highlightColor?: string | undefined;
|
|
119043
120411
|
mustBeConnected?: boolean | undefined;
|
|
119044
|
-
|
|
120412
|
+
canUseInternalPullup?: boolean | undefined;
|
|
120413
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
120414
|
+
needsExternalPullup?: boolean | undefined;
|
|
120415
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
120416
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
120417
|
+
needsExternalPulldown?: boolean | undefined;
|
|
120418
|
+
canUseOpenDrain?: boolean | undefined;
|
|
120419
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
120420
|
+
canUsePushPull?: boolean | undefined;
|
|
120421
|
+
isUsingPushPull?: boolean | undefined;
|
|
120422
|
+
}, {
|
|
120423
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120424
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120425
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
119045
120426
|
providesPower?: boolean | undefined;
|
|
119046
120427
|
requiresPower?: boolean | undefined;
|
|
119047
120428
|
providesGround?: boolean | undefined;
|
|
@@ -119052,6 +120433,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119052
120433
|
includeInBoardPinout?: boolean | undefined;
|
|
119053
120434
|
highlightColor?: string | undefined;
|
|
119054
120435
|
mustBeConnected?: boolean | undefined;
|
|
120436
|
+
canUseInternalPullup?: boolean | undefined;
|
|
120437
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
120438
|
+
needsExternalPullup?: boolean | undefined;
|
|
120439
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
120440
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
120441
|
+
needsExternalPulldown?: boolean | undefined;
|
|
120442
|
+
canUseOpenDrain?: boolean | undefined;
|
|
120443
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
120444
|
+
canUsePushPull?: boolean | undefined;
|
|
120445
|
+
isUsingPushPull?: boolean | undefined;
|
|
119055
120446
|
}>>>;
|
|
119056
120447
|
mfn: z.ZodOptional<z.ZodString>;
|
|
119057
120448
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -119116,6 +120507,9 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119116
120507
|
displayName?: string | undefined;
|
|
119117
120508
|
datasheetUrl?: string | undefined;
|
|
119118
120509
|
pinAttributes?: Record<string, {
|
|
120510
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120511
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120512
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
119119
120513
|
providesPower?: boolean | undefined;
|
|
119120
120514
|
requiresPower?: boolean | undefined;
|
|
119121
120515
|
providesGround?: boolean | undefined;
|
|
@@ -119126,6 +120520,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119126
120520
|
includeInBoardPinout?: boolean | undefined;
|
|
119127
120521
|
highlightColor?: string | undefined;
|
|
119128
120522
|
mustBeConnected?: boolean | undefined;
|
|
120523
|
+
canUseInternalPullup?: boolean | undefined;
|
|
120524
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
120525
|
+
needsExternalPullup?: boolean | undefined;
|
|
120526
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
120527
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
120528
|
+
needsExternalPulldown?: boolean | undefined;
|
|
120529
|
+
canUseOpenDrain?: boolean | undefined;
|
|
120530
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
120531
|
+
canUsePushPull?: boolean | undefined;
|
|
120532
|
+
isUsingPushPull?: boolean | undefined;
|
|
119129
120533
|
}> | undefined;
|
|
119130
120534
|
cadModel?: string | {
|
|
119131
120535
|
stlUrl: string;
|
|
@@ -119624,6 +121028,9 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119624
121028
|
displayName?: string | undefined;
|
|
119625
121029
|
datasheetUrl?: string | undefined;
|
|
119626
121030
|
pinAttributes?: Record<string, {
|
|
121031
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121032
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121033
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
119627
121034
|
providesPower?: boolean | undefined;
|
|
119628
121035
|
requiresPower?: boolean | undefined;
|
|
119629
121036
|
providesGround?: boolean | undefined;
|
|
@@ -119634,6 +121041,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
119634
121041
|
includeInBoardPinout?: boolean | undefined;
|
|
119635
121042
|
highlightColor?: string | undefined;
|
|
119636
121043
|
mustBeConnected?: boolean | undefined;
|
|
121044
|
+
canUseInternalPullup?: boolean | undefined;
|
|
121045
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
121046
|
+
needsExternalPullup?: boolean | undefined;
|
|
121047
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
121048
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
121049
|
+
needsExternalPulldown?: boolean | undefined;
|
|
121050
|
+
canUseOpenDrain?: boolean | undefined;
|
|
121051
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
121052
|
+
canUsePushPull?: boolean | undefined;
|
|
121053
|
+
isUsingPushPull?: boolean | undefined;
|
|
119637
121054
|
}> | undefined;
|
|
119638
121055
|
cadModel?: string | {
|
|
119639
121056
|
stlUrl: string;
|
|
@@ -123139,6 +124556,9 @@ declare const opampProps: z.ZodObject<{
|
|
|
123139
124556
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
123140
124557
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
123141
124558
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
124559
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
124560
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
124561
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
123142
124562
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
123143
124563
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
123144
124564
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -123149,7 +124569,20 @@ declare const opampProps: z.ZodObject<{
|
|
|
123149
124569
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
123150
124570
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
123151
124571
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
123152
|
-
|
|
124572
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
124573
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
124574
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
124575
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
124576
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
124577
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
124578
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
124579
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
124580
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
124581
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
124582
|
+
}, "strip", z.ZodTypeAny, {
|
|
124583
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124584
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124585
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
123153
124586
|
providesPower?: boolean | undefined;
|
|
123154
124587
|
requiresPower?: boolean | undefined;
|
|
123155
124588
|
providesGround?: boolean | undefined;
|
|
@@ -123160,7 +124593,20 @@ declare const opampProps: z.ZodObject<{
|
|
|
123160
124593
|
includeInBoardPinout?: boolean | undefined;
|
|
123161
124594
|
highlightColor?: string | undefined;
|
|
123162
124595
|
mustBeConnected?: boolean | undefined;
|
|
123163
|
-
|
|
124596
|
+
canUseInternalPullup?: boolean | undefined;
|
|
124597
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
124598
|
+
needsExternalPullup?: boolean | undefined;
|
|
124599
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
124600
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
124601
|
+
needsExternalPulldown?: boolean | undefined;
|
|
124602
|
+
canUseOpenDrain?: boolean | undefined;
|
|
124603
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
124604
|
+
canUsePushPull?: boolean | undefined;
|
|
124605
|
+
isUsingPushPull?: boolean | undefined;
|
|
124606
|
+
}, {
|
|
124607
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124608
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124609
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
123164
124610
|
providesPower?: boolean | undefined;
|
|
123165
124611
|
requiresPower?: boolean | undefined;
|
|
123166
124612
|
providesGround?: boolean | undefined;
|
|
@@ -123171,6 +124617,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
123171
124617
|
includeInBoardPinout?: boolean | undefined;
|
|
123172
124618
|
highlightColor?: string | undefined;
|
|
123173
124619
|
mustBeConnected?: boolean | undefined;
|
|
124620
|
+
canUseInternalPullup?: boolean | undefined;
|
|
124621
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
124622
|
+
needsExternalPullup?: boolean | undefined;
|
|
124623
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
124624
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
124625
|
+
needsExternalPulldown?: boolean | undefined;
|
|
124626
|
+
canUseOpenDrain?: boolean | undefined;
|
|
124627
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
124628
|
+
canUsePushPull?: boolean | undefined;
|
|
124629
|
+
isUsingPushPull?: boolean | undefined;
|
|
123174
124630
|
}>>>;
|
|
123175
124631
|
mfn: z.ZodOptional<z.ZodString>;
|
|
123176
124632
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -123232,6 +124688,9 @@ declare const opampProps: z.ZodObject<{
|
|
|
123232
124688
|
displayName?: string | undefined;
|
|
123233
124689
|
datasheetUrl?: string | undefined;
|
|
123234
124690
|
pinAttributes?: Record<string, {
|
|
124691
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124692
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124693
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
123235
124694
|
providesPower?: boolean | undefined;
|
|
123236
124695
|
requiresPower?: boolean | undefined;
|
|
123237
124696
|
providesGround?: boolean | undefined;
|
|
@@ -123242,6 +124701,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
123242
124701
|
includeInBoardPinout?: boolean | undefined;
|
|
123243
124702
|
highlightColor?: string | undefined;
|
|
123244
124703
|
mustBeConnected?: boolean | undefined;
|
|
124704
|
+
canUseInternalPullup?: boolean | undefined;
|
|
124705
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
124706
|
+
needsExternalPullup?: boolean | undefined;
|
|
124707
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
124708
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
124709
|
+
needsExternalPulldown?: boolean | undefined;
|
|
124710
|
+
canUseOpenDrain?: boolean | undefined;
|
|
124711
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
124712
|
+
canUsePushPull?: boolean | undefined;
|
|
124713
|
+
isUsingPushPull?: boolean | undefined;
|
|
123245
124714
|
}> | undefined;
|
|
123246
124715
|
cadModel?: string | {
|
|
123247
124716
|
stlUrl: string;
|
|
@@ -123739,6 +125208,9 @@ declare const opampProps: z.ZodObject<{
|
|
|
123739
125208
|
displayName?: string | undefined;
|
|
123740
125209
|
datasheetUrl?: string | undefined;
|
|
123741
125210
|
pinAttributes?: Record<string, {
|
|
125211
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
125212
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
125213
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
123742
125214
|
providesPower?: boolean | undefined;
|
|
123743
125215
|
requiresPower?: boolean | undefined;
|
|
123744
125216
|
providesGround?: boolean | undefined;
|
|
@@ -123749,6 +125221,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
123749
125221
|
includeInBoardPinout?: boolean | undefined;
|
|
123750
125222
|
highlightColor?: string | undefined;
|
|
123751
125223
|
mustBeConnected?: boolean | undefined;
|
|
125224
|
+
canUseInternalPullup?: boolean | undefined;
|
|
125225
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
125226
|
+
needsExternalPullup?: boolean | undefined;
|
|
125227
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
125228
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
125229
|
+
needsExternalPulldown?: boolean | undefined;
|
|
125230
|
+
canUseOpenDrain?: boolean | undefined;
|
|
125231
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
125232
|
+
canUsePushPull?: boolean | undefined;
|
|
125233
|
+
isUsingPushPull?: boolean | undefined;
|
|
123752
125234
|
}> | undefined;
|
|
123753
125235
|
cadModel?: string | {
|
|
123754
125236
|
stlUrl: string;
|
|
@@ -127255,6 +128737,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127255
128737
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
127256
128738
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
127257
128739
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
128740
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
128741
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
128742
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
127258
128743
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
127259
128744
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
127260
128745
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -127265,7 +128750,20 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127265
128750
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
127266
128751
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
127267
128752
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
127268
|
-
|
|
128753
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
128754
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
128755
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
128756
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
128757
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
128758
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
128759
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
128760
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
128761
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
128762
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
128763
|
+
}, "strip", z.ZodTypeAny, {
|
|
128764
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128765
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128766
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
127269
128767
|
providesPower?: boolean | undefined;
|
|
127270
128768
|
requiresPower?: boolean | undefined;
|
|
127271
128769
|
providesGround?: boolean | undefined;
|
|
@@ -127276,7 +128774,20 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127276
128774
|
includeInBoardPinout?: boolean | undefined;
|
|
127277
128775
|
highlightColor?: string | undefined;
|
|
127278
128776
|
mustBeConnected?: boolean | undefined;
|
|
127279
|
-
|
|
128777
|
+
canUseInternalPullup?: boolean | undefined;
|
|
128778
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
128779
|
+
needsExternalPullup?: boolean | undefined;
|
|
128780
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
128781
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
128782
|
+
needsExternalPulldown?: boolean | undefined;
|
|
128783
|
+
canUseOpenDrain?: boolean | undefined;
|
|
128784
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
128785
|
+
canUsePushPull?: boolean | undefined;
|
|
128786
|
+
isUsingPushPull?: boolean | undefined;
|
|
128787
|
+
}, {
|
|
128788
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128789
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128790
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
127280
128791
|
providesPower?: boolean | undefined;
|
|
127281
128792
|
requiresPower?: boolean | undefined;
|
|
127282
128793
|
providesGround?: boolean | undefined;
|
|
@@ -127287,6 +128798,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127287
128798
|
includeInBoardPinout?: boolean | undefined;
|
|
127288
128799
|
highlightColor?: string | undefined;
|
|
127289
128800
|
mustBeConnected?: boolean | undefined;
|
|
128801
|
+
canUseInternalPullup?: boolean | undefined;
|
|
128802
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
128803
|
+
needsExternalPullup?: boolean | undefined;
|
|
128804
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
128805
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
128806
|
+
needsExternalPulldown?: boolean | undefined;
|
|
128807
|
+
canUseOpenDrain?: boolean | undefined;
|
|
128808
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
128809
|
+
canUsePushPull?: boolean | undefined;
|
|
128810
|
+
isUsingPushPull?: boolean | undefined;
|
|
127290
128811
|
}>>>;
|
|
127291
128812
|
mfn: z.ZodOptional<z.ZodString>;
|
|
127292
128813
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -127352,6 +128873,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127352
128873
|
displayName?: string | undefined;
|
|
127353
128874
|
datasheetUrl?: string | undefined;
|
|
127354
128875
|
pinAttributes?: Record<string, {
|
|
128876
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128877
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128878
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
127355
128879
|
providesPower?: boolean | undefined;
|
|
127356
128880
|
requiresPower?: boolean | undefined;
|
|
127357
128881
|
providesGround?: boolean | undefined;
|
|
@@ -127362,6 +128886,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127362
128886
|
includeInBoardPinout?: boolean | undefined;
|
|
127363
128887
|
highlightColor?: string | undefined;
|
|
127364
128888
|
mustBeConnected?: boolean | undefined;
|
|
128889
|
+
canUseInternalPullup?: boolean | undefined;
|
|
128890
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
128891
|
+
needsExternalPullup?: boolean | undefined;
|
|
128892
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
128893
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
128894
|
+
needsExternalPulldown?: boolean | undefined;
|
|
128895
|
+
canUseOpenDrain?: boolean | undefined;
|
|
128896
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
128897
|
+
canUsePushPull?: boolean | undefined;
|
|
128898
|
+
isUsingPushPull?: boolean | undefined;
|
|
127365
128899
|
}> | undefined;
|
|
127366
128900
|
cadModel?: string | {
|
|
127367
128901
|
stlUrl: string;
|
|
@@ -127862,6 +129396,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127862
129396
|
displayName?: string | undefined;
|
|
127863
129397
|
datasheetUrl?: string | undefined;
|
|
127864
129398
|
pinAttributes?: Record<string, {
|
|
129399
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
129400
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
129401
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
127865
129402
|
providesPower?: boolean | undefined;
|
|
127866
129403
|
requiresPower?: boolean | undefined;
|
|
127867
129404
|
providesGround?: boolean | undefined;
|
|
@@ -127872,6 +129409,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
127872
129409
|
includeInBoardPinout?: boolean | undefined;
|
|
127873
129410
|
highlightColor?: string | undefined;
|
|
127874
129411
|
mustBeConnected?: boolean | undefined;
|
|
129412
|
+
canUseInternalPullup?: boolean | undefined;
|
|
129413
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
129414
|
+
needsExternalPullup?: boolean | undefined;
|
|
129415
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
129416
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
129417
|
+
needsExternalPulldown?: boolean | undefined;
|
|
129418
|
+
canUseOpenDrain?: boolean | undefined;
|
|
129419
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
129420
|
+
canUsePushPull?: boolean | undefined;
|
|
129421
|
+
isUsingPushPull?: boolean | undefined;
|
|
127875
129422
|
}> | undefined;
|
|
127876
129423
|
cadModel?: string | {
|
|
127877
129424
|
stlUrl: string;
|
|
@@ -131367,6 +132914,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131367
132914
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
131368
132915
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
131369
132916
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
132917
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
132918
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
132919
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
131370
132920
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
131371
132921
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
131372
132922
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -131377,7 +132927,20 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131377
132927
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
131378
132928
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
131379
132929
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
131380
|
-
|
|
132930
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
132931
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
132932
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
132933
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
132934
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
132935
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
132936
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
132937
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
132938
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
132939
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
132940
|
+
}, "strip", z.ZodTypeAny, {
|
|
132941
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
132942
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
132943
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
131381
132944
|
providesPower?: boolean | undefined;
|
|
131382
132945
|
requiresPower?: boolean | undefined;
|
|
131383
132946
|
providesGround?: boolean | undefined;
|
|
@@ -131388,7 +132951,20 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131388
132951
|
includeInBoardPinout?: boolean | undefined;
|
|
131389
132952
|
highlightColor?: string | undefined;
|
|
131390
132953
|
mustBeConnected?: boolean | undefined;
|
|
131391
|
-
|
|
132954
|
+
canUseInternalPullup?: boolean | undefined;
|
|
132955
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
132956
|
+
needsExternalPullup?: boolean | undefined;
|
|
132957
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
132958
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
132959
|
+
needsExternalPulldown?: boolean | undefined;
|
|
132960
|
+
canUseOpenDrain?: boolean | undefined;
|
|
132961
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
132962
|
+
canUsePushPull?: boolean | undefined;
|
|
132963
|
+
isUsingPushPull?: boolean | undefined;
|
|
132964
|
+
}, {
|
|
132965
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
132966
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
132967
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
131392
132968
|
providesPower?: boolean | undefined;
|
|
131393
132969
|
requiresPower?: boolean | undefined;
|
|
131394
132970
|
providesGround?: boolean | undefined;
|
|
@@ -131399,6 +132975,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131399
132975
|
includeInBoardPinout?: boolean | undefined;
|
|
131400
132976
|
highlightColor?: string | undefined;
|
|
131401
132977
|
mustBeConnected?: boolean | undefined;
|
|
132978
|
+
canUseInternalPullup?: boolean | undefined;
|
|
132979
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
132980
|
+
needsExternalPullup?: boolean | undefined;
|
|
132981
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
132982
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
132983
|
+
needsExternalPulldown?: boolean | undefined;
|
|
132984
|
+
canUseOpenDrain?: boolean | undefined;
|
|
132985
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
132986
|
+
canUsePushPull?: boolean | undefined;
|
|
132987
|
+
isUsingPushPull?: boolean | undefined;
|
|
131402
132988
|
}>>>;
|
|
131403
132989
|
mfn: z.ZodOptional<z.ZodString>;
|
|
131404
132990
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -131469,6 +133055,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131469
133055
|
displayName?: string | undefined;
|
|
131470
133056
|
datasheetUrl?: string | undefined;
|
|
131471
133057
|
pinAttributes?: Record<string, {
|
|
133058
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133059
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133060
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
131472
133061
|
providesPower?: boolean | undefined;
|
|
131473
133062
|
requiresPower?: boolean | undefined;
|
|
131474
133063
|
providesGround?: boolean | undefined;
|
|
@@ -131479,6 +133068,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131479
133068
|
includeInBoardPinout?: boolean | undefined;
|
|
131480
133069
|
highlightColor?: string | undefined;
|
|
131481
133070
|
mustBeConnected?: boolean | undefined;
|
|
133071
|
+
canUseInternalPullup?: boolean | undefined;
|
|
133072
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
133073
|
+
needsExternalPullup?: boolean | undefined;
|
|
133074
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
133075
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
133076
|
+
needsExternalPulldown?: boolean | undefined;
|
|
133077
|
+
canUseOpenDrain?: boolean | undefined;
|
|
133078
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
133079
|
+
canUsePushPull?: boolean | undefined;
|
|
133080
|
+
isUsingPushPull?: boolean | undefined;
|
|
131482
133081
|
}> | undefined;
|
|
131483
133082
|
cadModel?: string | {
|
|
131484
133083
|
stlUrl: string;
|
|
@@ -131983,6 +133582,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131983
133582
|
displayName?: string | undefined;
|
|
131984
133583
|
datasheetUrl?: string | undefined;
|
|
131985
133584
|
pinAttributes?: Record<string, {
|
|
133585
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133586
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133587
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
131986
133588
|
providesPower?: boolean | undefined;
|
|
131987
133589
|
requiresPower?: boolean | undefined;
|
|
131988
133590
|
providesGround?: boolean | undefined;
|
|
@@ -131993,6 +133595,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131993
133595
|
includeInBoardPinout?: boolean | undefined;
|
|
131994
133596
|
highlightColor?: string | undefined;
|
|
131995
133597
|
mustBeConnected?: boolean | undefined;
|
|
133598
|
+
canUseInternalPullup?: boolean | undefined;
|
|
133599
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
133600
|
+
needsExternalPullup?: boolean | undefined;
|
|
133601
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
133602
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
133603
|
+
needsExternalPulldown?: boolean | undefined;
|
|
133604
|
+
canUseOpenDrain?: boolean | undefined;
|
|
133605
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
133606
|
+
canUsePushPull?: boolean | undefined;
|
|
133607
|
+
isUsingPushPull?: boolean | undefined;
|
|
131996
133608
|
}> | undefined;
|
|
131997
133609
|
cadModel?: string | {
|
|
131998
133610
|
stlUrl: string;
|
|
@@ -132497,6 +134109,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132497
134109
|
displayName?: string | undefined;
|
|
132498
134110
|
datasheetUrl?: string | undefined;
|
|
132499
134111
|
pinAttributes?: Record<string, {
|
|
134112
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134113
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134114
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
132500
134115
|
providesPower?: boolean | undefined;
|
|
132501
134116
|
requiresPower?: boolean | undefined;
|
|
132502
134117
|
providesGround?: boolean | undefined;
|
|
@@ -132507,6 +134122,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132507
134122
|
includeInBoardPinout?: boolean | undefined;
|
|
132508
134123
|
highlightColor?: string | undefined;
|
|
132509
134124
|
mustBeConnected?: boolean | undefined;
|
|
134125
|
+
canUseInternalPullup?: boolean | undefined;
|
|
134126
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
134127
|
+
needsExternalPullup?: boolean | undefined;
|
|
134128
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
134129
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
134130
|
+
needsExternalPulldown?: boolean | undefined;
|
|
134131
|
+
canUseOpenDrain?: boolean | undefined;
|
|
134132
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
134133
|
+
canUsePushPull?: boolean | undefined;
|
|
134134
|
+
isUsingPushPull?: boolean | undefined;
|
|
132510
134135
|
}> | undefined;
|
|
132511
134136
|
cadModel?: string | {
|
|
132512
134137
|
stlUrl: string;
|
|
@@ -133011,6 +134636,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133011
134636
|
displayName?: string | undefined;
|
|
133012
134637
|
datasheetUrl?: string | undefined;
|
|
133013
134638
|
pinAttributes?: Record<string, {
|
|
134639
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134640
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134641
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
133014
134642
|
providesPower?: boolean | undefined;
|
|
133015
134643
|
requiresPower?: boolean | undefined;
|
|
133016
134644
|
providesGround?: boolean | undefined;
|
|
@@ -133021,6 +134649,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133021
134649
|
includeInBoardPinout?: boolean | undefined;
|
|
133022
134650
|
highlightColor?: string | undefined;
|
|
133023
134651
|
mustBeConnected?: boolean | undefined;
|
|
134652
|
+
canUseInternalPullup?: boolean | undefined;
|
|
134653
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
134654
|
+
needsExternalPullup?: boolean | undefined;
|
|
134655
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
134656
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
134657
|
+
needsExternalPulldown?: boolean | undefined;
|
|
134658
|
+
canUseOpenDrain?: boolean | undefined;
|
|
134659
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
134660
|
+
canUsePushPull?: boolean | undefined;
|
|
134661
|
+
isUsingPushPull?: boolean | undefined;
|
|
133024
134662
|
}> | undefined;
|
|
133025
134663
|
cadModel?: string | {
|
|
133026
134664
|
stlUrl: string;
|
|
@@ -133531,6 +135169,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133531
135169
|
displayName?: string | undefined;
|
|
133532
135170
|
datasheetUrl?: string | undefined;
|
|
133533
135171
|
pinAttributes?: Record<string, {
|
|
135172
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135173
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135174
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
133534
135175
|
providesPower?: boolean | undefined;
|
|
133535
135176
|
requiresPower?: boolean | undefined;
|
|
133536
135177
|
providesGround?: boolean | undefined;
|
|
@@ -133541,6 +135182,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133541
135182
|
includeInBoardPinout?: boolean | undefined;
|
|
133542
135183
|
highlightColor?: string | undefined;
|
|
133543
135184
|
mustBeConnected?: boolean | undefined;
|
|
135185
|
+
canUseInternalPullup?: boolean | undefined;
|
|
135186
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
135187
|
+
needsExternalPullup?: boolean | undefined;
|
|
135188
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
135189
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
135190
|
+
needsExternalPulldown?: boolean | undefined;
|
|
135191
|
+
canUseOpenDrain?: boolean | undefined;
|
|
135192
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
135193
|
+
canUsePushPull?: boolean | undefined;
|
|
135194
|
+
isUsingPushPull?: boolean | undefined;
|
|
133544
135195
|
}> | undefined;
|
|
133545
135196
|
cadModel?: string | {
|
|
133546
135197
|
stlUrl: string;
|
|
@@ -134039,6 +135690,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134039
135690
|
displayName?: string | undefined;
|
|
134040
135691
|
datasheetUrl?: string | undefined;
|
|
134041
135692
|
pinAttributes?: Record<string, {
|
|
135693
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135694
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135695
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
134042
135696
|
providesPower?: boolean | undefined;
|
|
134043
135697
|
requiresPower?: boolean | undefined;
|
|
134044
135698
|
providesGround?: boolean | undefined;
|
|
@@ -134049,6 +135703,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134049
135703
|
includeInBoardPinout?: boolean | undefined;
|
|
134050
135704
|
highlightColor?: string | undefined;
|
|
134051
135705
|
mustBeConnected?: boolean | undefined;
|
|
135706
|
+
canUseInternalPullup?: boolean | undefined;
|
|
135707
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
135708
|
+
needsExternalPullup?: boolean | undefined;
|
|
135709
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
135710
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
135711
|
+
needsExternalPulldown?: boolean | undefined;
|
|
135712
|
+
canUseOpenDrain?: boolean | undefined;
|
|
135713
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
135714
|
+
canUsePushPull?: boolean | undefined;
|
|
135715
|
+
isUsingPushPull?: boolean | undefined;
|
|
134052
135716
|
}> | undefined;
|
|
134053
135717
|
cadModel?: string | {
|
|
134054
135718
|
stlUrl: string;
|
|
@@ -137572,6 +139236,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
137572
139236
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
137573
139237
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
137574
139238
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
139239
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
139240
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
139241
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
137575
139242
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
137576
139243
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
137577
139244
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -137582,7 +139249,20 @@ declare const ledProps: z.ZodObject<{
|
|
|
137582
139249
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
137583
139250
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
137584
139251
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
137585
|
-
|
|
139252
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
139253
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
139254
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
139255
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
139256
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
139257
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
139258
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
139259
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
139260
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139261
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139262
|
+
}, "strip", z.ZodTypeAny, {
|
|
139263
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139264
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139265
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
137586
139266
|
providesPower?: boolean | undefined;
|
|
137587
139267
|
requiresPower?: boolean | undefined;
|
|
137588
139268
|
providesGround?: boolean | undefined;
|
|
@@ -137593,7 +139273,20 @@ declare const ledProps: z.ZodObject<{
|
|
|
137593
139273
|
includeInBoardPinout?: boolean | undefined;
|
|
137594
139274
|
highlightColor?: string | undefined;
|
|
137595
139275
|
mustBeConnected?: boolean | undefined;
|
|
137596
|
-
|
|
139276
|
+
canUseInternalPullup?: boolean | undefined;
|
|
139277
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
139278
|
+
needsExternalPullup?: boolean | undefined;
|
|
139279
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
139280
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
139281
|
+
needsExternalPulldown?: boolean | undefined;
|
|
139282
|
+
canUseOpenDrain?: boolean | undefined;
|
|
139283
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
139284
|
+
canUsePushPull?: boolean | undefined;
|
|
139285
|
+
isUsingPushPull?: boolean | undefined;
|
|
139286
|
+
}, {
|
|
139287
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139288
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139289
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
137597
139290
|
providesPower?: boolean | undefined;
|
|
137598
139291
|
requiresPower?: boolean | undefined;
|
|
137599
139292
|
providesGround?: boolean | undefined;
|
|
@@ -137604,6 +139297,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
137604
139297
|
includeInBoardPinout?: boolean | undefined;
|
|
137605
139298
|
highlightColor?: string | undefined;
|
|
137606
139299
|
mustBeConnected?: boolean | undefined;
|
|
139300
|
+
canUseInternalPullup?: boolean | undefined;
|
|
139301
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
139302
|
+
needsExternalPullup?: boolean | undefined;
|
|
139303
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
139304
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
139305
|
+
needsExternalPulldown?: boolean | undefined;
|
|
139306
|
+
canUseOpenDrain?: boolean | undefined;
|
|
139307
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
139308
|
+
canUsePushPull?: boolean | undefined;
|
|
139309
|
+
isUsingPushPull?: boolean | undefined;
|
|
137607
139310
|
}>>>;
|
|
137608
139311
|
mfn: z.ZodOptional<z.ZodString>;
|
|
137609
139312
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -137670,6 +139373,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
137670
139373
|
displayName?: string | undefined;
|
|
137671
139374
|
datasheetUrl?: string | undefined;
|
|
137672
139375
|
pinAttributes?: Record<string, {
|
|
139376
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139377
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139378
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
137673
139379
|
providesPower?: boolean | undefined;
|
|
137674
139380
|
requiresPower?: boolean | undefined;
|
|
137675
139381
|
providesGround?: boolean | undefined;
|
|
@@ -137680,6 +139386,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
137680
139386
|
includeInBoardPinout?: boolean | undefined;
|
|
137681
139387
|
highlightColor?: string | undefined;
|
|
137682
139388
|
mustBeConnected?: boolean | undefined;
|
|
139389
|
+
canUseInternalPullup?: boolean | undefined;
|
|
139390
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
139391
|
+
needsExternalPullup?: boolean | undefined;
|
|
139392
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
139393
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
139394
|
+
needsExternalPulldown?: boolean | undefined;
|
|
139395
|
+
canUseOpenDrain?: boolean | undefined;
|
|
139396
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
139397
|
+
canUsePushPull?: boolean | undefined;
|
|
139398
|
+
isUsingPushPull?: boolean | undefined;
|
|
137683
139399
|
}> | undefined;
|
|
137684
139400
|
cadModel?: string | {
|
|
137685
139401
|
stlUrl: string;
|
|
@@ -138182,6 +139898,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
138182
139898
|
displayName?: string | undefined;
|
|
138183
139899
|
datasheetUrl?: string | undefined;
|
|
138184
139900
|
pinAttributes?: Record<string, {
|
|
139901
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139902
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139903
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
138185
139904
|
providesPower?: boolean | undefined;
|
|
138186
139905
|
requiresPower?: boolean | undefined;
|
|
138187
139906
|
providesGround?: boolean | undefined;
|
|
@@ -138192,6 +139911,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
138192
139911
|
includeInBoardPinout?: boolean | undefined;
|
|
138193
139912
|
highlightColor?: string | undefined;
|
|
138194
139913
|
mustBeConnected?: boolean | undefined;
|
|
139914
|
+
canUseInternalPullup?: boolean | undefined;
|
|
139915
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
139916
|
+
needsExternalPullup?: boolean | undefined;
|
|
139917
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
139918
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
139919
|
+
needsExternalPulldown?: boolean | undefined;
|
|
139920
|
+
canUseOpenDrain?: boolean | undefined;
|
|
139921
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
139922
|
+
canUsePushPull?: boolean | undefined;
|
|
139923
|
+
isUsingPushPull?: boolean | undefined;
|
|
138195
139924
|
}> | undefined;
|
|
138196
139925
|
cadModel?: string | {
|
|
138197
139926
|
stlUrl: string;
|
|
@@ -141706,6 +143435,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141706
143435
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
141707
143436
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
141708
143437
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
143438
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
143439
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
143440
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
141709
143441
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
141710
143442
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
141711
143443
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -141716,7 +143448,20 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141716
143448
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
141717
143449
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
141718
143450
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
141719
|
-
|
|
143451
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
143452
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
143453
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
143454
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
143455
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
143456
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
143457
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
143458
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
143459
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143460
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143461
|
+
}, "strip", z.ZodTypeAny, {
|
|
143462
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143463
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143464
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
141720
143465
|
providesPower?: boolean | undefined;
|
|
141721
143466
|
requiresPower?: boolean | undefined;
|
|
141722
143467
|
providesGround?: boolean | undefined;
|
|
@@ -141727,7 +143472,20 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141727
143472
|
includeInBoardPinout?: boolean | undefined;
|
|
141728
143473
|
highlightColor?: string | undefined;
|
|
141729
143474
|
mustBeConnected?: boolean | undefined;
|
|
141730
|
-
|
|
143475
|
+
canUseInternalPullup?: boolean | undefined;
|
|
143476
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
143477
|
+
needsExternalPullup?: boolean | undefined;
|
|
143478
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
143479
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
143480
|
+
needsExternalPulldown?: boolean | undefined;
|
|
143481
|
+
canUseOpenDrain?: boolean | undefined;
|
|
143482
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
143483
|
+
canUsePushPull?: boolean | undefined;
|
|
143484
|
+
isUsingPushPull?: boolean | undefined;
|
|
143485
|
+
}, {
|
|
143486
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143487
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143488
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
141731
143489
|
providesPower?: boolean | undefined;
|
|
141732
143490
|
requiresPower?: boolean | undefined;
|
|
141733
143491
|
providesGround?: boolean | undefined;
|
|
@@ -141738,6 +143496,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141738
143496
|
includeInBoardPinout?: boolean | undefined;
|
|
141739
143497
|
highlightColor?: string | undefined;
|
|
141740
143498
|
mustBeConnected?: boolean | undefined;
|
|
143499
|
+
canUseInternalPullup?: boolean | undefined;
|
|
143500
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
143501
|
+
needsExternalPullup?: boolean | undefined;
|
|
143502
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
143503
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
143504
|
+
needsExternalPulldown?: boolean | undefined;
|
|
143505
|
+
canUseOpenDrain?: boolean | undefined;
|
|
143506
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
143507
|
+
canUsePushPull?: boolean | undefined;
|
|
143508
|
+
isUsingPushPull?: boolean | undefined;
|
|
141741
143509
|
}>>>;
|
|
141742
143510
|
mfn: z.ZodOptional<z.ZodString>;
|
|
141743
143511
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -141812,6 +143580,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141812
143580
|
displayName?: string | undefined;
|
|
141813
143581
|
datasheetUrl?: string | undefined;
|
|
141814
143582
|
pinAttributes?: Record<string, {
|
|
143583
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143584
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143585
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
141815
143586
|
providesPower?: boolean | undefined;
|
|
141816
143587
|
requiresPower?: boolean | undefined;
|
|
141817
143588
|
providesGround?: boolean | undefined;
|
|
@@ -141822,6 +143593,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
141822
143593
|
includeInBoardPinout?: boolean | undefined;
|
|
141823
143594
|
highlightColor?: string | undefined;
|
|
141824
143595
|
mustBeConnected?: boolean | undefined;
|
|
143596
|
+
canUseInternalPullup?: boolean | undefined;
|
|
143597
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
143598
|
+
needsExternalPullup?: boolean | undefined;
|
|
143599
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
143600
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
143601
|
+
needsExternalPulldown?: boolean | undefined;
|
|
143602
|
+
canUseOpenDrain?: boolean | undefined;
|
|
143603
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
143604
|
+
canUsePushPull?: boolean | undefined;
|
|
143605
|
+
isUsingPushPull?: boolean | undefined;
|
|
141825
143606
|
}> | undefined;
|
|
141826
143607
|
cadModel?: string | {
|
|
141827
143608
|
stlUrl: string;
|
|
@@ -142329,6 +144110,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
142329
144110
|
displayName?: string | undefined;
|
|
142330
144111
|
datasheetUrl?: string | undefined;
|
|
142331
144112
|
pinAttributes?: Record<string, {
|
|
144113
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144114
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144115
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
142332
144116
|
providesPower?: boolean | undefined;
|
|
142333
144117
|
requiresPower?: boolean | undefined;
|
|
142334
144118
|
providesGround?: boolean | undefined;
|
|
@@ -142339,6 +144123,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
142339
144123
|
includeInBoardPinout?: boolean | undefined;
|
|
142340
144124
|
highlightColor?: string | undefined;
|
|
142341
144125
|
mustBeConnected?: boolean | undefined;
|
|
144126
|
+
canUseInternalPullup?: boolean | undefined;
|
|
144127
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
144128
|
+
needsExternalPullup?: boolean | undefined;
|
|
144129
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
144130
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
144131
|
+
needsExternalPulldown?: boolean | undefined;
|
|
144132
|
+
canUseOpenDrain?: boolean | undefined;
|
|
144133
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
144134
|
+
canUsePushPull?: boolean | undefined;
|
|
144135
|
+
isUsingPushPull?: boolean | undefined;
|
|
142342
144136
|
}> | undefined;
|
|
142343
144137
|
cadModel?: string | {
|
|
142344
144138
|
stlUrl: string;
|
|
@@ -142847,6 +144641,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
142847
144641
|
displayName?: string | undefined;
|
|
142848
144642
|
datasheetUrl?: string | undefined;
|
|
142849
144643
|
pinAttributes?: Record<string, {
|
|
144644
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144645
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144646
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
142850
144647
|
providesPower?: boolean | undefined;
|
|
142851
144648
|
requiresPower?: boolean | undefined;
|
|
142852
144649
|
providesGround?: boolean | undefined;
|
|
@@ -142857,6 +144654,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
142857
144654
|
includeInBoardPinout?: boolean | undefined;
|
|
142858
144655
|
highlightColor?: string | undefined;
|
|
142859
144656
|
mustBeConnected?: boolean | undefined;
|
|
144657
|
+
canUseInternalPullup?: boolean | undefined;
|
|
144658
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
144659
|
+
needsExternalPullup?: boolean | undefined;
|
|
144660
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
144661
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
144662
|
+
needsExternalPulldown?: boolean | undefined;
|
|
144663
|
+
canUseOpenDrain?: boolean | undefined;
|
|
144664
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
144665
|
+
canUsePushPull?: boolean | undefined;
|
|
144666
|
+
isUsingPushPull?: boolean | undefined;
|
|
142860
144667
|
}> | undefined;
|
|
142861
144668
|
cadModel?: string | {
|
|
142862
144669
|
stlUrl: string;
|
|
@@ -147368,6 +149175,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147368
149175
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
147369
149176
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
147370
149177
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
149178
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
149179
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
149180
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
147371
149181
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
147372
149182
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
147373
149183
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -147378,7 +149188,20 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147378
149188
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
147379
149189
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
147380
149190
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
147381
|
-
|
|
149191
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
149192
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
149193
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
149194
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
149195
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
149196
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
149197
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
149198
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
149199
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149200
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149201
|
+
}, "strip", z.ZodTypeAny, {
|
|
149202
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149203
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149204
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
147382
149205
|
providesPower?: boolean | undefined;
|
|
147383
149206
|
requiresPower?: boolean | undefined;
|
|
147384
149207
|
providesGround?: boolean | undefined;
|
|
@@ -147389,7 +149212,20 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147389
149212
|
includeInBoardPinout?: boolean | undefined;
|
|
147390
149213
|
highlightColor?: string | undefined;
|
|
147391
149214
|
mustBeConnected?: boolean | undefined;
|
|
147392
|
-
|
|
149215
|
+
canUseInternalPullup?: boolean | undefined;
|
|
149216
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
149217
|
+
needsExternalPullup?: boolean | undefined;
|
|
149218
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
149219
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
149220
|
+
needsExternalPulldown?: boolean | undefined;
|
|
149221
|
+
canUseOpenDrain?: boolean | undefined;
|
|
149222
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
149223
|
+
canUsePushPull?: boolean | undefined;
|
|
149224
|
+
isUsingPushPull?: boolean | undefined;
|
|
149225
|
+
}, {
|
|
149226
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149227
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149228
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
147393
149229
|
providesPower?: boolean | undefined;
|
|
147394
149230
|
requiresPower?: boolean | undefined;
|
|
147395
149231
|
providesGround?: boolean | undefined;
|
|
@@ -147400,6 +149236,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147400
149236
|
includeInBoardPinout?: boolean | undefined;
|
|
147401
149237
|
highlightColor?: string | undefined;
|
|
147402
149238
|
mustBeConnected?: boolean | undefined;
|
|
149239
|
+
canUseInternalPullup?: boolean | undefined;
|
|
149240
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
149241
|
+
needsExternalPullup?: boolean | undefined;
|
|
149242
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
149243
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
149244
|
+
needsExternalPulldown?: boolean | undefined;
|
|
149245
|
+
canUseOpenDrain?: boolean | undefined;
|
|
149246
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
149247
|
+
canUsePushPull?: boolean | undefined;
|
|
149248
|
+
isUsingPushPull?: boolean | undefined;
|
|
147403
149249
|
}>>>;
|
|
147404
149250
|
mfn: z.ZodOptional<z.ZodString>;
|
|
147405
149251
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -147474,6 +149320,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147474
149320
|
displayName?: string | undefined;
|
|
147475
149321
|
datasheetUrl?: string | undefined;
|
|
147476
149322
|
pinAttributes?: Record<string, {
|
|
149323
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149324
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149325
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
147477
149326
|
providesPower?: boolean | undefined;
|
|
147478
149327
|
requiresPower?: boolean | undefined;
|
|
147479
149328
|
providesGround?: boolean | undefined;
|
|
@@ -147484,6 +149333,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147484
149333
|
includeInBoardPinout?: boolean | undefined;
|
|
147485
149334
|
highlightColor?: string | undefined;
|
|
147486
149335
|
mustBeConnected?: boolean | undefined;
|
|
149336
|
+
canUseInternalPullup?: boolean | undefined;
|
|
149337
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
149338
|
+
needsExternalPullup?: boolean | undefined;
|
|
149339
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
149340
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
149341
|
+
needsExternalPulldown?: boolean | undefined;
|
|
149342
|
+
canUseOpenDrain?: boolean | undefined;
|
|
149343
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
149344
|
+
canUsePushPull?: boolean | undefined;
|
|
149345
|
+
isUsingPushPull?: boolean | undefined;
|
|
147487
149346
|
}> | undefined;
|
|
147488
149347
|
cadModel?: string | {
|
|
147489
149348
|
stlUrl: string;
|
|
@@ -147988,6 +149847,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147988
149847
|
displayName?: string | undefined;
|
|
147989
149848
|
datasheetUrl?: string | undefined;
|
|
147990
149849
|
pinAttributes?: Record<string, {
|
|
149850
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149851
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149852
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
147991
149853
|
providesPower?: boolean | undefined;
|
|
147992
149854
|
requiresPower?: boolean | undefined;
|
|
147993
149855
|
providesGround?: boolean | undefined;
|
|
@@ -147998,6 +149860,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
147998
149860
|
includeInBoardPinout?: boolean | undefined;
|
|
147999
149861
|
highlightColor?: string | undefined;
|
|
148000
149862
|
mustBeConnected?: boolean | undefined;
|
|
149863
|
+
canUseInternalPullup?: boolean | undefined;
|
|
149864
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
149865
|
+
needsExternalPullup?: boolean | undefined;
|
|
149866
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
149867
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
149868
|
+
needsExternalPulldown?: boolean | undefined;
|
|
149869
|
+
canUseOpenDrain?: boolean | undefined;
|
|
149870
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
149871
|
+
canUsePushPull?: boolean | undefined;
|
|
149872
|
+
isUsingPushPull?: boolean | undefined;
|
|
148001
149873
|
}> | undefined;
|
|
148002
149874
|
cadModel?: string | {
|
|
148003
149875
|
stlUrl: string;
|
|
@@ -148502,6 +150374,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
148502
150374
|
displayName?: string | undefined;
|
|
148503
150375
|
datasheetUrl?: string | undefined;
|
|
148504
150376
|
pinAttributes?: Record<string, {
|
|
150377
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
150378
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
150379
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
148505
150380
|
providesPower?: boolean | undefined;
|
|
148506
150381
|
requiresPower?: boolean | undefined;
|
|
148507
150382
|
providesGround?: boolean | undefined;
|
|
@@ -148512,6 +150387,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
148512
150387
|
includeInBoardPinout?: boolean | undefined;
|
|
148513
150388
|
highlightColor?: string | undefined;
|
|
148514
150389
|
mustBeConnected?: boolean | undefined;
|
|
150390
|
+
canUseInternalPullup?: boolean | undefined;
|
|
150391
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
150392
|
+
needsExternalPullup?: boolean | undefined;
|
|
150393
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
150394
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
150395
|
+
needsExternalPulldown?: boolean | undefined;
|
|
150396
|
+
canUseOpenDrain?: boolean | undefined;
|
|
150397
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
150398
|
+
canUsePushPull?: boolean | undefined;
|
|
150399
|
+
isUsingPushPull?: boolean | undefined;
|
|
148515
150400
|
}> | undefined;
|
|
148516
150401
|
cadModel?: string | {
|
|
148517
150402
|
stlUrl: string;
|
|
@@ -149016,6 +150901,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149016
150901
|
displayName?: string | undefined;
|
|
149017
150902
|
datasheetUrl?: string | undefined;
|
|
149018
150903
|
pinAttributes?: Record<string, {
|
|
150904
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
150905
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
150906
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
149019
150907
|
providesPower?: boolean | undefined;
|
|
149020
150908
|
requiresPower?: boolean | undefined;
|
|
149021
150909
|
providesGround?: boolean | undefined;
|
|
@@ -149026,6 +150914,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149026
150914
|
includeInBoardPinout?: boolean | undefined;
|
|
149027
150915
|
highlightColor?: string | undefined;
|
|
149028
150916
|
mustBeConnected?: boolean | undefined;
|
|
150917
|
+
canUseInternalPullup?: boolean | undefined;
|
|
150918
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
150919
|
+
needsExternalPullup?: boolean | undefined;
|
|
150920
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
150921
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
150922
|
+
needsExternalPulldown?: boolean | undefined;
|
|
150923
|
+
canUseOpenDrain?: boolean | undefined;
|
|
150924
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
150925
|
+
canUsePushPull?: boolean | undefined;
|
|
150926
|
+
isUsingPushPull?: boolean | undefined;
|
|
149029
150927
|
}> | undefined;
|
|
149030
150928
|
cadModel?: string | {
|
|
149031
150929
|
stlUrl: string;
|
|
@@ -153755,6 +155653,9 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
153755
155653
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
153756
155654
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
153757
155655
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
155656
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
155657
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
155658
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
153758
155659
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
153759
155660
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
153760
155661
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -153765,7 +155666,20 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
153765
155666
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
153766
155667
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
153767
155668
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
153768
|
-
|
|
155669
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
155670
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
155671
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
155672
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
155673
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
155674
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
155675
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
155676
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
155677
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
155678
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
155679
|
+
}, "strip", z.ZodTypeAny, {
|
|
155680
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155681
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155682
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
153769
155683
|
providesPower?: boolean | undefined;
|
|
153770
155684
|
requiresPower?: boolean | undefined;
|
|
153771
155685
|
providesGround?: boolean | undefined;
|
|
@@ -153776,7 +155690,20 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
153776
155690
|
includeInBoardPinout?: boolean | undefined;
|
|
153777
155691
|
highlightColor?: string | undefined;
|
|
153778
155692
|
mustBeConnected?: boolean | undefined;
|
|
153779
|
-
|
|
155693
|
+
canUseInternalPullup?: boolean | undefined;
|
|
155694
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
155695
|
+
needsExternalPullup?: boolean | undefined;
|
|
155696
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
155697
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
155698
|
+
needsExternalPulldown?: boolean | undefined;
|
|
155699
|
+
canUseOpenDrain?: boolean | undefined;
|
|
155700
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
155701
|
+
canUsePushPull?: boolean | undefined;
|
|
155702
|
+
isUsingPushPull?: boolean | undefined;
|
|
155703
|
+
}, {
|
|
155704
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155705
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155706
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
153780
155707
|
providesPower?: boolean | undefined;
|
|
153781
155708
|
requiresPower?: boolean | undefined;
|
|
153782
155709
|
providesGround?: boolean | undefined;
|
|
@@ -153787,6 +155714,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
153787
155714
|
includeInBoardPinout?: boolean | undefined;
|
|
153788
155715
|
highlightColor?: string | undefined;
|
|
153789
155716
|
mustBeConnected?: boolean | undefined;
|
|
155717
|
+
canUseInternalPullup?: boolean | undefined;
|
|
155718
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
155719
|
+
needsExternalPullup?: boolean | undefined;
|
|
155720
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
155721
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
155722
|
+
needsExternalPulldown?: boolean | undefined;
|
|
155723
|
+
canUseOpenDrain?: boolean | undefined;
|
|
155724
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
155725
|
+
canUsePushPull?: boolean | undefined;
|
|
155726
|
+
isUsingPushPull?: boolean | undefined;
|
|
153790
155727
|
}>>>;
|
|
153791
155728
|
mfn: z.ZodOptional<z.ZodString>;
|
|
153792
155729
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -153849,6 +155786,9 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
153849
155786
|
displayName?: string | undefined;
|
|
153850
155787
|
datasheetUrl?: string | undefined;
|
|
153851
155788
|
pinAttributes?: Record<string, {
|
|
155789
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155790
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155791
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
153852
155792
|
providesPower?: boolean | undefined;
|
|
153853
155793
|
requiresPower?: boolean | undefined;
|
|
153854
155794
|
providesGround?: boolean | undefined;
|
|
@@ -153859,6 +155799,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
153859
155799
|
includeInBoardPinout?: boolean | undefined;
|
|
153860
155800
|
highlightColor?: string | undefined;
|
|
153861
155801
|
mustBeConnected?: boolean | undefined;
|
|
155802
|
+
canUseInternalPullup?: boolean | undefined;
|
|
155803
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
155804
|
+
needsExternalPullup?: boolean | undefined;
|
|
155805
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
155806
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
155807
|
+
needsExternalPulldown?: boolean | undefined;
|
|
155808
|
+
canUseOpenDrain?: boolean | undefined;
|
|
155809
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
155810
|
+
canUsePushPull?: boolean | undefined;
|
|
155811
|
+
isUsingPushPull?: boolean | undefined;
|
|
153862
155812
|
}> | undefined;
|
|
153863
155813
|
cadModel?: string | {
|
|
153864
155814
|
stlUrl: string;
|
|
@@ -154356,6 +156306,9 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
154356
156306
|
displayName?: string | undefined;
|
|
154357
156307
|
datasheetUrl?: string | undefined;
|
|
154358
156308
|
pinAttributes?: Record<string, {
|
|
156309
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156310
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156311
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
154359
156312
|
providesPower?: boolean | undefined;
|
|
154360
156313
|
requiresPower?: boolean | undefined;
|
|
154361
156314
|
providesGround?: boolean | undefined;
|
|
@@ -154366,6 +156319,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
154366
156319
|
includeInBoardPinout?: boolean | undefined;
|
|
154367
156320
|
highlightColor?: string | undefined;
|
|
154368
156321
|
mustBeConnected?: boolean | undefined;
|
|
156322
|
+
canUseInternalPullup?: boolean | undefined;
|
|
156323
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
156324
|
+
needsExternalPullup?: boolean | undefined;
|
|
156325
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
156326
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
156327
|
+
needsExternalPulldown?: boolean | undefined;
|
|
156328
|
+
canUseOpenDrain?: boolean | undefined;
|
|
156329
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
156330
|
+
canUsePushPull?: boolean | undefined;
|
|
156331
|
+
isUsingPushPull?: boolean | undefined;
|
|
154369
156332
|
}> | undefined;
|
|
154370
156333
|
cadModel?: string | {
|
|
154371
156334
|
stlUrl: string;
|
|
@@ -157871,6 +159834,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
157871
159834
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
157872
159835
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
157873
159836
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
159837
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
159838
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
159839
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
157874
159840
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
157875
159841
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
157876
159842
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -157881,7 +159847,20 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
157881
159847
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
157882
159848
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
157883
159849
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
157884
|
-
|
|
159850
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
159851
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
159852
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
159853
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
159854
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
159855
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
159856
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
159857
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
159858
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
159859
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
159860
|
+
}, "strip", z.ZodTypeAny, {
|
|
159861
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
159862
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
159863
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
157885
159864
|
providesPower?: boolean | undefined;
|
|
157886
159865
|
requiresPower?: boolean | undefined;
|
|
157887
159866
|
providesGround?: boolean | undefined;
|
|
@@ -157892,7 +159871,20 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
157892
159871
|
includeInBoardPinout?: boolean | undefined;
|
|
157893
159872
|
highlightColor?: string | undefined;
|
|
157894
159873
|
mustBeConnected?: boolean | undefined;
|
|
157895
|
-
|
|
159874
|
+
canUseInternalPullup?: boolean | undefined;
|
|
159875
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
159876
|
+
needsExternalPullup?: boolean | undefined;
|
|
159877
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
159878
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
159879
|
+
needsExternalPulldown?: boolean | undefined;
|
|
159880
|
+
canUseOpenDrain?: boolean | undefined;
|
|
159881
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
159882
|
+
canUsePushPull?: boolean | undefined;
|
|
159883
|
+
isUsingPushPull?: boolean | undefined;
|
|
159884
|
+
}, {
|
|
159885
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
159886
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
159887
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
157896
159888
|
providesPower?: boolean | undefined;
|
|
157897
159889
|
requiresPower?: boolean | undefined;
|
|
157898
159890
|
providesGround?: boolean | undefined;
|
|
@@ -157903,6 +159895,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
157903
159895
|
includeInBoardPinout?: boolean | undefined;
|
|
157904
159896
|
highlightColor?: string | undefined;
|
|
157905
159897
|
mustBeConnected?: boolean | undefined;
|
|
159898
|
+
canUseInternalPullup?: boolean | undefined;
|
|
159899
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
159900
|
+
needsExternalPullup?: boolean | undefined;
|
|
159901
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
159902
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
159903
|
+
needsExternalPulldown?: boolean | undefined;
|
|
159904
|
+
canUseOpenDrain?: boolean | undefined;
|
|
159905
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
159906
|
+
canUsePushPull?: boolean | undefined;
|
|
159907
|
+
isUsingPushPull?: boolean | undefined;
|
|
157906
159908
|
}>>>;
|
|
157907
159909
|
mfn: z.ZodOptional<z.ZodString>;
|
|
157908
159910
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -157970,6 +159972,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
157970
159972
|
displayName?: string | undefined;
|
|
157971
159973
|
datasheetUrl?: string | undefined;
|
|
157972
159974
|
pinAttributes?: Record<string, {
|
|
159975
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
159976
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
159977
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
157973
159978
|
providesPower?: boolean | undefined;
|
|
157974
159979
|
requiresPower?: boolean | undefined;
|
|
157975
159980
|
providesGround?: boolean | undefined;
|
|
@@ -157980,6 +159985,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
157980
159985
|
includeInBoardPinout?: boolean | undefined;
|
|
157981
159986
|
highlightColor?: string | undefined;
|
|
157982
159987
|
mustBeConnected?: boolean | undefined;
|
|
159988
|
+
canUseInternalPullup?: boolean | undefined;
|
|
159989
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
159990
|
+
needsExternalPullup?: boolean | undefined;
|
|
159991
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
159992
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
159993
|
+
needsExternalPulldown?: boolean | undefined;
|
|
159994
|
+
canUseOpenDrain?: boolean | undefined;
|
|
159995
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
159996
|
+
canUsePushPull?: boolean | undefined;
|
|
159997
|
+
isUsingPushPull?: boolean | undefined;
|
|
157983
159998
|
}> | undefined;
|
|
157984
159999
|
cadModel?: string | {
|
|
157985
160000
|
stlUrl: string;
|
|
@@ -158483,6 +160498,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
158483
160498
|
displayName?: string | undefined;
|
|
158484
160499
|
datasheetUrl?: string | undefined;
|
|
158485
160500
|
pinAttributes?: Record<string, {
|
|
160501
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160502
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160503
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
158486
160504
|
providesPower?: boolean | undefined;
|
|
158487
160505
|
requiresPower?: boolean | undefined;
|
|
158488
160506
|
providesGround?: boolean | undefined;
|
|
@@ -158493,6 +160511,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
158493
160511
|
includeInBoardPinout?: boolean | undefined;
|
|
158494
160512
|
highlightColor?: string | undefined;
|
|
158495
160513
|
mustBeConnected?: boolean | undefined;
|
|
160514
|
+
canUseInternalPullup?: boolean | undefined;
|
|
160515
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
160516
|
+
needsExternalPullup?: boolean | undefined;
|
|
160517
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
160518
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
160519
|
+
needsExternalPulldown?: boolean | undefined;
|
|
160520
|
+
canUseOpenDrain?: boolean | undefined;
|
|
160521
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
160522
|
+
canUsePushPull?: boolean | undefined;
|
|
160523
|
+
isUsingPushPull?: boolean | undefined;
|
|
158496
160524
|
}> | undefined;
|
|
158497
160525
|
cadModel?: string | {
|
|
158498
160526
|
stlUrl: string;
|
|
@@ -162004,6 +164032,9 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
162004
164032
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
162005
164033
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
162006
164034
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
164035
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
164036
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
164037
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
162007
164038
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
162008
164039
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
162009
164040
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -162014,7 +164045,20 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
162014
164045
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
162015
164046
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
162016
164047
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
162017
|
-
|
|
164048
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
164049
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
164050
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
164051
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
164052
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
164053
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
164054
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
164055
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
164056
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164057
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164058
|
+
}, "strip", z.ZodTypeAny, {
|
|
164059
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164060
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164061
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
162018
164062
|
providesPower?: boolean | undefined;
|
|
162019
164063
|
requiresPower?: boolean | undefined;
|
|
162020
164064
|
providesGround?: boolean | undefined;
|
|
@@ -162025,7 +164069,20 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
162025
164069
|
includeInBoardPinout?: boolean | undefined;
|
|
162026
164070
|
highlightColor?: string | undefined;
|
|
162027
164071
|
mustBeConnected?: boolean | undefined;
|
|
162028
|
-
|
|
164072
|
+
canUseInternalPullup?: boolean | undefined;
|
|
164073
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
164074
|
+
needsExternalPullup?: boolean | undefined;
|
|
164075
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
164076
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
164077
|
+
needsExternalPulldown?: boolean | undefined;
|
|
164078
|
+
canUseOpenDrain?: boolean | undefined;
|
|
164079
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
164080
|
+
canUsePushPull?: boolean | undefined;
|
|
164081
|
+
isUsingPushPull?: boolean | undefined;
|
|
164082
|
+
}, {
|
|
164083
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164084
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164085
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
162029
164086
|
providesPower?: boolean | undefined;
|
|
162030
164087
|
requiresPower?: boolean | undefined;
|
|
162031
164088
|
providesGround?: boolean | undefined;
|
|
@@ -162036,6 +164093,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
162036
164093
|
includeInBoardPinout?: boolean | undefined;
|
|
162037
164094
|
highlightColor?: string | undefined;
|
|
162038
164095
|
mustBeConnected?: boolean | undefined;
|
|
164096
|
+
canUseInternalPullup?: boolean | undefined;
|
|
164097
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
164098
|
+
needsExternalPullup?: boolean | undefined;
|
|
164099
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
164100
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
164101
|
+
needsExternalPulldown?: boolean | undefined;
|
|
164102
|
+
canUseOpenDrain?: boolean | undefined;
|
|
164103
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
164104
|
+
canUsePushPull?: boolean | undefined;
|
|
164105
|
+
isUsingPushPull?: boolean | undefined;
|
|
162039
164106
|
}>>>;
|
|
162040
164107
|
mfn: z.ZodOptional<z.ZodString>;
|
|
162041
164108
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -162103,6 +164170,9 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
162103
164170
|
displayName?: string | undefined;
|
|
162104
164171
|
datasheetUrl?: string | undefined;
|
|
162105
164172
|
pinAttributes?: Record<string, {
|
|
164173
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164174
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164175
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
162106
164176
|
providesPower?: boolean | undefined;
|
|
162107
164177
|
requiresPower?: boolean | undefined;
|
|
162108
164178
|
providesGround?: boolean | undefined;
|
|
@@ -162113,6 +164183,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
162113
164183
|
includeInBoardPinout?: boolean | undefined;
|
|
162114
164184
|
highlightColor?: string | undefined;
|
|
162115
164185
|
mustBeConnected?: boolean | undefined;
|
|
164186
|
+
canUseInternalPullup?: boolean | undefined;
|
|
164187
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
164188
|
+
needsExternalPullup?: boolean | undefined;
|
|
164189
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
164190
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
164191
|
+
needsExternalPulldown?: boolean | undefined;
|
|
164192
|
+
canUseOpenDrain?: boolean | undefined;
|
|
164193
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
164194
|
+
canUsePushPull?: boolean | undefined;
|
|
164195
|
+
isUsingPushPull?: boolean | undefined;
|
|
162116
164196
|
}> | undefined;
|
|
162117
164197
|
cadModel?: string | {
|
|
162118
164198
|
stlUrl: string;
|
|
@@ -162616,6 +164696,9 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
162616
164696
|
displayName?: string | undefined;
|
|
162617
164697
|
datasheetUrl?: string | undefined;
|
|
162618
164698
|
pinAttributes?: Record<string, {
|
|
164699
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164700
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164701
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
162619
164702
|
providesPower?: boolean | undefined;
|
|
162620
164703
|
requiresPower?: boolean | undefined;
|
|
162621
164704
|
providesGround?: boolean | undefined;
|
|
@@ -162626,6 +164709,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
162626
164709
|
includeInBoardPinout?: boolean | undefined;
|
|
162627
164710
|
highlightColor?: string | undefined;
|
|
162628
164711
|
mustBeConnected?: boolean | undefined;
|
|
164712
|
+
canUseInternalPullup?: boolean | undefined;
|
|
164713
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
164714
|
+
needsExternalPullup?: boolean | undefined;
|
|
164715
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
164716
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
164717
|
+
needsExternalPulldown?: boolean | undefined;
|
|
164718
|
+
canUseOpenDrain?: boolean | undefined;
|
|
164719
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
164720
|
+
canUsePushPull?: boolean | undefined;
|
|
164721
|
+
isUsingPushPull?: boolean | undefined;
|
|
162629
164722
|
}> | undefined;
|
|
162630
164723
|
cadModel?: string | {
|
|
162631
164724
|
stlUrl: string;
|
|
@@ -166132,6 +168225,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
166132
168225
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
166133
168226
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
166134
168227
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
168228
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
168229
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
168230
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
166135
168231
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
166136
168232
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
166137
168233
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -166142,7 +168238,20 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
166142
168238
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
166143
168239
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
166144
168240
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
166145
|
-
|
|
168241
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
168242
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
168243
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
168244
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
168245
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
168246
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
168247
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
168248
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
168249
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168250
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168251
|
+
}, "strip", z.ZodTypeAny, {
|
|
168252
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168253
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168254
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
166146
168255
|
providesPower?: boolean | undefined;
|
|
166147
168256
|
requiresPower?: boolean | undefined;
|
|
166148
168257
|
providesGround?: boolean | undefined;
|
|
@@ -166153,7 +168262,20 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
166153
168262
|
includeInBoardPinout?: boolean | undefined;
|
|
166154
168263
|
highlightColor?: string | undefined;
|
|
166155
168264
|
mustBeConnected?: boolean | undefined;
|
|
166156
|
-
|
|
168265
|
+
canUseInternalPullup?: boolean | undefined;
|
|
168266
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
168267
|
+
needsExternalPullup?: boolean | undefined;
|
|
168268
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
168269
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
168270
|
+
needsExternalPulldown?: boolean | undefined;
|
|
168271
|
+
canUseOpenDrain?: boolean | undefined;
|
|
168272
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
168273
|
+
canUsePushPull?: boolean | undefined;
|
|
168274
|
+
isUsingPushPull?: boolean | undefined;
|
|
168275
|
+
}, {
|
|
168276
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168277
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168278
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
166157
168279
|
providesPower?: boolean | undefined;
|
|
166158
168280
|
requiresPower?: boolean | undefined;
|
|
166159
168281
|
providesGround?: boolean | undefined;
|
|
@@ -166164,6 +168286,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
166164
168286
|
includeInBoardPinout?: boolean | undefined;
|
|
166165
168287
|
highlightColor?: string | undefined;
|
|
166166
168288
|
mustBeConnected?: boolean | undefined;
|
|
168289
|
+
canUseInternalPullup?: boolean | undefined;
|
|
168290
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
168291
|
+
needsExternalPullup?: boolean | undefined;
|
|
168292
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
168293
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
168294
|
+
needsExternalPulldown?: boolean | undefined;
|
|
168295
|
+
canUseOpenDrain?: boolean | undefined;
|
|
168296
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
168297
|
+
canUsePushPull?: boolean | undefined;
|
|
168298
|
+
isUsingPushPull?: boolean | undefined;
|
|
166167
168299
|
}>>>;
|
|
166168
168300
|
mfn: z.ZodOptional<z.ZodString>;
|
|
166169
168301
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -166229,6 +168361,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
166229
168361
|
displayName?: string | undefined;
|
|
166230
168362
|
datasheetUrl?: string | undefined;
|
|
166231
168363
|
pinAttributes?: Record<string, {
|
|
168364
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168365
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168366
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
166232
168367
|
providesPower?: boolean | undefined;
|
|
166233
168368
|
requiresPower?: boolean | undefined;
|
|
166234
168369
|
providesGround?: boolean | undefined;
|
|
@@ -166239,6 +168374,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
166239
168374
|
includeInBoardPinout?: boolean | undefined;
|
|
166240
168375
|
highlightColor?: string | undefined;
|
|
166241
168376
|
mustBeConnected?: boolean | undefined;
|
|
168377
|
+
canUseInternalPullup?: boolean | undefined;
|
|
168378
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
168379
|
+
needsExternalPullup?: boolean | undefined;
|
|
168380
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
168381
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
168382
|
+
needsExternalPulldown?: boolean | undefined;
|
|
168383
|
+
canUseOpenDrain?: boolean | undefined;
|
|
168384
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
168385
|
+
canUsePushPull?: boolean | undefined;
|
|
168386
|
+
isUsingPushPull?: boolean | undefined;
|
|
166242
168387
|
}> | undefined;
|
|
166243
168388
|
cadModel?: string | {
|
|
166244
168389
|
stlUrl: string;
|
|
@@ -166738,6 +168883,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
166738
168883
|
displayName?: string | undefined;
|
|
166739
168884
|
datasheetUrl?: string | undefined;
|
|
166740
168885
|
pinAttributes?: Record<string, {
|
|
168886
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168887
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168888
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
166741
168889
|
providesPower?: boolean | undefined;
|
|
166742
168890
|
requiresPower?: boolean | undefined;
|
|
166743
168891
|
providesGround?: boolean | undefined;
|
|
@@ -166748,6 +168896,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
166748
168896
|
includeInBoardPinout?: boolean | undefined;
|
|
166749
168897
|
highlightColor?: string | undefined;
|
|
166750
168898
|
mustBeConnected?: boolean | undefined;
|
|
168899
|
+
canUseInternalPullup?: boolean | undefined;
|
|
168900
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
168901
|
+
needsExternalPullup?: boolean | undefined;
|
|
168902
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
168903
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
168904
|
+
needsExternalPulldown?: boolean | undefined;
|
|
168905
|
+
canUseOpenDrain?: boolean | undefined;
|
|
168906
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
168907
|
+
canUsePushPull?: boolean | undefined;
|
|
168908
|
+
isUsingPushPull?: boolean | undefined;
|
|
166751
168909
|
}> | undefined;
|
|
166752
168910
|
cadModel?: string | {
|
|
166753
168911
|
stlUrl: string;
|