@tscircuit/props 0.0.480 → 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/dist/index.d.ts +498 -1328
- package/dist/index.js +34 -8
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +69 -16
- 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,14 +6477,6 @@ interface PinAttributeMap {
|
|
|
6474
6477
|
includeInBoardPinout?: boolean;
|
|
6475
6478
|
highlightColor?: string;
|
|
6476
6479
|
mustBeConnected?: boolean;
|
|
6477
|
-
isI2cSda?: boolean;
|
|
6478
|
-
isI2cScl?: boolean;
|
|
6479
|
-
isSpiMosi?: boolean;
|
|
6480
|
-
isSpiMiso?: boolean;
|
|
6481
|
-
isSpiSck?: boolean;
|
|
6482
|
-
isSpiCs?: boolean;
|
|
6483
|
-
isUartTx?: boolean;
|
|
6484
|
-
isUartRx?: boolean;
|
|
6485
6480
|
canUseInternalPullup?: boolean;
|
|
6486
6481
|
isUsingInternalPullup?: boolean;
|
|
6487
6482
|
needsExternalPullup?: boolean;
|
|
@@ -6494,6 +6489,9 @@ interface PinAttributeMap {
|
|
|
6494
6489
|
isUsingPushPull?: boolean;
|
|
6495
6490
|
}
|
|
6496
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"]>>;
|
|
6497
6495
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
6498
6496
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
6499
6497
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6504,14 +6502,6 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6504
6502
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
6505
6503
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
6506
6504
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
6507
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
6508
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
6509
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
6510
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
6511
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
6512
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
6513
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
6514
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
6515
6505
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6516
6506
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6517
6507
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6523,6 +6513,9 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6523
6513
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6524
6514
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6525
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;
|
|
6526
6519
|
providesPower?: boolean | undefined;
|
|
6527
6520
|
requiresPower?: boolean | undefined;
|
|
6528
6521
|
providesGround?: boolean | undefined;
|
|
@@ -6533,14 +6526,6 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6533
6526
|
includeInBoardPinout?: boolean | undefined;
|
|
6534
6527
|
highlightColor?: string | undefined;
|
|
6535
6528
|
mustBeConnected?: boolean | undefined;
|
|
6536
|
-
isI2cSda?: boolean | undefined;
|
|
6537
|
-
isI2cScl?: boolean | undefined;
|
|
6538
|
-
isSpiMosi?: boolean | undefined;
|
|
6539
|
-
isSpiMiso?: boolean | undefined;
|
|
6540
|
-
isSpiSck?: boolean | undefined;
|
|
6541
|
-
isSpiCs?: boolean | undefined;
|
|
6542
|
-
isUartTx?: boolean | undefined;
|
|
6543
|
-
isUartRx?: boolean | undefined;
|
|
6544
6529
|
canUseInternalPullup?: boolean | undefined;
|
|
6545
6530
|
isUsingInternalPullup?: boolean | undefined;
|
|
6546
6531
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -6552,6 +6537,9 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6552
6537
|
canUsePushPull?: boolean | undefined;
|
|
6553
6538
|
isUsingPushPull?: boolean | undefined;
|
|
6554
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;
|
|
6555
6543
|
providesPower?: boolean | undefined;
|
|
6556
6544
|
requiresPower?: boolean | undefined;
|
|
6557
6545
|
providesGround?: boolean | undefined;
|
|
@@ -6562,14 +6550,6 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6562
6550
|
includeInBoardPinout?: boolean | undefined;
|
|
6563
6551
|
highlightColor?: string | undefined;
|
|
6564
6552
|
mustBeConnected?: boolean | undefined;
|
|
6565
|
-
isI2cSda?: boolean | undefined;
|
|
6566
|
-
isI2cScl?: boolean | undefined;
|
|
6567
|
-
isSpiMosi?: boolean | undefined;
|
|
6568
|
-
isSpiMiso?: boolean | undefined;
|
|
6569
|
-
isSpiSck?: boolean | undefined;
|
|
6570
|
-
isSpiCs?: boolean | undefined;
|
|
6571
|
-
isUartTx?: boolean | undefined;
|
|
6572
|
-
isUartRx?: boolean | undefined;
|
|
6573
6553
|
canUseInternalPullup?: boolean | undefined;
|
|
6574
6554
|
isUsingInternalPullup?: boolean | undefined;
|
|
6575
6555
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -9663,6 +9643,9 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9663
9643
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
9664
9644
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
9665
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"]>>;
|
|
9666
9649
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
9667
9650
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
9668
9651
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9673,14 +9656,6 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9673
9656
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
9674
9657
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
9675
9658
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
9676
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
9677
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
9678
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
9679
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
9680
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
9681
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
9682
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
9683
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
9684
9659
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
9685
9660
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
9686
9661
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9692,6 +9667,9 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9692
9667
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9693
9668
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9694
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;
|
|
9695
9673
|
providesPower?: boolean | undefined;
|
|
9696
9674
|
requiresPower?: boolean | undefined;
|
|
9697
9675
|
providesGround?: boolean | undefined;
|
|
@@ -9702,14 +9680,6 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9702
9680
|
includeInBoardPinout?: boolean | undefined;
|
|
9703
9681
|
highlightColor?: string | undefined;
|
|
9704
9682
|
mustBeConnected?: boolean | undefined;
|
|
9705
|
-
isI2cSda?: boolean | undefined;
|
|
9706
|
-
isI2cScl?: boolean | undefined;
|
|
9707
|
-
isSpiMosi?: boolean | undefined;
|
|
9708
|
-
isSpiMiso?: boolean | undefined;
|
|
9709
|
-
isSpiSck?: boolean | undefined;
|
|
9710
|
-
isSpiCs?: boolean | undefined;
|
|
9711
|
-
isUartTx?: boolean | undefined;
|
|
9712
|
-
isUartRx?: boolean | undefined;
|
|
9713
9683
|
canUseInternalPullup?: boolean | undefined;
|
|
9714
9684
|
isUsingInternalPullup?: boolean | undefined;
|
|
9715
9685
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -9721,6 +9691,9 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9721
9691
|
canUsePushPull?: boolean | undefined;
|
|
9722
9692
|
isUsingPushPull?: boolean | undefined;
|
|
9723
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;
|
|
9724
9697
|
providesPower?: boolean | undefined;
|
|
9725
9698
|
requiresPower?: boolean | undefined;
|
|
9726
9699
|
providesGround?: boolean | undefined;
|
|
@@ -9731,14 +9704,6 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9731
9704
|
includeInBoardPinout?: boolean | undefined;
|
|
9732
9705
|
highlightColor?: string | undefined;
|
|
9733
9706
|
mustBeConnected?: boolean | undefined;
|
|
9734
|
-
isI2cSda?: boolean | undefined;
|
|
9735
|
-
isI2cScl?: boolean | undefined;
|
|
9736
|
-
isSpiMosi?: boolean | undefined;
|
|
9737
|
-
isSpiMiso?: boolean | undefined;
|
|
9738
|
-
isSpiSck?: boolean | undefined;
|
|
9739
|
-
isSpiCs?: boolean | undefined;
|
|
9740
|
-
isUartTx?: boolean | undefined;
|
|
9741
|
-
isUartRx?: boolean | undefined;
|
|
9742
9707
|
canUseInternalPullup?: boolean | undefined;
|
|
9743
9708
|
isUsingInternalPullup?: boolean | undefined;
|
|
9744
9709
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -9808,6 +9773,9 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9808
9773
|
displayName?: string | undefined;
|
|
9809
9774
|
datasheetUrl?: string | undefined;
|
|
9810
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;
|
|
9811
9779
|
providesPower?: boolean | undefined;
|
|
9812
9780
|
requiresPower?: boolean | undefined;
|
|
9813
9781
|
providesGround?: boolean | undefined;
|
|
@@ -9818,14 +9786,6 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9818
9786
|
includeInBoardPinout?: boolean | undefined;
|
|
9819
9787
|
highlightColor?: string | undefined;
|
|
9820
9788
|
mustBeConnected?: boolean | undefined;
|
|
9821
|
-
isI2cSda?: boolean | undefined;
|
|
9822
|
-
isI2cScl?: boolean | undefined;
|
|
9823
|
-
isSpiMosi?: boolean | undefined;
|
|
9824
|
-
isSpiMiso?: boolean | undefined;
|
|
9825
|
-
isSpiSck?: boolean | undefined;
|
|
9826
|
-
isSpiCs?: boolean | undefined;
|
|
9827
|
-
isUartTx?: boolean | undefined;
|
|
9828
|
-
isUartRx?: boolean | undefined;
|
|
9829
9789
|
canUseInternalPullup?: boolean | undefined;
|
|
9830
9790
|
isUsingInternalPullup?: boolean | undefined;
|
|
9831
9791
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -10332,6 +10292,9 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10332
10292
|
displayName?: string | undefined;
|
|
10333
10293
|
datasheetUrl?: string | undefined;
|
|
10334
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;
|
|
10335
10298
|
providesPower?: boolean | undefined;
|
|
10336
10299
|
requiresPower?: boolean | undefined;
|
|
10337
10300
|
providesGround?: boolean | undefined;
|
|
@@ -10342,14 +10305,6 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10342
10305
|
includeInBoardPinout?: boolean | undefined;
|
|
10343
10306
|
highlightColor?: string | undefined;
|
|
10344
10307
|
mustBeConnected?: boolean | undefined;
|
|
10345
|
-
isI2cSda?: boolean | undefined;
|
|
10346
|
-
isI2cScl?: boolean | undefined;
|
|
10347
|
-
isSpiMosi?: boolean | undefined;
|
|
10348
|
-
isSpiMiso?: boolean | undefined;
|
|
10349
|
-
isSpiSck?: boolean | undefined;
|
|
10350
|
-
isSpiCs?: boolean | undefined;
|
|
10351
|
-
isUartTx?: boolean | undefined;
|
|
10352
|
-
isUartRx?: boolean | undefined;
|
|
10353
10308
|
canUseInternalPullup?: boolean | undefined;
|
|
10354
10309
|
isUsingInternalPullup?: boolean | undefined;
|
|
10355
10310
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -13851,6 +13806,9 @@ declare const componentProps: z.ZodObject<{
|
|
|
13851
13806
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
13852
13807
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
13853
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"]>>;
|
|
13854
13812
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
13855
13813
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
13856
13814
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13861,14 +13819,6 @@ declare const componentProps: z.ZodObject<{
|
|
|
13861
13819
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
13862
13820
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
13863
13821
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
13864
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
13865
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
13866
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
13867
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
13868
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
13869
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
13870
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
13871
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
13872
13822
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
13873
13823
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
13874
13824
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13880,6 +13830,9 @@ declare const componentProps: z.ZodObject<{
|
|
|
13880
13830
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13881
13831
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13882
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;
|
|
13883
13836
|
providesPower?: boolean | undefined;
|
|
13884
13837
|
requiresPower?: boolean | undefined;
|
|
13885
13838
|
providesGround?: boolean | undefined;
|
|
@@ -13890,14 +13843,6 @@ declare const componentProps: z.ZodObject<{
|
|
|
13890
13843
|
includeInBoardPinout?: boolean | undefined;
|
|
13891
13844
|
highlightColor?: string | undefined;
|
|
13892
13845
|
mustBeConnected?: boolean | undefined;
|
|
13893
|
-
isI2cSda?: boolean | undefined;
|
|
13894
|
-
isI2cScl?: boolean | undefined;
|
|
13895
|
-
isSpiMosi?: boolean | undefined;
|
|
13896
|
-
isSpiMiso?: boolean | undefined;
|
|
13897
|
-
isSpiSck?: boolean | undefined;
|
|
13898
|
-
isSpiCs?: boolean | undefined;
|
|
13899
|
-
isUartTx?: boolean | undefined;
|
|
13900
|
-
isUartRx?: boolean | undefined;
|
|
13901
13846
|
canUseInternalPullup?: boolean | undefined;
|
|
13902
13847
|
isUsingInternalPullup?: boolean | undefined;
|
|
13903
13848
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -13909,6 +13854,9 @@ declare const componentProps: z.ZodObject<{
|
|
|
13909
13854
|
canUsePushPull?: boolean | undefined;
|
|
13910
13855
|
isUsingPushPull?: boolean | undefined;
|
|
13911
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;
|
|
13912
13860
|
providesPower?: boolean | undefined;
|
|
13913
13861
|
requiresPower?: boolean | undefined;
|
|
13914
13862
|
providesGround?: boolean | undefined;
|
|
@@ -13919,14 +13867,6 @@ declare const componentProps: z.ZodObject<{
|
|
|
13919
13867
|
includeInBoardPinout?: boolean | undefined;
|
|
13920
13868
|
highlightColor?: string | undefined;
|
|
13921
13869
|
mustBeConnected?: boolean | undefined;
|
|
13922
|
-
isI2cSda?: boolean | undefined;
|
|
13923
|
-
isI2cScl?: boolean | undefined;
|
|
13924
|
-
isSpiMosi?: boolean | undefined;
|
|
13925
|
-
isSpiMiso?: boolean | undefined;
|
|
13926
|
-
isSpiSck?: boolean | undefined;
|
|
13927
|
-
isSpiCs?: boolean | undefined;
|
|
13928
|
-
isUartTx?: boolean | undefined;
|
|
13929
|
-
isUartRx?: boolean | undefined;
|
|
13930
13870
|
canUseInternalPullup?: boolean | undefined;
|
|
13931
13871
|
isUsingInternalPullup?: boolean | undefined;
|
|
13932
13872
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -13996,6 +13936,9 @@ declare const componentProps: z.ZodObject<{
|
|
|
13996
13936
|
displayName?: string | undefined;
|
|
13997
13937
|
datasheetUrl?: string | undefined;
|
|
13998
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;
|
|
13999
13942
|
providesPower?: boolean | undefined;
|
|
14000
13943
|
requiresPower?: boolean | undefined;
|
|
14001
13944
|
providesGround?: boolean | undefined;
|
|
@@ -14006,14 +13949,6 @@ declare const componentProps: z.ZodObject<{
|
|
|
14006
13949
|
includeInBoardPinout?: boolean | undefined;
|
|
14007
13950
|
highlightColor?: string | undefined;
|
|
14008
13951
|
mustBeConnected?: boolean | undefined;
|
|
14009
|
-
isI2cSda?: boolean | undefined;
|
|
14010
|
-
isI2cScl?: boolean | undefined;
|
|
14011
|
-
isSpiMosi?: boolean | undefined;
|
|
14012
|
-
isSpiMiso?: boolean | undefined;
|
|
14013
|
-
isSpiSck?: boolean | undefined;
|
|
14014
|
-
isSpiCs?: boolean | undefined;
|
|
14015
|
-
isUartTx?: boolean | undefined;
|
|
14016
|
-
isUartRx?: boolean | undefined;
|
|
14017
13952
|
canUseInternalPullup?: boolean | undefined;
|
|
14018
13953
|
isUsingInternalPullup?: boolean | undefined;
|
|
14019
13954
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -14520,6 +14455,9 @@ declare const componentProps: z.ZodObject<{
|
|
|
14520
14455
|
displayName?: string | undefined;
|
|
14521
14456
|
datasheetUrl?: string | undefined;
|
|
14522
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;
|
|
14523
14461
|
providesPower?: boolean | undefined;
|
|
14524
14462
|
requiresPower?: boolean | undefined;
|
|
14525
14463
|
providesGround?: boolean | undefined;
|
|
@@ -14530,14 +14468,6 @@ declare const componentProps: z.ZodObject<{
|
|
|
14530
14468
|
includeInBoardPinout?: boolean | undefined;
|
|
14531
14469
|
highlightColor?: string | undefined;
|
|
14532
14470
|
mustBeConnected?: boolean | undefined;
|
|
14533
|
-
isI2cSda?: boolean | undefined;
|
|
14534
|
-
isI2cScl?: boolean | undefined;
|
|
14535
|
-
isSpiMosi?: boolean | undefined;
|
|
14536
|
-
isSpiMiso?: boolean | undefined;
|
|
14537
|
-
isSpiSck?: boolean | undefined;
|
|
14538
|
-
isSpiCs?: boolean | undefined;
|
|
14539
|
-
isUartTx?: boolean | undefined;
|
|
14540
|
-
isUartRx?: boolean | undefined;
|
|
14541
14471
|
canUseInternalPullup?: boolean | undefined;
|
|
14542
14472
|
isUsingInternalPullup?: boolean | undefined;
|
|
14543
14473
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -31242,6 +31172,9 @@ declare const chipProps: z.ZodObject<{
|
|
|
31242
31172
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
31243
31173
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
31244
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"]>>;
|
|
31245
31178
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
31246
31179
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
31247
31180
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31252,14 +31185,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
31252
31185
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
31253
31186
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
31254
31187
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
31255
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
31256
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
31257
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
31258
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
31259
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
31260
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
31261
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
31262
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
31263
31188
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
31264
31189
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
31265
31190
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31271,6 +31196,9 @@ declare const chipProps: z.ZodObject<{
|
|
|
31271
31196
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31272
31197
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31273
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;
|
|
31274
31202
|
providesPower?: boolean | undefined;
|
|
31275
31203
|
requiresPower?: boolean | undefined;
|
|
31276
31204
|
providesGround?: boolean | undefined;
|
|
@@ -31281,14 +31209,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
31281
31209
|
includeInBoardPinout?: boolean | undefined;
|
|
31282
31210
|
highlightColor?: string | undefined;
|
|
31283
31211
|
mustBeConnected?: boolean | undefined;
|
|
31284
|
-
isI2cSda?: boolean | undefined;
|
|
31285
|
-
isI2cScl?: boolean | undefined;
|
|
31286
|
-
isSpiMosi?: boolean | undefined;
|
|
31287
|
-
isSpiMiso?: boolean | undefined;
|
|
31288
|
-
isSpiSck?: boolean | undefined;
|
|
31289
|
-
isSpiCs?: boolean | undefined;
|
|
31290
|
-
isUartTx?: boolean | undefined;
|
|
31291
|
-
isUartRx?: boolean | undefined;
|
|
31292
31212
|
canUseInternalPullup?: boolean | undefined;
|
|
31293
31213
|
isUsingInternalPullup?: boolean | undefined;
|
|
31294
31214
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -31300,6 +31220,9 @@ declare const chipProps: z.ZodObject<{
|
|
|
31300
31220
|
canUsePushPull?: boolean | undefined;
|
|
31301
31221
|
isUsingPushPull?: boolean | undefined;
|
|
31302
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;
|
|
31303
31226
|
providesPower?: boolean | undefined;
|
|
31304
31227
|
requiresPower?: boolean | undefined;
|
|
31305
31228
|
providesGround?: boolean | undefined;
|
|
@@ -31310,14 +31233,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
31310
31233
|
includeInBoardPinout?: boolean | undefined;
|
|
31311
31234
|
highlightColor?: string | undefined;
|
|
31312
31235
|
mustBeConnected?: boolean | undefined;
|
|
31313
|
-
isI2cSda?: boolean | undefined;
|
|
31314
|
-
isI2cScl?: boolean | undefined;
|
|
31315
|
-
isSpiMosi?: boolean | undefined;
|
|
31316
|
-
isSpiMiso?: boolean | undefined;
|
|
31317
|
-
isSpiSck?: boolean | undefined;
|
|
31318
|
-
isSpiCs?: boolean | undefined;
|
|
31319
|
-
isUartTx?: boolean | undefined;
|
|
31320
|
-
isUartRx?: boolean | undefined;
|
|
31321
31236
|
canUseInternalPullup?: boolean | undefined;
|
|
31322
31237
|
isUsingInternalPullup?: boolean | undefined;
|
|
31323
31238
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -31684,6 +31599,9 @@ declare const chipProps: z.ZodObject<{
|
|
|
31684
31599
|
displayName?: string | undefined;
|
|
31685
31600
|
datasheetUrl?: string | undefined;
|
|
31686
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;
|
|
31687
31605
|
providesPower?: boolean | undefined;
|
|
31688
31606
|
requiresPower?: boolean | undefined;
|
|
31689
31607
|
providesGround?: boolean | undefined;
|
|
@@ -31694,14 +31612,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
31694
31612
|
includeInBoardPinout?: boolean | undefined;
|
|
31695
31613
|
highlightColor?: string | undefined;
|
|
31696
31614
|
mustBeConnected?: boolean | undefined;
|
|
31697
|
-
isI2cSda?: boolean | undefined;
|
|
31698
|
-
isI2cScl?: boolean | undefined;
|
|
31699
|
-
isSpiMosi?: boolean | undefined;
|
|
31700
|
-
isSpiMiso?: boolean | undefined;
|
|
31701
|
-
isSpiSck?: boolean | undefined;
|
|
31702
|
-
isSpiCs?: boolean | undefined;
|
|
31703
|
-
isUartTx?: boolean | undefined;
|
|
31704
|
-
isUartRx?: boolean | undefined;
|
|
31705
31615
|
canUseInternalPullup?: boolean | undefined;
|
|
31706
31616
|
isUsingInternalPullup?: boolean | undefined;
|
|
31707
31617
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -32284,6 +32194,9 @@ declare const chipProps: z.ZodObject<{
|
|
|
32284
32194
|
displayName?: string | undefined;
|
|
32285
32195
|
datasheetUrl?: string | undefined;
|
|
32286
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;
|
|
32287
32200
|
providesPower?: boolean | undefined;
|
|
32288
32201
|
requiresPower?: boolean | undefined;
|
|
32289
32202
|
providesGround?: boolean | undefined;
|
|
@@ -32294,14 +32207,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
32294
32207
|
includeInBoardPinout?: boolean | undefined;
|
|
32295
32208
|
highlightColor?: string | undefined;
|
|
32296
32209
|
mustBeConnected?: boolean | undefined;
|
|
32297
|
-
isI2cSda?: boolean | undefined;
|
|
32298
|
-
isI2cScl?: boolean | undefined;
|
|
32299
|
-
isSpiMosi?: boolean | undefined;
|
|
32300
|
-
isSpiMiso?: boolean | undefined;
|
|
32301
|
-
isSpiSck?: boolean | undefined;
|
|
32302
|
-
isSpiCs?: boolean | undefined;
|
|
32303
|
-
isUartTx?: boolean | undefined;
|
|
32304
|
-
isUartRx?: boolean | undefined;
|
|
32305
32210
|
canUseInternalPullup?: boolean | undefined;
|
|
32306
32211
|
isUsingInternalPullup?: boolean | undefined;
|
|
32307
32212
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -35880,6 +35785,9 @@ declare const bugProps: z.ZodObject<{
|
|
|
35880
35785
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
35881
35786
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
35882
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"]>>;
|
|
35883
35791
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
35884
35792
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
35885
35793
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -35890,14 +35798,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
35890
35798
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
35891
35799
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
35892
35800
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
35893
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
35894
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
35895
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
35896
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
35897
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
35898
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
35899
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
35900
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
35901
35801
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
35902
35802
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
35903
35803
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -35909,6 +35809,9 @@ declare const bugProps: z.ZodObject<{
|
|
|
35909
35809
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35910
35810
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35911
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;
|
|
35912
35815
|
providesPower?: boolean | undefined;
|
|
35913
35816
|
requiresPower?: boolean | undefined;
|
|
35914
35817
|
providesGround?: boolean | undefined;
|
|
@@ -35919,14 +35822,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
35919
35822
|
includeInBoardPinout?: boolean | undefined;
|
|
35920
35823
|
highlightColor?: string | undefined;
|
|
35921
35824
|
mustBeConnected?: boolean | undefined;
|
|
35922
|
-
isI2cSda?: boolean | undefined;
|
|
35923
|
-
isI2cScl?: boolean | undefined;
|
|
35924
|
-
isSpiMosi?: boolean | undefined;
|
|
35925
|
-
isSpiMiso?: boolean | undefined;
|
|
35926
|
-
isSpiSck?: boolean | undefined;
|
|
35927
|
-
isSpiCs?: boolean | undefined;
|
|
35928
|
-
isUartTx?: boolean | undefined;
|
|
35929
|
-
isUartRx?: boolean | undefined;
|
|
35930
35825
|
canUseInternalPullup?: boolean | undefined;
|
|
35931
35826
|
isUsingInternalPullup?: boolean | undefined;
|
|
35932
35827
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -35938,6 +35833,9 @@ declare const bugProps: z.ZodObject<{
|
|
|
35938
35833
|
canUsePushPull?: boolean | undefined;
|
|
35939
35834
|
isUsingPushPull?: boolean | undefined;
|
|
35940
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;
|
|
35941
35839
|
providesPower?: boolean | undefined;
|
|
35942
35840
|
requiresPower?: boolean | undefined;
|
|
35943
35841
|
providesGround?: boolean | undefined;
|
|
@@ -35948,14 +35846,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
35948
35846
|
includeInBoardPinout?: boolean | undefined;
|
|
35949
35847
|
highlightColor?: string | undefined;
|
|
35950
35848
|
mustBeConnected?: boolean | undefined;
|
|
35951
|
-
isI2cSda?: boolean | undefined;
|
|
35952
|
-
isI2cScl?: boolean | undefined;
|
|
35953
|
-
isSpiMosi?: boolean | undefined;
|
|
35954
|
-
isSpiMiso?: boolean | undefined;
|
|
35955
|
-
isSpiSck?: boolean | undefined;
|
|
35956
|
-
isSpiCs?: boolean | undefined;
|
|
35957
|
-
isUartTx?: boolean | undefined;
|
|
35958
|
-
isUartRx?: boolean | undefined;
|
|
35959
35849
|
canUseInternalPullup?: boolean | undefined;
|
|
35960
35850
|
isUsingInternalPullup?: boolean | undefined;
|
|
35961
35851
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -36322,6 +36212,9 @@ declare const bugProps: z.ZodObject<{
|
|
|
36322
36212
|
displayName?: string | undefined;
|
|
36323
36213
|
datasheetUrl?: string | undefined;
|
|
36324
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;
|
|
36325
36218
|
providesPower?: boolean | undefined;
|
|
36326
36219
|
requiresPower?: boolean | undefined;
|
|
36327
36220
|
providesGround?: boolean | undefined;
|
|
@@ -36332,14 +36225,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
36332
36225
|
includeInBoardPinout?: boolean | undefined;
|
|
36333
36226
|
highlightColor?: string | undefined;
|
|
36334
36227
|
mustBeConnected?: boolean | undefined;
|
|
36335
|
-
isI2cSda?: boolean | undefined;
|
|
36336
|
-
isI2cScl?: boolean | undefined;
|
|
36337
|
-
isSpiMosi?: boolean | undefined;
|
|
36338
|
-
isSpiMiso?: boolean | undefined;
|
|
36339
|
-
isSpiSck?: boolean | undefined;
|
|
36340
|
-
isSpiCs?: boolean | undefined;
|
|
36341
|
-
isUartTx?: boolean | undefined;
|
|
36342
|
-
isUartRx?: boolean | undefined;
|
|
36343
36228
|
canUseInternalPullup?: boolean | undefined;
|
|
36344
36229
|
isUsingInternalPullup?: boolean | undefined;
|
|
36345
36230
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -36922,6 +36807,9 @@ declare const bugProps: z.ZodObject<{
|
|
|
36922
36807
|
displayName?: string | undefined;
|
|
36923
36808
|
datasheetUrl?: string | undefined;
|
|
36924
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;
|
|
36925
36813
|
providesPower?: boolean | undefined;
|
|
36926
36814
|
requiresPower?: boolean | undefined;
|
|
36927
36815
|
providesGround?: boolean | undefined;
|
|
@@ -36932,14 +36820,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
36932
36820
|
includeInBoardPinout?: boolean | undefined;
|
|
36933
36821
|
highlightColor?: string | undefined;
|
|
36934
36822
|
mustBeConnected?: boolean | undefined;
|
|
36935
|
-
isI2cSda?: boolean | undefined;
|
|
36936
|
-
isI2cScl?: boolean | undefined;
|
|
36937
|
-
isSpiMosi?: boolean | undefined;
|
|
36938
|
-
isSpiMiso?: boolean | undefined;
|
|
36939
|
-
isSpiSck?: boolean | undefined;
|
|
36940
|
-
isSpiCs?: boolean | undefined;
|
|
36941
|
-
isUartTx?: boolean | undefined;
|
|
36942
|
-
isUartRx?: boolean | undefined;
|
|
36943
36823
|
canUseInternalPullup?: boolean | undefined;
|
|
36944
36824
|
isUsingInternalPullup?: boolean | undefined;
|
|
36945
36825
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -40517,6 +40397,9 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40517
40397
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
40518
40398
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
40519
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"]>>;
|
|
40520
40403
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
40521
40404
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
40522
40405
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40527,14 +40410,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40527
40410
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
40528
40411
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
40529
40412
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
40530
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
40531
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
40532
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
40533
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
40534
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
40535
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
40536
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
40537
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
40538
40413
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
40539
40414
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
40540
40415
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -40546,6 +40421,9 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40546
40421
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40547
40422
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40548
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;
|
|
40549
40427
|
providesPower?: boolean | undefined;
|
|
40550
40428
|
requiresPower?: boolean | undefined;
|
|
40551
40429
|
providesGround?: boolean | undefined;
|
|
@@ -40556,14 +40434,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40556
40434
|
includeInBoardPinout?: boolean | undefined;
|
|
40557
40435
|
highlightColor?: string | undefined;
|
|
40558
40436
|
mustBeConnected?: boolean | undefined;
|
|
40559
|
-
isI2cSda?: boolean | undefined;
|
|
40560
|
-
isI2cScl?: boolean | undefined;
|
|
40561
|
-
isSpiMosi?: boolean | undefined;
|
|
40562
|
-
isSpiMiso?: boolean | undefined;
|
|
40563
|
-
isSpiSck?: boolean | undefined;
|
|
40564
|
-
isSpiCs?: boolean | undefined;
|
|
40565
|
-
isUartTx?: boolean | undefined;
|
|
40566
|
-
isUartRx?: boolean | undefined;
|
|
40567
40437
|
canUseInternalPullup?: boolean | undefined;
|
|
40568
40438
|
isUsingInternalPullup?: boolean | undefined;
|
|
40569
40439
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -40575,6 +40445,9 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40575
40445
|
canUsePushPull?: boolean | undefined;
|
|
40576
40446
|
isUsingPushPull?: boolean | undefined;
|
|
40577
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;
|
|
40578
40451
|
providesPower?: boolean | undefined;
|
|
40579
40452
|
requiresPower?: boolean | undefined;
|
|
40580
40453
|
providesGround?: boolean | undefined;
|
|
@@ -40585,14 +40458,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40585
40458
|
includeInBoardPinout?: boolean | undefined;
|
|
40586
40459
|
highlightColor?: string | undefined;
|
|
40587
40460
|
mustBeConnected?: boolean | undefined;
|
|
40588
|
-
isI2cSda?: boolean | undefined;
|
|
40589
|
-
isI2cScl?: boolean | undefined;
|
|
40590
|
-
isSpiMosi?: boolean | undefined;
|
|
40591
|
-
isSpiMiso?: boolean | undefined;
|
|
40592
|
-
isSpiSck?: boolean | undefined;
|
|
40593
|
-
isSpiCs?: boolean | undefined;
|
|
40594
|
-
isUartTx?: boolean | undefined;
|
|
40595
|
-
isUartRx?: boolean | undefined;
|
|
40596
40461
|
canUseInternalPullup?: boolean | undefined;
|
|
40597
40462
|
isUsingInternalPullup?: boolean | undefined;
|
|
40598
40463
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -40959,6 +40824,9 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40959
40824
|
displayName?: string | undefined;
|
|
40960
40825
|
datasheetUrl?: string | undefined;
|
|
40961
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;
|
|
40962
40830
|
providesPower?: boolean | undefined;
|
|
40963
40831
|
requiresPower?: boolean | undefined;
|
|
40964
40832
|
providesGround?: boolean | undefined;
|
|
@@ -40969,14 +40837,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40969
40837
|
includeInBoardPinout?: boolean | undefined;
|
|
40970
40838
|
highlightColor?: string | undefined;
|
|
40971
40839
|
mustBeConnected?: boolean | undefined;
|
|
40972
|
-
isI2cSda?: boolean | undefined;
|
|
40973
|
-
isI2cScl?: boolean | undefined;
|
|
40974
|
-
isSpiMosi?: boolean | undefined;
|
|
40975
|
-
isSpiMiso?: boolean | undefined;
|
|
40976
|
-
isSpiSck?: boolean | undefined;
|
|
40977
|
-
isSpiCs?: boolean | undefined;
|
|
40978
|
-
isUartTx?: boolean | undefined;
|
|
40979
|
-
isUartRx?: boolean | undefined;
|
|
40980
40840
|
canUseInternalPullup?: boolean | undefined;
|
|
40981
40841
|
isUsingInternalPullup?: boolean | undefined;
|
|
40982
40842
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -41559,6 +41419,9 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41559
41419
|
displayName?: string | undefined;
|
|
41560
41420
|
datasheetUrl?: string | undefined;
|
|
41561
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;
|
|
41562
41425
|
providesPower?: boolean | undefined;
|
|
41563
41426
|
requiresPower?: boolean | undefined;
|
|
41564
41427
|
providesGround?: boolean | undefined;
|
|
@@ -41569,14 +41432,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41569
41432
|
includeInBoardPinout?: boolean | undefined;
|
|
41570
41433
|
highlightColor?: string | undefined;
|
|
41571
41434
|
mustBeConnected?: boolean | undefined;
|
|
41572
|
-
isI2cSda?: boolean | undefined;
|
|
41573
|
-
isI2cScl?: boolean | undefined;
|
|
41574
|
-
isSpiMosi?: boolean | undefined;
|
|
41575
|
-
isSpiMiso?: boolean | undefined;
|
|
41576
|
-
isSpiSck?: boolean | undefined;
|
|
41577
|
-
isSpiCs?: boolean | undefined;
|
|
41578
|
-
isUartTx?: boolean | undefined;
|
|
41579
|
-
isUartRx?: boolean | undefined;
|
|
41580
41435
|
canUseInternalPullup?: boolean | undefined;
|
|
41581
41436
|
isUsingInternalPullup?: boolean | undefined;
|
|
41582
41437
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -45186,6 +45041,9 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45186
45041
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
45187
45042
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
45188
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"]>>;
|
|
45189
45047
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
45190
45048
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
45191
45049
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -45196,14 +45054,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45196
45054
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
45197
45055
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
45198
45056
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
45199
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
45200
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
45201
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
45202
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
45203
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
45204
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
45205
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
45206
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
45207
45057
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
45208
45058
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
45209
45059
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -45215,6 +45065,9 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45215
45065
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45216
45066
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45217
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;
|
|
45218
45071
|
providesPower?: boolean | undefined;
|
|
45219
45072
|
requiresPower?: boolean | undefined;
|
|
45220
45073
|
providesGround?: boolean | undefined;
|
|
@@ -45225,14 +45078,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45225
45078
|
includeInBoardPinout?: boolean | undefined;
|
|
45226
45079
|
highlightColor?: string | undefined;
|
|
45227
45080
|
mustBeConnected?: boolean | undefined;
|
|
45228
|
-
isI2cSda?: boolean | undefined;
|
|
45229
|
-
isI2cScl?: boolean | undefined;
|
|
45230
|
-
isSpiMosi?: boolean | undefined;
|
|
45231
|
-
isSpiMiso?: boolean | undefined;
|
|
45232
|
-
isSpiSck?: boolean | undefined;
|
|
45233
|
-
isSpiCs?: boolean | undefined;
|
|
45234
|
-
isUartTx?: boolean | undefined;
|
|
45235
|
-
isUartRx?: boolean | undefined;
|
|
45236
45081
|
canUseInternalPullup?: boolean | undefined;
|
|
45237
45082
|
isUsingInternalPullup?: boolean | undefined;
|
|
45238
45083
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -45244,6 +45089,9 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45244
45089
|
canUsePushPull?: boolean | undefined;
|
|
45245
45090
|
isUsingPushPull?: boolean | undefined;
|
|
45246
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;
|
|
45247
45095
|
providesPower?: boolean | undefined;
|
|
45248
45096
|
requiresPower?: boolean | undefined;
|
|
45249
45097
|
providesGround?: boolean | undefined;
|
|
@@ -45254,14 +45102,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45254
45102
|
includeInBoardPinout?: boolean | undefined;
|
|
45255
45103
|
highlightColor?: string | undefined;
|
|
45256
45104
|
mustBeConnected?: boolean | undefined;
|
|
45257
|
-
isI2cSda?: boolean | undefined;
|
|
45258
|
-
isI2cScl?: boolean | undefined;
|
|
45259
|
-
isSpiMosi?: boolean | undefined;
|
|
45260
|
-
isSpiMiso?: boolean | undefined;
|
|
45261
|
-
isSpiSck?: boolean | undefined;
|
|
45262
|
-
isSpiCs?: boolean | undefined;
|
|
45263
|
-
isUartTx?: boolean | undefined;
|
|
45264
|
-
isUartRx?: boolean | undefined;
|
|
45265
45105
|
canUseInternalPullup?: boolean | undefined;
|
|
45266
45106
|
isUsingInternalPullup?: boolean | undefined;
|
|
45267
45107
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -45617,6 +45457,9 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45617
45457
|
displayName?: string | undefined;
|
|
45618
45458
|
datasheetUrl?: string | undefined;
|
|
45619
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;
|
|
45620
45463
|
providesPower?: boolean | undefined;
|
|
45621
45464
|
requiresPower?: boolean | undefined;
|
|
45622
45465
|
providesGround?: boolean | undefined;
|
|
@@ -45627,14 +45470,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45627
45470
|
includeInBoardPinout?: boolean | undefined;
|
|
45628
45471
|
highlightColor?: string | undefined;
|
|
45629
45472
|
mustBeConnected?: boolean | undefined;
|
|
45630
|
-
isI2cSda?: boolean | undefined;
|
|
45631
|
-
isI2cScl?: boolean | undefined;
|
|
45632
|
-
isSpiMosi?: boolean | undefined;
|
|
45633
|
-
isSpiMiso?: boolean | undefined;
|
|
45634
|
-
isSpiSck?: boolean | undefined;
|
|
45635
|
-
isSpiCs?: boolean | undefined;
|
|
45636
|
-
isUartTx?: boolean | undefined;
|
|
45637
|
-
isUartRx?: boolean | undefined;
|
|
45638
45473
|
canUseInternalPullup?: boolean | undefined;
|
|
45639
45474
|
isUsingInternalPullup?: boolean | undefined;
|
|
45640
45475
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -46212,6 +46047,9 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46212
46047
|
displayName?: string | undefined;
|
|
46213
46048
|
datasheetUrl?: string | undefined;
|
|
46214
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;
|
|
46215
46053
|
providesPower?: boolean | undefined;
|
|
46216
46054
|
requiresPower?: boolean | undefined;
|
|
46217
46055
|
providesGround?: boolean | undefined;
|
|
@@ -46222,14 +46060,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46222
46060
|
includeInBoardPinout?: boolean | undefined;
|
|
46223
46061
|
highlightColor?: string | undefined;
|
|
46224
46062
|
mustBeConnected?: boolean | undefined;
|
|
46225
|
-
isI2cSda?: boolean | undefined;
|
|
46226
|
-
isI2cScl?: boolean | undefined;
|
|
46227
|
-
isSpiMosi?: boolean | undefined;
|
|
46228
|
-
isSpiMiso?: boolean | undefined;
|
|
46229
|
-
isSpiSck?: boolean | undefined;
|
|
46230
|
-
isSpiCs?: boolean | undefined;
|
|
46231
|
-
isUartTx?: boolean | undefined;
|
|
46232
|
-
isUartRx?: boolean | undefined;
|
|
46233
46063
|
canUseInternalPullup?: boolean | undefined;
|
|
46234
46064
|
isUsingInternalPullup?: boolean | undefined;
|
|
46235
46065
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -49811,6 +49641,9 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49811
49641
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
49812
49642
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
49813
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"]>>;
|
|
49814
49647
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
49815
49648
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
49816
49649
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -49821,14 +49654,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49821
49654
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
49822
49655
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
49823
49656
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
49824
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
49825
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
49826
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
49827
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
49828
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
49829
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
49830
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
49831
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
49832
49657
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
49833
49658
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
49834
49659
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -49840,6 +49665,9 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49840
49665
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49841
49666
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49842
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;
|
|
49843
49671
|
providesPower?: boolean | undefined;
|
|
49844
49672
|
requiresPower?: boolean | undefined;
|
|
49845
49673
|
providesGround?: boolean | undefined;
|
|
@@ -49850,14 +49678,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49850
49678
|
includeInBoardPinout?: boolean | undefined;
|
|
49851
49679
|
highlightColor?: string | undefined;
|
|
49852
49680
|
mustBeConnected?: boolean | undefined;
|
|
49853
|
-
isI2cSda?: boolean | undefined;
|
|
49854
|
-
isI2cScl?: boolean | undefined;
|
|
49855
|
-
isSpiMosi?: boolean | undefined;
|
|
49856
|
-
isSpiMiso?: boolean | undefined;
|
|
49857
|
-
isSpiSck?: boolean | undefined;
|
|
49858
|
-
isSpiCs?: boolean | undefined;
|
|
49859
|
-
isUartTx?: boolean | undefined;
|
|
49860
|
-
isUartRx?: boolean | undefined;
|
|
49861
49681
|
canUseInternalPullup?: boolean | undefined;
|
|
49862
49682
|
isUsingInternalPullup?: boolean | undefined;
|
|
49863
49683
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -49869,6 +49689,9 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49869
49689
|
canUsePushPull?: boolean | undefined;
|
|
49870
49690
|
isUsingPushPull?: boolean | undefined;
|
|
49871
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;
|
|
49872
49695
|
providesPower?: boolean | undefined;
|
|
49873
49696
|
requiresPower?: boolean | undefined;
|
|
49874
49697
|
providesGround?: boolean | undefined;
|
|
@@ -49879,14 +49702,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49879
49702
|
includeInBoardPinout?: boolean | undefined;
|
|
49880
49703
|
highlightColor?: string | undefined;
|
|
49881
49704
|
mustBeConnected?: boolean | undefined;
|
|
49882
|
-
isI2cSda?: boolean | undefined;
|
|
49883
|
-
isI2cScl?: boolean | undefined;
|
|
49884
|
-
isSpiMosi?: boolean | undefined;
|
|
49885
|
-
isSpiMiso?: boolean | undefined;
|
|
49886
|
-
isSpiSck?: boolean | undefined;
|
|
49887
|
-
isSpiCs?: boolean | undefined;
|
|
49888
|
-
isUartTx?: boolean | undefined;
|
|
49889
|
-
isUartRx?: boolean | undefined;
|
|
49890
49705
|
canUseInternalPullup?: boolean | undefined;
|
|
49891
49706
|
isUsingInternalPullup?: boolean | undefined;
|
|
49892
49707
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -50245,6 +50060,9 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50245
50060
|
displayName?: string | undefined;
|
|
50246
50061
|
datasheetUrl?: string | undefined;
|
|
50247
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;
|
|
50248
50066
|
providesPower?: boolean | undefined;
|
|
50249
50067
|
requiresPower?: boolean | undefined;
|
|
50250
50068
|
providesGround?: boolean | undefined;
|
|
@@ -50255,14 +50073,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50255
50073
|
includeInBoardPinout?: boolean | undefined;
|
|
50256
50074
|
highlightColor?: string | undefined;
|
|
50257
50075
|
mustBeConnected?: boolean | undefined;
|
|
50258
|
-
isI2cSda?: boolean | undefined;
|
|
50259
|
-
isI2cScl?: boolean | undefined;
|
|
50260
|
-
isSpiMosi?: boolean | undefined;
|
|
50261
|
-
isSpiMiso?: boolean | undefined;
|
|
50262
|
-
isSpiSck?: boolean | undefined;
|
|
50263
|
-
isSpiCs?: boolean | undefined;
|
|
50264
|
-
isUartTx?: boolean | undefined;
|
|
50265
|
-
isUartRx?: boolean | undefined;
|
|
50266
50076
|
canUseInternalPullup?: boolean | undefined;
|
|
50267
50077
|
isUsingInternalPullup?: boolean | undefined;
|
|
50268
50078
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -50842,6 +50652,9 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50842
50652
|
displayName?: string | undefined;
|
|
50843
50653
|
datasheetUrl?: string | undefined;
|
|
50844
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;
|
|
50845
50658
|
providesPower?: boolean | undefined;
|
|
50846
50659
|
requiresPower?: boolean | undefined;
|
|
50847
50660
|
providesGround?: boolean | undefined;
|
|
@@ -50852,14 +50665,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50852
50665
|
includeInBoardPinout?: boolean | undefined;
|
|
50853
50666
|
highlightColor?: string | undefined;
|
|
50854
50667
|
mustBeConnected?: boolean | undefined;
|
|
50855
|
-
isI2cSda?: boolean | undefined;
|
|
50856
|
-
isI2cScl?: boolean | undefined;
|
|
50857
|
-
isSpiMosi?: boolean | undefined;
|
|
50858
|
-
isSpiMiso?: boolean | undefined;
|
|
50859
|
-
isSpiSck?: boolean | undefined;
|
|
50860
|
-
isSpiCs?: boolean | undefined;
|
|
50861
|
-
isUartTx?: boolean | undefined;
|
|
50862
|
-
isUartRx?: boolean | undefined;
|
|
50863
50668
|
canUseInternalPullup?: boolean | undefined;
|
|
50864
50669
|
isUsingInternalPullup?: boolean | undefined;
|
|
50865
50670
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -54452,6 +54257,9 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54452
54257
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
54453
54258
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
54454
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"]>>;
|
|
54455
54263
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
54456
54264
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
54457
54265
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -54462,14 +54270,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54462
54270
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
54463
54271
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
54464
54272
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
54465
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
54466
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
54467
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
54468
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
54469
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
54470
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
54471
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
54472
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
54473
54273
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
54474
54274
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
54475
54275
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -54481,6 +54281,9 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54481
54281
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54482
54282
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54483
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;
|
|
54484
54287
|
providesPower?: boolean | undefined;
|
|
54485
54288
|
requiresPower?: boolean | undefined;
|
|
54486
54289
|
providesGround?: boolean | undefined;
|
|
@@ -54491,14 +54294,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54491
54294
|
includeInBoardPinout?: boolean | undefined;
|
|
54492
54295
|
highlightColor?: string | undefined;
|
|
54493
54296
|
mustBeConnected?: boolean | undefined;
|
|
54494
|
-
isI2cSda?: boolean | undefined;
|
|
54495
|
-
isI2cScl?: boolean | undefined;
|
|
54496
|
-
isSpiMosi?: boolean | undefined;
|
|
54497
|
-
isSpiMiso?: boolean | undefined;
|
|
54498
|
-
isSpiSck?: boolean | undefined;
|
|
54499
|
-
isSpiCs?: boolean | undefined;
|
|
54500
|
-
isUartTx?: boolean | undefined;
|
|
54501
|
-
isUartRx?: boolean | undefined;
|
|
54502
54297
|
canUseInternalPullup?: boolean | undefined;
|
|
54503
54298
|
isUsingInternalPullup?: boolean | undefined;
|
|
54504
54299
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -54510,6 +54305,9 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54510
54305
|
canUsePushPull?: boolean | undefined;
|
|
54511
54306
|
isUsingPushPull?: boolean | undefined;
|
|
54512
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;
|
|
54513
54311
|
providesPower?: boolean | undefined;
|
|
54514
54312
|
requiresPower?: boolean | undefined;
|
|
54515
54313
|
providesGround?: boolean | undefined;
|
|
@@ -54520,14 +54318,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54520
54318
|
includeInBoardPinout?: boolean | undefined;
|
|
54521
54319
|
highlightColor?: string | undefined;
|
|
54522
54320
|
mustBeConnected?: boolean | undefined;
|
|
54523
|
-
isI2cSda?: boolean | undefined;
|
|
54524
|
-
isI2cScl?: boolean | undefined;
|
|
54525
|
-
isSpiMosi?: boolean | undefined;
|
|
54526
|
-
isSpiMiso?: boolean | undefined;
|
|
54527
|
-
isSpiSck?: boolean | undefined;
|
|
54528
|
-
isSpiCs?: boolean | undefined;
|
|
54529
|
-
isUartTx?: boolean | undefined;
|
|
54530
|
-
isUartRx?: boolean | undefined;
|
|
54531
54321
|
canUseInternalPullup?: boolean | undefined;
|
|
54532
54322
|
isUsingInternalPullup?: boolean | undefined;
|
|
54533
54323
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -54757,6 +54547,9 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54757
54547
|
displayName?: string | undefined;
|
|
54758
54548
|
datasheetUrl?: string | undefined;
|
|
54759
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;
|
|
54760
54553
|
providesPower?: boolean | undefined;
|
|
54761
54554
|
requiresPower?: boolean | undefined;
|
|
54762
54555
|
providesGround?: boolean | undefined;
|
|
@@ -54767,14 +54560,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54767
54560
|
includeInBoardPinout?: boolean | undefined;
|
|
54768
54561
|
highlightColor?: string | undefined;
|
|
54769
54562
|
mustBeConnected?: boolean | undefined;
|
|
54770
|
-
isI2cSda?: boolean | undefined;
|
|
54771
|
-
isI2cScl?: boolean | undefined;
|
|
54772
|
-
isSpiMosi?: boolean | undefined;
|
|
54773
|
-
isSpiMiso?: boolean | undefined;
|
|
54774
|
-
isSpiSck?: boolean | undefined;
|
|
54775
|
-
isSpiCs?: boolean | undefined;
|
|
54776
|
-
isUartTx?: boolean | undefined;
|
|
54777
|
-
isUartRx?: boolean | undefined;
|
|
54778
54563
|
canUseInternalPullup?: boolean | undefined;
|
|
54779
54564
|
isUsingInternalPullup?: boolean | undefined;
|
|
54780
54565
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -55324,6 +55109,9 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55324
55109
|
displayName?: string | undefined;
|
|
55325
55110
|
datasheetUrl?: string | undefined;
|
|
55326
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;
|
|
55327
55115
|
providesPower?: boolean | undefined;
|
|
55328
55116
|
requiresPower?: boolean | undefined;
|
|
55329
55117
|
providesGround?: boolean | undefined;
|
|
@@ -55334,14 +55122,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55334
55122
|
includeInBoardPinout?: boolean | undefined;
|
|
55335
55123
|
highlightColor?: string | undefined;
|
|
55336
55124
|
mustBeConnected?: boolean | undefined;
|
|
55337
|
-
isI2cSda?: boolean | undefined;
|
|
55338
|
-
isI2cScl?: boolean | undefined;
|
|
55339
|
-
isSpiMosi?: boolean | undefined;
|
|
55340
|
-
isSpiMiso?: boolean | undefined;
|
|
55341
|
-
isSpiSck?: boolean | undefined;
|
|
55342
|
-
isSpiCs?: boolean | undefined;
|
|
55343
|
-
isUartTx?: boolean | undefined;
|
|
55344
|
-
isUartRx?: boolean | undefined;
|
|
55345
55125
|
canUseInternalPullup?: boolean | undefined;
|
|
55346
55126
|
isUsingInternalPullup?: boolean | undefined;
|
|
55347
55127
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -58896,6 +58676,9 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58896
58676
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
58897
58677
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
58898
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"]>>;
|
|
58899
58682
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
58900
58683
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
58901
58684
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -58906,14 +58689,6 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58906
58689
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
58907
58690
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
58908
58691
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
58909
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
58910
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
58911
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
58912
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
58913
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
58914
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
58915
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
58916
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
58917
58692
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
58918
58693
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
58919
58694
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -58925,6 +58700,9 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58925
58700
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58926
58701
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58927
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;
|
|
58928
58706
|
providesPower?: boolean | undefined;
|
|
58929
58707
|
requiresPower?: boolean | undefined;
|
|
58930
58708
|
providesGround?: boolean | undefined;
|
|
@@ -58935,14 +58713,6 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58935
58713
|
includeInBoardPinout?: boolean | undefined;
|
|
58936
58714
|
highlightColor?: string | undefined;
|
|
58937
58715
|
mustBeConnected?: boolean | undefined;
|
|
58938
|
-
isI2cSda?: boolean | undefined;
|
|
58939
|
-
isI2cScl?: boolean | undefined;
|
|
58940
|
-
isSpiMosi?: boolean | undefined;
|
|
58941
|
-
isSpiMiso?: boolean | undefined;
|
|
58942
|
-
isSpiSck?: boolean | undefined;
|
|
58943
|
-
isSpiCs?: boolean | undefined;
|
|
58944
|
-
isUartTx?: boolean | undefined;
|
|
58945
|
-
isUartRx?: boolean | undefined;
|
|
58946
58716
|
canUseInternalPullup?: boolean | undefined;
|
|
58947
58717
|
isUsingInternalPullup?: boolean | undefined;
|
|
58948
58718
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -58954,6 +58724,9 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58954
58724
|
canUsePushPull?: boolean | undefined;
|
|
58955
58725
|
isUsingPushPull?: boolean | undefined;
|
|
58956
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;
|
|
58957
58730
|
providesPower?: boolean | undefined;
|
|
58958
58731
|
requiresPower?: boolean | undefined;
|
|
58959
58732
|
providesGround?: boolean | undefined;
|
|
@@ -58964,14 +58737,6 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58964
58737
|
includeInBoardPinout?: boolean | undefined;
|
|
58965
58738
|
highlightColor?: string | undefined;
|
|
58966
58739
|
mustBeConnected?: boolean | undefined;
|
|
58967
|
-
isI2cSda?: boolean | undefined;
|
|
58968
|
-
isI2cScl?: boolean | undefined;
|
|
58969
|
-
isSpiMosi?: boolean | undefined;
|
|
58970
|
-
isSpiMiso?: boolean | undefined;
|
|
58971
|
-
isSpiSck?: boolean | undefined;
|
|
58972
|
-
isSpiCs?: boolean | undefined;
|
|
58973
|
-
isUartTx?: boolean | undefined;
|
|
58974
|
-
isUartRx?: boolean | undefined;
|
|
58975
58740
|
canUseInternalPullup?: boolean | undefined;
|
|
58976
58741
|
isUsingInternalPullup?: boolean | undefined;
|
|
58977
58742
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -59045,6 +58810,9 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59045
58810
|
displayName?: string | undefined;
|
|
59046
58811
|
datasheetUrl?: string | undefined;
|
|
59047
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;
|
|
59048
58816
|
providesPower?: boolean | undefined;
|
|
59049
58817
|
requiresPower?: boolean | undefined;
|
|
59050
58818
|
providesGround?: boolean | undefined;
|
|
@@ -59055,14 +58823,6 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59055
58823
|
includeInBoardPinout?: boolean | undefined;
|
|
59056
58824
|
highlightColor?: string | undefined;
|
|
59057
58825
|
mustBeConnected?: boolean | undefined;
|
|
59058
|
-
isI2cSda?: boolean | undefined;
|
|
59059
|
-
isI2cScl?: boolean | undefined;
|
|
59060
|
-
isSpiMosi?: boolean | undefined;
|
|
59061
|
-
isSpiMiso?: boolean | undefined;
|
|
59062
|
-
isSpiSck?: boolean | undefined;
|
|
59063
|
-
isSpiCs?: boolean | undefined;
|
|
59064
|
-
isUartTx?: boolean | undefined;
|
|
59065
|
-
isUartRx?: boolean | undefined;
|
|
59066
58826
|
canUseInternalPullup?: boolean | undefined;
|
|
59067
58827
|
isUsingInternalPullup?: boolean | undefined;
|
|
59068
58828
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -59572,6 +59332,9 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59572
59332
|
displayName?: string | undefined;
|
|
59573
59333
|
datasheetUrl?: string | undefined;
|
|
59574
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;
|
|
59575
59338
|
providesPower?: boolean | undefined;
|
|
59576
59339
|
requiresPower?: boolean | undefined;
|
|
59577
59340
|
providesGround?: boolean | undefined;
|
|
@@ -59582,14 +59345,6 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59582
59345
|
includeInBoardPinout?: boolean | undefined;
|
|
59583
59346
|
highlightColor?: string | undefined;
|
|
59584
59347
|
mustBeConnected?: boolean | undefined;
|
|
59585
|
-
isI2cSda?: boolean | undefined;
|
|
59586
|
-
isI2cScl?: boolean | undefined;
|
|
59587
|
-
isSpiMosi?: boolean | undefined;
|
|
59588
|
-
isSpiMiso?: boolean | undefined;
|
|
59589
|
-
isSpiSck?: boolean | undefined;
|
|
59590
|
-
isSpiCs?: boolean | undefined;
|
|
59591
|
-
isUartTx?: boolean | undefined;
|
|
59592
|
-
isUartRx?: boolean | undefined;
|
|
59593
59348
|
canUseInternalPullup?: boolean | undefined;
|
|
59594
59349
|
isUsingInternalPullup?: boolean | undefined;
|
|
59595
59350
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -63122,6 +62877,9 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63122
62877
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
63123
62878
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
63124
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"]>>;
|
|
63125
62883
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
63126
62884
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
63127
62885
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -63132,14 +62890,6 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63132
62890
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
63133
62891
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
63134
62892
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
63135
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
63136
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
63137
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
63138
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
63139
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
63140
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
63141
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
63142
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
63143
62893
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
63144
62894
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
63145
62895
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -63151,6 +62901,9 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63151
62901
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
63152
62902
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
63153
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;
|
|
63154
62907
|
providesPower?: boolean | undefined;
|
|
63155
62908
|
requiresPower?: boolean | undefined;
|
|
63156
62909
|
providesGround?: boolean | undefined;
|
|
@@ -63161,14 +62914,6 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63161
62914
|
includeInBoardPinout?: boolean | undefined;
|
|
63162
62915
|
highlightColor?: string | undefined;
|
|
63163
62916
|
mustBeConnected?: boolean | undefined;
|
|
63164
|
-
isI2cSda?: boolean | undefined;
|
|
63165
|
-
isI2cScl?: boolean | undefined;
|
|
63166
|
-
isSpiMosi?: boolean | undefined;
|
|
63167
|
-
isSpiMiso?: boolean | undefined;
|
|
63168
|
-
isSpiSck?: boolean | undefined;
|
|
63169
|
-
isSpiCs?: boolean | undefined;
|
|
63170
|
-
isUartTx?: boolean | undefined;
|
|
63171
|
-
isUartRx?: boolean | undefined;
|
|
63172
62917
|
canUseInternalPullup?: boolean | undefined;
|
|
63173
62918
|
isUsingInternalPullup?: boolean | undefined;
|
|
63174
62919
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -63180,6 +62925,9 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63180
62925
|
canUsePushPull?: boolean | undefined;
|
|
63181
62926
|
isUsingPushPull?: boolean | undefined;
|
|
63182
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;
|
|
63183
62931
|
providesPower?: boolean | undefined;
|
|
63184
62932
|
requiresPower?: boolean | undefined;
|
|
63185
62933
|
providesGround?: boolean | undefined;
|
|
@@ -63190,14 +62938,6 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63190
62938
|
includeInBoardPinout?: boolean | undefined;
|
|
63191
62939
|
highlightColor?: string | undefined;
|
|
63192
62940
|
mustBeConnected?: boolean | undefined;
|
|
63193
|
-
isI2cSda?: boolean | undefined;
|
|
63194
|
-
isI2cScl?: boolean | undefined;
|
|
63195
|
-
isSpiMosi?: boolean | undefined;
|
|
63196
|
-
isSpiMiso?: boolean | undefined;
|
|
63197
|
-
isSpiSck?: boolean | undefined;
|
|
63198
|
-
isSpiCs?: boolean | undefined;
|
|
63199
|
-
isUartTx?: boolean | undefined;
|
|
63200
|
-
isUartRx?: boolean | undefined;
|
|
63201
62941
|
canUseInternalPullup?: boolean | undefined;
|
|
63202
62942
|
isUsingInternalPullup?: boolean | undefined;
|
|
63203
62943
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -63274,6 +63014,9 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63274
63014
|
displayName?: string | undefined;
|
|
63275
63015
|
datasheetUrl?: string | undefined;
|
|
63276
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;
|
|
63277
63020
|
providesPower?: boolean | undefined;
|
|
63278
63021
|
requiresPower?: boolean | undefined;
|
|
63279
63022
|
providesGround?: boolean | undefined;
|
|
@@ -63284,14 +63027,6 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63284
63027
|
includeInBoardPinout?: boolean | undefined;
|
|
63285
63028
|
highlightColor?: string | undefined;
|
|
63286
63029
|
mustBeConnected?: boolean | undefined;
|
|
63287
|
-
isI2cSda?: boolean | undefined;
|
|
63288
|
-
isI2cScl?: boolean | undefined;
|
|
63289
|
-
isSpiMosi?: boolean | undefined;
|
|
63290
|
-
isSpiMiso?: boolean | undefined;
|
|
63291
|
-
isSpiSck?: boolean | undefined;
|
|
63292
|
-
isSpiCs?: boolean | undefined;
|
|
63293
|
-
isUartTx?: boolean | undefined;
|
|
63294
|
-
isUartRx?: boolean | undefined;
|
|
63295
63030
|
canUseInternalPullup?: boolean | undefined;
|
|
63296
63031
|
isUsingInternalPullup?: boolean | undefined;
|
|
63297
63032
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -63803,6 +63538,9 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63803
63538
|
displayName?: string | undefined;
|
|
63804
63539
|
datasheetUrl?: string | undefined;
|
|
63805
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;
|
|
63806
63544
|
providesPower?: boolean | undefined;
|
|
63807
63545
|
requiresPower?: boolean | undefined;
|
|
63808
63546
|
providesGround?: boolean | undefined;
|
|
@@ -63813,14 +63551,6 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63813
63551
|
includeInBoardPinout?: boolean | undefined;
|
|
63814
63552
|
highlightColor?: string | undefined;
|
|
63815
63553
|
mustBeConnected?: boolean | undefined;
|
|
63816
|
-
isI2cSda?: boolean | undefined;
|
|
63817
|
-
isI2cScl?: boolean | undefined;
|
|
63818
|
-
isSpiMosi?: boolean | undefined;
|
|
63819
|
-
isSpiMiso?: boolean | undefined;
|
|
63820
|
-
isSpiSck?: boolean | undefined;
|
|
63821
|
-
isSpiCs?: boolean | undefined;
|
|
63822
|
-
isUartTx?: boolean | undefined;
|
|
63823
|
-
isUartRx?: boolean | undefined;
|
|
63824
63554
|
canUseInternalPullup?: boolean | undefined;
|
|
63825
63555
|
isUsingInternalPullup?: boolean | undefined;
|
|
63826
63556
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -68969,6 +68699,9 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68969
68699
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
68970
68700
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
68971
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"]>>;
|
|
68972
68705
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
68973
68706
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
68974
68707
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -68979,14 +68712,6 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68979
68712
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
68980
68713
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
68981
68714
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
68982
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
68983
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
68984
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
68985
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
68986
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
68987
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
68988
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
68989
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
68990
68715
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
68991
68716
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
68992
68717
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -68998,6 +68723,9 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68998
68723
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68999
68724
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
69000
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;
|
|
69001
68729
|
providesPower?: boolean | undefined;
|
|
69002
68730
|
requiresPower?: boolean | undefined;
|
|
69003
68731
|
providesGround?: boolean | undefined;
|
|
@@ -69008,14 +68736,6 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69008
68736
|
includeInBoardPinout?: boolean | undefined;
|
|
69009
68737
|
highlightColor?: string | undefined;
|
|
69010
68738
|
mustBeConnected?: boolean | undefined;
|
|
69011
|
-
isI2cSda?: boolean | undefined;
|
|
69012
|
-
isI2cScl?: boolean | undefined;
|
|
69013
|
-
isSpiMosi?: boolean | undefined;
|
|
69014
|
-
isSpiMiso?: boolean | undefined;
|
|
69015
|
-
isSpiSck?: boolean | undefined;
|
|
69016
|
-
isSpiCs?: boolean | undefined;
|
|
69017
|
-
isUartTx?: boolean | undefined;
|
|
69018
|
-
isUartRx?: boolean | undefined;
|
|
69019
68739
|
canUseInternalPullup?: boolean | undefined;
|
|
69020
68740
|
isUsingInternalPullup?: boolean | undefined;
|
|
69021
68741
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -69027,6 +68747,9 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69027
68747
|
canUsePushPull?: boolean | undefined;
|
|
69028
68748
|
isUsingPushPull?: boolean | undefined;
|
|
69029
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;
|
|
69030
68753
|
providesPower?: boolean | undefined;
|
|
69031
68754
|
requiresPower?: boolean | undefined;
|
|
69032
68755
|
providesGround?: boolean | undefined;
|
|
@@ -69037,14 +68760,6 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69037
68760
|
includeInBoardPinout?: boolean | undefined;
|
|
69038
68761
|
highlightColor?: string | undefined;
|
|
69039
68762
|
mustBeConnected?: boolean | undefined;
|
|
69040
|
-
isI2cSda?: boolean | undefined;
|
|
69041
|
-
isI2cScl?: boolean | undefined;
|
|
69042
|
-
isSpiMosi?: boolean | undefined;
|
|
69043
|
-
isSpiMiso?: boolean | undefined;
|
|
69044
|
-
isSpiSck?: boolean | undefined;
|
|
69045
|
-
isSpiCs?: boolean | undefined;
|
|
69046
|
-
isUartTx?: boolean | undefined;
|
|
69047
|
-
isUartRx?: boolean | undefined;
|
|
69048
68763
|
canUseInternalPullup?: boolean | undefined;
|
|
69049
68764
|
isUsingInternalPullup?: boolean | undefined;
|
|
69050
68765
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -69125,6 +68840,9 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69125
68840
|
displayName?: string | undefined;
|
|
69126
68841
|
datasheetUrl?: string | undefined;
|
|
69127
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;
|
|
69128
68846
|
providesPower?: boolean | undefined;
|
|
69129
68847
|
requiresPower?: boolean | undefined;
|
|
69130
68848
|
providesGround?: boolean | undefined;
|
|
@@ -69135,14 +68853,6 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69135
68853
|
includeInBoardPinout?: boolean | undefined;
|
|
69136
68854
|
highlightColor?: string | undefined;
|
|
69137
68855
|
mustBeConnected?: boolean | undefined;
|
|
69138
|
-
isI2cSda?: boolean | undefined;
|
|
69139
|
-
isI2cScl?: boolean | undefined;
|
|
69140
|
-
isSpiMosi?: boolean | undefined;
|
|
69141
|
-
isSpiMiso?: boolean | undefined;
|
|
69142
|
-
isSpiSck?: boolean | undefined;
|
|
69143
|
-
isSpiCs?: boolean | undefined;
|
|
69144
|
-
isUartTx?: boolean | undefined;
|
|
69145
|
-
isUartRx?: boolean | undefined;
|
|
69146
68856
|
canUseInternalPullup?: boolean | undefined;
|
|
69147
68857
|
isUsingInternalPullup?: boolean | undefined;
|
|
69148
68858
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -69658,6 +69368,9 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69658
69368
|
displayName?: string | undefined;
|
|
69659
69369
|
datasheetUrl?: string | undefined;
|
|
69660
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;
|
|
69661
69374
|
providesPower?: boolean | undefined;
|
|
69662
69375
|
requiresPower?: boolean | undefined;
|
|
69663
69376
|
providesGround?: boolean | undefined;
|
|
@@ -69668,14 +69381,6 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69668
69381
|
includeInBoardPinout?: boolean | undefined;
|
|
69669
69382
|
highlightColor?: string | undefined;
|
|
69670
69383
|
mustBeConnected?: boolean | undefined;
|
|
69671
|
-
isI2cSda?: boolean | undefined;
|
|
69672
|
-
isI2cScl?: boolean | undefined;
|
|
69673
|
-
isSpiMosi?: boolean | undefined;
|
|
69674
|
-
isSpiMiso?: boolean | undefined;
|
|
69675
|
-
isSpiSck?: boolean | undefined;
|
|
69676
|
-
isSpiCs?: boolean | undefined;
|
|
69677
|
-
isUartTx?: boolean | undefined;
|
|
69678
|
-
isUartRx?: boolean | undefined;
|
|
69679
69384
|
canUseInternalPullup?: boolean | undefined;
|
|
69680
69385
|
isUsingInternalPullup?: boolean | undefined;
|
|
69681
69386
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -73195,6 +72900,9 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73195
72900
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
73196
72901
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
73197
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"]>>;
|
|
73198
72906
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
73199
72907
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
73200
72908
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -73205,14 +72913,6 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73205
72913
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
73206
72914
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
73207
72915
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
73208
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
73209
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
73210
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
73211
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
73212
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
73213
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
73214
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
73215
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
73216
72916
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
73217
72917
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
73218
72918
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -73224,6 +72924,9 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73224
72924
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73225
72925
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73226
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;
|
|
73227
72930
|
providesPower?: boolean | undefined;
|
|
73228
72931
|
requiresPower?: boolean | undefined;
|
|
73229
72932
|
providesGround?: boolean | undefined;
|
|
@@ -73234,14 +72937,6 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73234
72937
|
includeInBoardPinout?: boolean | undefined;
|
|
73235
72938
|
highlightColor?: string | undefined;
|
|
73236
72939
|
mustBeConnected?: boolean | undefined;
|
|
73237
|
-
isI2cSda?: boolean | undefined;
|
|
73238
|
-
isI2cScl?: boolean | undefined;
|
|
73239
|
-
isSpiMosi?: boolean | undefined;
|
|
73240
|
-
isSpiMiso?: boolean | undefined;
|
|
73241
|
-
isSpiSck?: boolean | undefined;
|
|
73242
|
-
isSpiCs?: boolean | undefined;
|
|
73243
|
-
isUartTx?: boolean | undefined;
|
|
73244
|
-
isUartRx?: boolean | undefined;
|
|
73245
72940
|
canUseInternalPullup?: boolean | undefined;
|
|
73246
72941
|
isUsingInternalPullup?: boolean | undefined;
|
|
73247
72942
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -73253,6 +72948,9 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73253
72948
|
canUsePushPull?: boolean | undefined;
|
|
73254
72949
|
isUsingPushPull?: boolean | undefined;
|
|
73255
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;
|
|
73256
72954
|
providesPower?: boolean | undefined;
|
|
73257
72955
|
requiresPower?: boolean | undefined;
|
|
73258
72956
|
providesGround?: boolean | undefined;
|
|
@@ -73263,14 +72961,6 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73263
72961
|
includeInBoardPinout?: boolean | undefined;
|
|
73264
72962
|
highlightColor?: string | undefined;
|
|
73265
72963
|
mustBeConnected?: boolean | undefined;
|
|
73266
|
-
isI2cSda?: boolean | undefined;
|
|
73267
|
-
isI2cScl?: boolean | undefined;
|
|
73268
|
-
isSpiMosi?: boolean | undefined;
|
|
73269
|
-
isSpiMiso?: boolean | undefined;
|
|
73270
|
-
isSpiSck?: boolean | undefined;
|
|
73271
|
-
isSpiCs?: boolean | undefined;
|
|
73272
|
-
isUartTx?: boolean | undefined;
|
|
73273
|
-
isUartRx?: boolean | undefined;
|
|
73274
72964
|
canUseInternalPullup?: boolean | undefined;
|
|
73275
72965
|
isUsingInternalPullup?: boolean | undefined;
|
|
73276
72966
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -73345,6 +73035,9 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73345
73035
|
displayName?: string | undefined;
|
|
73346
73036
|
datasheetUrl?: string | undefined;
|
|
73347
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;
|
|
73348
73041
|
providesPower?: boolean | undefined;
|
|
73349
73042
|
requiresPower?: boolean | undefined;
|
|
73350
73043
|
providesGround?: boolean | undefined;
|
|
@@ -73355,14 +73048,6 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73355
73048
|
includeInBoardPinout?: boolean | undefined;
|
|
73356
73049
|
highlightColor?: string | undefined;
|
|
73357
73050
|
mustBeConnected?: boolean | undefined;
|
|
73358
|
-
isI2cSda?: boolean | undefined;
|
|
73359
|
-
isI2cScl?: boolean | undefined;
|
|
73360
|
-
isSpiMosi?: boolean | undefined;
|
|
73361
|
-
isSpiMiso?: boolean | undefined;
|
|
73362
|
-
isSpiSck?: boolean | undefined;
|
|
73363
|
-
isSpiCs?: boolean | undefined;
|
|
73364
|
-
isUartTx?: boolean | undefined;
|
|
73365
|
-
isUartRx?: boolean | undefined;
|
|
73366
73051
|
canUseInternalPullup?: boolean | undefined;
|
|
73367
73052
|
isUsingInternalPullup?: boolean | undefined;
|
|
73368
73053
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -73872,6 +73557,9 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73872
73557
|
displayName?: string | undefined;
|
|
73873
73558
|
datasheetUrl?: string | undefined;
|
|
73874
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;
|
|
73875
73563
|
providesPower?: boolean | undefined;
|
|
73876
73564
|
requiresPower?: boolean | undefined;
|
|
73877
73565
|
providesGround?: boolean | undefined;
|
|
@@ -73882,14 +73570,6 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73882
73570
|
includeInBoardPinout?: boolean | undefined;
|
|
73883
73571
|
highlightColor?: string | undefined;
|
|
73884
73572
|
mustBeConnected?: boolean | undefined;
|
|
73885
|
-
isI2cSda?: boolean | undefined;
|
|
73886
|
-
isI2cScl?: boolean | undefined;
|
|
73887
|
-
isSpiMosi?: boolean | undefined;
|
|
73888
|
-
isSpiMiso?: boolean | undefined;
|
|
73889
|
-
isSpiSck?: boolean | undefined;
|
|
73890
|
-
isSpiCs?: boolean | undefined;
|
|
73891
|
-
isUartTx?: boolean | undefined;
|
|
73892
|
-
isUartRx?: boolean | undefined;
|
|
73893
73573
|
canUseInternalPullup?: boolean | undefined;
|
|
73894
73574
|
isUsingInternalPullup?: boolean | undefined;
|
|
73895
73575
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -77404,6 +77084,9 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77404
77084
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
77405
77085
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
77406
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"]>>;
|
|
77407
77090
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
77408
77091
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
77409
77092
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -77414,14 +77097,6 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77414
77097
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
77415
77098
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
77416
77099
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
77417
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
77418
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
77419
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
77420
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
77421
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
77422
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
77423
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
77424
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
77425
77100
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
77426
77101
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
77427
77102
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -77433,6 +77108,9 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77433
77108
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77434
77109
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77435
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;
|
|
77436
77114
|
providesPower?: boolean | undefined;
|
|
77437
77115
|
requiresPower?: boolean | undefined;
|
|
77438
77116
|
providesGround?: boolean | undefined;
|
|
@@ -77443,14 +77121,6 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77443
77121
|
includeInBoardPinout?: boolean | undefined;
|
|
77444
77122
|
highlightColor?: string | undefined;
|
|
77445
77123
|
mustBeConnected?: boolean | undefined;
|
|
77446
|
-
isI2cSda?: boolean | undefined;
|
|
77447
|
-
isI2cScl?: boolean | undefined;
|
|
77448
|
-
isSpiMosi?: boolean | undefined;
|
|
77449
|
-
isSpiMiso?: boolean | undefined;
|
|
77450
|
-
isSpiSck?: boolean | undefined;
|
|
77451
|
-
isSpiCs?: boolean | undefined;
|
|
77452
|
-
isUartTx?: boolean | undefined;
|
|
77453
|
-
isUartRx?: boolean | undefined;
|
|
77454
77124
|
canUseInternalPullup?: boolean | undefined;
|
|
77455
77125
|
isUsingInternalPullup?: boolean | undefined;
|
|
77456
77126
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -77462,6 +77132,9 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77462
77132
|
canUsePushPull?: boolean | undefined;
|
|
77463
77133
|
isUsingPushPull?: boolean | undefined;
|
|
77464
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;
|
|
77465
77138
|
providesPower?: boolean | undefined;
|
|
77466
77139
|
requiresPower?: boolean | undefined;
|
|
77467
77140
|
providesGround?: boolean | undefined;
|
|
@@ -77472,14 +77145,6 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77472
77145
|
includeInBoardPinout?: boolean | undefined;
|
|
77473
77146
|
highlightColor?: string | undefined;
|
|
77474
77147
|
mustBeConnected?: boolean | undefined;
|
|
77475
|
-
isI2cSda?: boolean | undefined;
|
|
77476
|
-
isI2cScl?: boolean | undefined;
|
|
77477
|
-
isSpiMosi?: boolean | undefined;
|
|
77478
|
-
isSpiMiso?: boolean | undefined;
|
|
77479
|
-
isSpiSck?: boolean | undefined;
|
|
77480
|
-
isSpiCs?: boolean | undefined;
|
|
77481
|
-
isUartTx?: boolean | undefined;
|
|
77482
|
-
isUartRx?: boolean | undefined;
|
|
77483
77148
|
canUseInternalPullup?: boolean | undefined;
|
|
77484
77149
|
isUsingInternalPullup?: boolean | undefined;
|
|
77485
77150
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -77558,6 +77223,9 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77558
77223
|
displayName?: string | undefined;
|
|
77559
77224
|
datasheetUrl?: string | undefined;
|
|
77560
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;
|
|
77561
77229
|
providesPower?: boolean | undefined;
|
|
77562
77230
|
requiresPower?: boolean | undefined;
|
|
77563
77231
|
providesGround?: boolean | undefined;
|
|
@@ -77568,14 +77236,6 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77568
77236
|
includeInBoardPinout?: boolean | undefined;
|
|
77569
77237
|
highlightColor?: string | undefined;
|
|
77570
77238
|
mustBeConnected?: boolean | undefined;
|
|
77571
|
-
isI2cSda?: boolean | undefined;
|
|
77572
|
-
isI2cScl?: boolean | undefined;
|
|
77573
|
-
isSpiMosi?: boolean | undefined;
|
|
77574
|
-
isSpiMiso?: boolean | undefined;
|
|
77575
|
-
isSpiSck?: boolean | undefined;
|
|
77576
|
-
isSpiCs?: boolean | undefined;
|
|
77577
|
-
isUartTx?: boolean | undefined;
|
|
77578
|
-
isUartRx?: boolean | undefined;
|
|
77579
77239
|
canUseInternalPullup?: boolean | undefined;
|
|
77580
77240
|
isUsingInternalPullup?: boolean | undefined;
|
|
77581
77241
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -78088,6 +77748,9 @@ declare const crystalProps: z.ZodObject<{
|
|
|
78088
77748
|
displayName?: string | undefined;
|
|
78089
77749
|
datasheetUrl?: string | undefined;
|
|
78090
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;
|
|
78091
77754
|
providesPower?: boolean | undefined;
|
|
78092
77755
|
requiresPower?: boolean | undefined;
|
|
78093
77756
|
providesGround?: boolean | undefined;
|
|
@@ -78098,14 +77761,6 @@ declare const crystalProps: z.ZodObject<{
|
|
|
78098
77761
|
includeInBoardPinout?: boolean | undefined;
|
|
78099
77762
|
highlightColor?: string | undefined;
|
|
78100
77763
|
mustBeConnected?: boolean | undefined;
|
|
78101
|
-
isI2cSda?: boolean | undefined;
|
|
78102
|
-
isI2cScl?: boolean | undefined;
|
|
78103
|
-
isSpiMosi?: boolean | undefined;
|
|
78104
|
-
isSpiMiso?: boolean | undefined;
|
|
78105
|
-
isSpiSck?: boolean | undefined;
|
|
78106
|
-
isSpiCs?: boolean | undefined;
|
|
78107
|
-
isUartTx?: boolean | undefined;
|
|
78108
|
-
isUartRx?: boolean | undefined;
|
|
78109
77764
|
canUseInternalPullup?: boolean | undefined;
|
|
78110
77765
|
isUsingInternalPullup?: boolean | undefined;
|
|
78111
77766
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -81618,6 +81273,9 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81618
81273
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
81619
81274
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
81620
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"]>>;
|
|
81621
81279
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
81622
81280
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
81623
81281
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -81628,14 +81286,6 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81628
81286
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
81629
81287
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
81630
81288
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
81631
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
81632
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
81633
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
81634
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
81635
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
81636
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
81637
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
81638
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
81639
81289
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
81640
81290
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
81641
81291
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -81647,6 +81297,9 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81647
81297
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81648
81298
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81649
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;
|
|
81650
81303
|
providesPower?: boolean | undefined;
|
|
81651
81304
|
requiresPower?: boolean | undefined;
|
|
81652
81305
|
providesGround?: boolean | undefined;
|
|
@@ -81657,14 +81310,6 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81657
81310
|
includeInBoardPinout?: boolean | undefined;
|
|
81658
81311
|
highlightColor?: string | undefined;
|
|
81659
81312
|
mustBeConnected?: boolean | undefined;
|
|
81660
|
-
isI2cSda?: boolean | undefined;
|
|
81661
|
-
isI2cScl?: boolean | undefined;
|
|
81662
|
-
isSpiMosi?: boolean | undefined;
|
|
81663
|
-
isSpiMiso?: boolean | undefined;
|
|
81664
|
-
isSpiSck?: boolean | undefined;
|
|
81665
|
-
isSpiCs?: boolean | undefined;
|
|
81666
|
-
isUartTx?: boolean | undefined;
|
|
81667
|
-
isUartRx?: boolean | undefined;
|
|
81668
81313
|
canUseInternalPullup?: boolean | undefined;
|
|
81669
81314
|
isUsingInternalPullup?: boolean | undefined;
|
|
81670
81315
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -81676,6 +81321,9 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81676
81321
|
canUsePushPull?: boolean | undefined;
|
|
81677
81322
|
isUsingPushPull?: boolean | undefined;
|
|
81678
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;
|
|
81679
81327
|
providesPower?: boolean | undefined;
|
|
81680
81328
|
requiresPower?: boolean | undefined;
|
|
81681
81329
|
providesGround?: boolean | undefined;
|
|
@@ -81686,14 +81334,6 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81686
81334
|
includeInBoardPinout?: boolean | undefined;
|
|
81687
81335
|
highlightColor?: string | undefined;
|
|
81688
81336
|
mustBeConnected?: boolean | undefined;
|
|
81689
|
-
isI2cSda?: boolean | undefined;
|
|
81690
|
-
isI2cScl?: boolean | undefined;
|
|
81691
|
-
isSpiMosi?: boolean | undefined;
|
|
81692
|
-
isSpiMiso?: boolean | undefined;
|
|
81693
|
-
isSpiSck?: boolean | undefined;
|
|
81694
|
-
isSpiCs?: boolean | undefined;
|
|
81695
|
-
isUartTx?: boolean | undefined;
|
|
81696
|
-
isUartRx?: boolean | undefined;
|
|
81697
81337
|
canUseInternalPullup?: boolean | undefined;
|
|
81698
81338
|
isUsingInternalPullup?: boolean | undefined;
|
|
81699
81339
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -81769,6 +81409,9 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81769
81409
|
displayName?: string | undefined;
|
|
81770
81410
|
datasheetUrl?: string | undefined;
|
|
81771
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;
|
|
81772
81415
|
providesPower?: boolean | undefined;
|
|
81773
81416
|
requiresPower?: boolean | undefined;
|
|
81774
81417
|
providesGround?: boolean | undefined;
|
|
@@ -81779,14 +81422,6 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81779
81422
|
includeInBoardPinout?: boolean | undefined;
|
|
81780
81423
|
highlightColor?: string | undefined;
|
|
81781
81424
|
mustBeConnected?: boolean | undefined;
|
|
81782
|
-
isI2cSda?: boolean | undefined;
|
|
81783
|
-
isI2cScl?: boolean | undefined;
|
|
81784
|
-
isSpiMosi?: boolean | undefined;
|
|
81785
|
-
isSpiMiso?: boolean | undefined;
|
|
81786
|
-
isSpiSck?: boolean | undefined;
|
|
81787
|
-
isSpiCs?: boolean | undefined;
|
|
81788
|
-
isUartTx?: boolean | undefined;
|
|
81789
|
-
isUartRx?: boolean | undefined;
|
|
81790
81425
|
canUseInternalPullup?: boolean | undefined;
|
|
81791
81426
|
isUsingInternalPullup?: boolean | undefined;
|
|
81792
81427
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -82296,6 +81931,9 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
82296
81931
|
displayName?: string | undefined;
|
|
82297
81932
|
datasheetUrl?: string | undefined;
|
|
82298
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;
|
|
82299
81937
|
providesPower?: boolean | undefined;
|
|
82300
81938
|
requiresPower?: boolean | undefined;
|
|
82301
81939
|
providesGround?: boolean | undefined;
|
|
@@ -82306,14 +81944,6 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
82306
81944
|
includeInBoardPinout?: boolean | undefined;
|
|
82307
81945
|
highlightColor?: string | undefined;
|
|
82308
81946
|
mustBeConnected?: boolean | undefined;
|
|
82309
|
-
isI2cSda?: boolean | undefined;
|
|
82310
|
-
isI2cScl?: boolean | undefined;
|
|
82311
|
-
isSpiMosi?: boolean | undefined;
|
|
82312
|
-
isSpiMiso?: boolean | undefined;
|
|
82313
|
-
isSpiSck?: boolean | undefined;
|
|
82314
|
-
isSpiCs?: boolean | undefined;
|
|
82315
|
-
isUartTx?: boolean | undefined;
|
|
82316
|
-
isUartRx?: boolean | undefined;
|
|
82317
81947
|
canUseInternalPullup?: boolean | undefined;
|
|
82318
81948
|
isUsingInternalPullup?: boolean | undefined;
|
|
82319
81949
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -87309,6 +86939,9 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87309
86939
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
87310
86940
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
87311
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"]>>;
|
|
87312
86945
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
87313
86946
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
87314
86947
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -87319,14 +86952,6 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87319
86952
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
87320
86953
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
87321
86954
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
87322
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
87323
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
87324
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
87325
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
87326
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
87327
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
87328
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
87329
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
87330
86955
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
87331
86956
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
87332
86957
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -87338,6 +86963,9 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87338
86963
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87339
86964
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87340
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;
|
|
87341
86969
|
providesPower?: boolean | undefined;
|
|
87342
86970
|
requiresPower?: boolean | undefined;
|
|
87343
86971
|
providesGround?: boolean | undefined;
|
|
@@ -87348,14 +86976,6 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87348
86976
|
includeInBoardPinout?: boolean | undefined;
|
|
87349
86977
|
highlightColor?: string | undefined;
|
|
87350
86978
|
mustBeConnected?: boolean | undefined;
|
|
87351
|
-
isI2cSda?: boolean | undefined;
|
|
87352
|
-
isI2cScl?: boolean | undefined;
|
|
87353
|
-
isSpiMosi?: boolean | undefined;
|
|
87354
|
-
isSpiMiso?: boolean | undefined;
|
|
87355
|
-
isSpiSck?: boolean | undefined;
|
|
87356
|
-
isSpiCs?: boolean | undefined;
|
|
87357
|
-
isUartTx?: boolean | undefined;
|
|
87358
|
-
isUartRx?: boolean | undefined;
|
|
87359
86979
|
canUseInternalPullup?: boolean | undefined;
|
|
87360
86980
|
isUsingInternalPullup?: boolean | undefined;
|
|
87361
86981
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -87367,6 +86987,9 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87367
86987
|
canUsePushPull?: boolean | undefined;
|
|
87368
86988
|
isUsingPushPull?: boolean | undefined;
|
|
87369
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;
|
|
87370
86993
|
providesPower?: boolean | undefined;
|
|
87371
86994
|
requiresPower?: boolean | undefined;
|
|
87372
86995
|
providesGround?: boolean | undefined;
|
|
@@ -87377,14 +87000,6 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87377
87000
|
includeInBoardPinout?: boolean | undefined;
|
|
87378
87001
|
highlightColor?: string | undefined;
|
|
87379
87002
|
mustBeConnected?: boolean | undefined;
|
|
87380
|
-
isI2cSda?: boolean | undefined;
|
|
87381
|
-
isI2cScl?: boolean | undefined;
|
|
87382
|
-
isSpiMosi?: boolean | undefined;
|
|
87383
|
-
isSpiMiso?: boolean | undefined;
|
|
87384
|
-
isSpiSck?: boolean | undefined;
|
|
87385
|
-
isSpiCs?: boolean | undefined;
|
|
87386
|
-
isUartTx?: boolean | undefined;
|
|
87387
|
-
isUartRx?: boolean | undefined;
|
|
87388
87003
|
canUseInternalPullup?: boolean | undefined;
|
|
87389
87004
|
isUsingInternalPullup?: boolean | undefined;
|
|
87390
87005
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -87470,6 +87085,9 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87470
87085
|
displayName?: string | undefined;
|
|
87471
87086
|
datasheetUrl?: string | undefined;
|
|
87472
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;
|
|
87473
87091
|
providesPower?: boolean | undefined;
|
|
87474
87092
|
requiresPower?: boolean | undefined;
|
|
87475
87093
|
providesGround?: boolean | undefined;
|
|
@@ -87480,14 +87098,6 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87480
87098
|
includeInBoardPinout?: boolean | undefined;
|
|
87481
87099
|
highlightColor?: string | undefined;
|
|
87482
87100
|
mustBeConnected?: boolean | undefined;
|
|
87483
|
-
isI2cSda?: boolean | undefined;
|
|
87484
|
-
isI2cScl?: boolean | undefined;
|
|
87485
|
-
isSpiMosi?: boolean | undefined;
|
|
87486
|
-
isSpiMiso?: boolean | undefined;
|
|
87487
|
-
isSpiSck?: boolean | undefined;
|
|
87488
|
-
isSpiCs?: boolean | undefined;
|
|
87489
|
-
isUartTx?: boolean | undefined;
|
|
87490
|
-
isUartRx?: boolean | undefined;
|
|
87491
87101
|
canUseInternalPullup?: boolean | undefined;
|
|
87492
87102
|
isUsingInternalPullup?: boolean | undefined;
|
|
87493
87103
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -88004,6 +87614,9 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
88004
87614
|
displayName?: string | undefined;
|
|
88005
87615
|
datasheetUrl?: string | undefined;
|
|
88006
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;
|
|
88007
87620
|
providesPower?: boolean | undefined;
|
|
88008
87621
|
requiresPower?: boolean | undefined;
|
|
88009
87622
|
providesGround?: boolean | undefined;
|
|
@@ -88014,14 +87627,6 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
88014
87627
|
includeInBoardPinout?: boolean | undefined;
|
|
88015
87628
|
highlightColor?: string | undefined;
|
|
88016
87629
|
mustBeConnected?: boolean | undefined;
|
|
88017
|
-
isI2cSda?: boolean | undefined;
|
|
88018
|
-
isI2cScl?: boolean | undefined;
|
|
88019
|
-
isSpiMosi?: boolean | undefined;
|
|
88020
|
-
isSpiMiso?: boolean | undefined;
|
|
88021
|
-
isSpiSck?: boolean | undefined;
|
|
88022
|
-
isSpiCs?: boolean | undefined;
|
|
88023
|
-
isUartTx?: boolean | undefined;
|
|
88024
|
-
isUartRx?: boolean | undefined;
|
|
88025
87630
|
canUseInternalPullup?: boolean | undefined;
|
|
88026
87631
|
isUsingInternalPullup?: boolean | undefined;
|
|
88027
87632
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -91567,6 +91172,9 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91567
91172
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
91568
91173
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
91569
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"]>>;
|
|
91570
91178
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
91571
91179
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
91572
91180
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -91577,14 +91185,6 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91577
91185
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
91578
91186
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
91579
91187
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
91580
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
91581
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
91582
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
91583
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
91584
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
91585
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
91586
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
91587
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
91588
91188
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
91589
91189
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
91590
91190
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -91596,6 +91196,9 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91596
91196
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91597
91197
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91598
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;
|
|
91599
91202
|
providesPower?: boolean | undefined;
|
|
91600
91203
|
requiresPower?: boolean | undefined;
|
|
91601
91204
|
providesGround?: boolean | undefined;
|
|
@@ -91606,14 +91209,6 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91606
91209
|
includeInBoardPinout?: boolean | undefined;
|
|
91607
91210
|
highlightColor?: string | undefined;
|
|
91608
91211
|
mustBeConnected?: boolean | undefined;
|
|
91609
|
-
isI2cSda?: boolean | undefined;
|
|
91610
|
-
isI2cScl?: boolean | undefined;
|
|
91611
|
-
isSpiMosi?: boolean | undefined;
|
|
91612
|
-
isSpiMiso?: boolean | undefined;
|
|
91613
|
-
isSpiSck?: boolean | undefined;
|
|
91614
|
-
isSpiCs?: boolean | undefined;
|
|
91615
|
-
isUartTx?: boolean | undefined;
|
|
91616
|
-
isUartRx?: boolean | undefined;
|
|
91617
91212
|
canUseInternalPullup?: boolean | undefined;
|
|
91618
91213
|
isUsingInternalPullup?: boolean | undefined;
|
|
91619
91214
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -91625,6 +91220,9 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91625
91220
|
canUsePushPull?: boolean | undefined;
|
|
91626
91221
|
isUsingPushPull?: boolean | undefined;
|
|
91627
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;
|
|
91628
91226
|
providesPower?: boolean | undefined;
|
|
91629
91227
|
requiresPower?: boolean | undefined;
|
|
91630
91228
|
providesGround?: boolean | undefined;
|
|
@@ -91635,14 +91233,6 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91635
91233
|
includeInBoardPinout?: boolean | undefined;
|
|
91636
91234
|
highlightColor?: string | undefined;
|
|
91637
91235
|
mustBeConnected?: boolean | undefined;
|
|
91638
|
-
isI2cSda?: boolean | undefined;
|
|
91639
|
-
isI2cScl?: boolean | undefined;
|
|
91640
|
-
isSpiMosi?: boolean | undefined;
|
|
91641
|
-
isSpiMiso?: boolean | undefined;
|
|
91642
|
-
isSpiSck?: boolean | undefined;
|
|
91643
|
-
isSpiCs?: boolean | undefined;
|
|
91644
|
-
isUartTx?: boolean | undefined;
|
|
91645
|
-
isUartRx?: boolean | undefined;
|
|
91646
91236
|
canUseInternalPullup?: boolean | undefined;
|
|
91647
91237
|
isUsingInternalPullup?: boolean | undefined;
|
|
91648
91238
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -91715,6 +91305,9 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91715
91305
|
displayName?: string | undefined;
|
|
91716
91306
|
datasheetUrl?: string | undefined;
|
|
91717
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;
|
|
91718
91311
|
providesPower?: boolean | undefined;
|
|
91719
91312
|
requiresPower?: boolean | undefined;
|
|
91720
91313
|
providesGround?: boolean | undefined;
|
|
@@ -91725,14 +91318,6 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91725
91318
|
includeInBoardPinout?: boolean | undefined;
|
|
91726
91319
|
highlightColor?: string | undefined;
|
|
91727
91320
|
mustBeConnected?: boolean | undefined;
|
|
91728
|
-
isI2cSda?: boolean | undefined;
|
|
91729
|
-
isI2cScl?: boolean | undefined;
|
|
91730
|
-
isSpiMosi?: boolean | undefined;
|
|
91731
|
-
isSpiMiso?: boolean | undefined;
|
|
91732
|
-
isSpiSck?: boolean | undefined;
|
|
91733
|
-
isSpiCs?: boolean | undefined;
|
|
91734
|
-
isUartTx?: boolean | undefined;
|
|
91735
|
-
isUartRx?: boolean | undefined;
|
|
91736
91321
|
canUseInternalPullup?: boolean | undefined;
|
|
91737
91322
|
isUsingInternalPullup?: boolean | undefined;
|
|
91738
91323
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -92241,6 +91826,9 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
92241
91826
|
displayName?: string | undefined;
|
|
92242
91827
|
datasheetUrl?: string | undefined;
|
|
92243
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;
|
|
92244
91832
|
providesPower?: boolean | undefined;
|
|
92245
91833
|
requiresPower?: boolean | undefined;
|
|
92246
91834
|
providesGround?: boolean | undefined;
|
|
@@ -92251,14 +91839,6 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
92251
91839
|
includeInBoardPinout?: boolean | undefined;
|
|
92252
91840
|
highlightColor?: string | undefined;
|
|
92253
91841
|
mustBeConnected?: boolean | undefined;
|
|
92254
|
-
isI2cSda?: boolean | undefined;
|
|
92255
|
-
isI2cScl?: boolean | undefined;
|
|
92256
|
-
isSpiMosi?: boolean | undefined;
|
|
92257
|
-
isSpiMiso?: boolean | undefined;
|
|
92258
|
-
isSpiSck?: boolean | undefined;
|
|
92259
|
-
isSpiCs?: boolean | undefined;
|
|
92260
|
-
isUartTx?: boolean | undefined;
|
|
92261
|
-
isUartRx?: boolean | undefined;
|
|
92262
91842
|
canUseInternalPullup?: boolean | undefined;
|
|
92263
91843
|
isUsingInternalPullup?: boolean | undefined;
|
|
92264
91844
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -100235,6 +99815,9 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100235
99815
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
100236
99816
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
100237
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"]>>;
|
|
100238
99821
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
100239
99822
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
100240
99823
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -100245,14 +99828,6 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100245
99828
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
100246
99829
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
100247
99830
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
100248
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
100249
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
100250
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
100251
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
100252
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
100253
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
100254
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
100255
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
100256
99831
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
100257
99832
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
100258
99833
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -100264,6 +99839,9 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100264
99839
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100265
99840
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100266
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;
|
|
100267
99845
|
providesPower?: boolean | undefined;
|
|
100268
99846
|
requiresPower?: boolean | undefined;
|
|
100269
99847
|
providesGround?: boolean | undefined;
|
|
@@ -100274,14 +99852,6 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100274
99852
|
includeInBoardPinout?: boolean | undefined;
|
|
100275
99853
|
highlightColor?: string | undefined;
|
|
100276
99854
|
mustBeConnected?: boolean | undefined;
|
|
100277
|
-
isI2cSda?: boolean | undefined;
|
|
100278
|
-
isI2cScl?: boolean | undefined;
|
|
100279
|
-
isSpiMosi?: boolean | undefined;
|
|
100280
|
-
isSpiMiso?: boolean | undefined;
|
|
100281
|
-
isSpiSck?: boolean | undefined;
|
|
100282
|
-
isSpiCs?: boolean | undefined;
|
|
100283
|
-
isUartTx?: boolean | undefined;
|
|
100284
|
-
isUartRx?: boolean | undefined;
|
|
100285
99855
|
canUseInternalPullup?: boolean | undefined;
|
|
100286
99856
|
isUsingInternalPullup?: boolean | undefined;
|
|
100287
99857
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -100293,6 +99863,9 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100293
99863
|
canUsePushPull?: boolean | undefined;
|
|
100294
99864
|
isUsingPushPull?: boolean | undefined;
|
|
100295
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;
|
|
100296
99869
|
providesPower?: boolean | undefined;
|
|
100297
99870
|
requiresPower?: boolean | undefined;
|
|
100298
99871
|
providesGround?: boolean | undefined;
|
|
@@ -100303,14 +99876,6 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100303
99876
|
includeInBoardPinout?: boolean | undefined;
|
|
100304
99877
|
highlightColor?: string | undefined;
|
|
100305
99878
|
mustBeConnected?: boolean | undefined;
|
|
100306
|
-
isI2cSda?: boolean | undefined;
|
|
100307
|
-
isI2cScl?: boolean | undefined;
|
|
100308
|
-
isSpiMosi?: boolean | undefined;
|
|
100309
|
-
isSpiMiso?: boolean | undefined;
|
|
100310
|
-
isSpiSck?: boolean | undefined;
|
|
100311
|
-
isSpiCs?: boolean | undefined;
|
|
100312
|
-
isUartTx?: boolean | undefined;
|
|
100313
|
-
isUartRx?: boolean | undefined;
|
|
100314
99879
|
canUseInternalPullup?: boolean | undefined;
|
|
100315
99880
|
isUsingInternalPullup?: boolean | undefined;
|
|
100316
99881
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -100385,6 +99950,9 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100385
99950
|
displayName?: string | undefined;
|
|
100386
99951
|
datasheetUrl?: string | undefined;
|
|
100387
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;
|
|
100388
99956
|
providesPower?: boolean | undefined;
|
|
100389
99957
|
requiresPower?: boolean | undefined;
|
|
100390
99958
|
providesGround?: boolean | undefined;
|
|
@@ -100395,14 +99963,6 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100395
99963
|
includeInBoardPinout?: boolean | undefined;
|
|
100396
99964
|
highlightColor?: string | undefined;
|
|
100397
99965
|
mustBeConnected?: boolean | undefined;
|
|
100398
|
-
isI2cSda?: boolean | undefined;
|
|
100399
|
-
isI2cScl?: boolean | undefined;
|
|
100400
|
-
isSpiMosi?: boolean | undefined;
|
|
100401
|
-
isSpiMiso?: boolean | undefined;
|
|
100402
|
-
isSpiSck?: boolean | undefined;
|
|
100403
|
-
isSpiCs?: boolean | undefined;
|
|
100404
|
-
isUartTx?: boolean | undefined;
|
|
100405
|
-
isUartRx?: boolean | undefined;
|
|
100406
99966
|
canUseInternalPullup?: boolean | undefined;
|
|
100407
99967
|
isUsingInternalPullup?: boolean | undefined;
|
|
100408
99968
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -100913,6 +100473,9 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100913
100473
|
displayName?: string | undefined;
|
|
100914
100474
|
datasheetUrl?: string | undefined;
|
|
100915
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;
|
|
100916
100479
|
providesPower?: boolean | undefined;
|
|
100917
100480
|
requiresPower?: boolean | undefined;
|
|
100918
100481
|
providesGround?: boolean | undefined;
|
|
@@ -100923,14 +100486,6 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100923
100486
|
includeInBoardPinout?: boolean | undefined;
|
|
100924
100487
|
highlightColor?: string | undefined;
|
|
100925
100488
|
mustBeConnected?: boolean | undefined;
|
|
100926
|
-
isI2cSda?: boolean | undefined;
|
|
100927
|
-
isI2cScl?: boolean | undefined;
|
|
100928
|
-
isSpiMosi?: boolean | undefined;
|
|
100929
|
-
isSpiMiso?: boolean | undefined;
|
|
100930
|
-
isSpiSck?: boolean | undefined;
|
|
100931
|
-
isSpiCs?: boolean | undefined;
|
|
100932
|
-
isUartTx?: boolean | undefined;
|
|
100933
|
-
isUartRx?: boolean | undefined;
|
|
100934
100489
|
canUseInternalPullup?: boolean | undefined;
|
|
100935
100490
|
isUsingInternalPullup?: boolean | undefined;
|
|
100936
100491
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -106117,6 +105672,9 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106117
105672
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
106118
105673
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
106119
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"]>>;
|
|
106120
105678
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
106121
105679
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
106122
105680
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -106127,14 +105685,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106127
105685
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
106128
105686
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
106129
105687
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
106130
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
106131
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
106132
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
106133
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
106134
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
106135
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
106136
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
106137
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
106138
105688
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
106139
105689
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
106140
105690
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -106146,6 +105696,9 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106146
105696
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
106147
105697
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
106148
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;
|
|
106149
105702
|
providesPower?: boolean | undefined;
|
|
106150
105703
|
requiresPower?: boolean | undefined;
|
|
106151
105704
|
providesGround?: boolean | undefined;
|
|
@@ -106156,14 +105709,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106156
105709
|
includeInBoardPinout?: boolean | undefined;
|
|
106157
105710
|
highlightColor?: string | undefined;
|
|
106158
105711
|
mustBeConnected?: boolean | undefined;
|
|
106159
|
-
isI2cSda?: boolean | undefined;
|
|
106160
|
-
isI2cScl?: boolean | undefined;
|
|
106161
|
-
isSpiMosi?: boolean | undefined;
|
|
106162
|
-
isSpiMiso?: boolean | undefined;
|
|
106163
|
-
isSpiSck?: boolean | undefined;
|
|
106164
|
-
isSpiCs?: boolean | undefined;
|
|
106165
|
-
isUartTx?: boolean | undefined;
|
|
106166
|
-
isUartRx?: boolean | undefined;
|
|
106167
105712
|
canUseInternalPullup?: boolean | undefined;
|
|
106168
105713
|
isUsingInternalPullup?: boolean | undefined;
|
|
106169
105714
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -106175,6 +105720,9 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106175
105720
|
canUsePushPull?: boolean | undefined;
|
|
106176
105721
|
isUsingPushPull?: boolean | undefined;
|
|
106177
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;
|
|
106178
105726
|
providesPower?: boolean | undefined;
|
|
106179
105727
|
requiresPower?: boolean | undefined;
|
|
106180
105728
|
providesGround?: boolean | undefined;
|
|
@@ -106185,14 +105733,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106185
105733
|
includeInBoardPinout?: boolean | undefined;
|
|
106186
105734
|
highlightColor?: string | undefined;
|
|
106187
105735
|
mustBeConnected?: boolean | undefined;
|
|
106188
|
-
isI2cSda?: boolean | undefined;
|
|
106189
|
-
isI2cScl?: boolean | undefined;
|
|
106190
|
-
isSpiMosi?: boolean | undefined;
|
|
106191
|
-
isSpiMiso?: boolean | undefined;
|
|
106192
|
-
isSpiSck?: boolean | undefined;
|
|
106193
|
-
isSpiCs?: boolean | undefined;
|
|
106194
|
-
isUartTx?: boolean | undefined;
|
|
106195
|
-
isUartRx?: boolean | undefined;
|
|
106196
105736
|
canUseInternalPullup?: boolean | undefined;
|
|
106197
105737
|
isUsingInternalPullup?: boolean | undefined;
|
|
106198
105738
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -106434,6 +105974,9 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106434
105974
|
displayName?: string | undefined;
|
|
106435
105975
|
datasheetUrl?: string | undefined;
|
|
106436
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;
|
|
106437
105980
|
providesPower?: boolean | undefined;
|
|
106438
105981
|
requiresPower?: boolean | undefined;
|
|
106439
105982
|
providesGround?: boolean | undefined;
|
|
@@ -106444,14 +105987,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106444
105987
|
includeInBoardPinout?: boolean | undefined;
|
|
106445
105988
|
highlightColor?: string | undefined;
|
|
106446
105989
|
mustBeConnected?: boolean | undefined;
|
|
106447
|
-
isI2cSda?: boolean | undefined;
|
|
106448
|
-
isI2cScl?: boolean | undefined;
|
|
106449
|
-
isSpiMosi?: boolean | undefined;
|
|
106450
|
-
isSpiMiso?: boolean | undefined;
|
|
106451
|
-
isSpiSck?: boolean | undefined;
|
|
106452
|
-
isSpiCs?: boolean | undefined;
|
|
106453
|
-
isUartTx?: boolean | undefined;
|
|
106454
|
-
isUartRx?: boolean | undefined;
|
|
106455
105990
|
canUseInternalPullup?: boolean | undefined;
|
|
106456
105991
|
isUsingInternalPullup?: boolean | undefined;
|
|
106457
105992
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -107010,6 +106545,9 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
107010
106545
|
displayName?: string | undefined;
|
|
107011
106546
|
datasheetUrl?: string | undefined;
|
|
107012
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;
|
|
107013
106551
|
providesPower?: boolean | undefined;
|
|
107014
106552
|
requiresPower?: boolean | undefined;
|
|
107015
106553
|
providesGround?: boolean | undefined;
|
|
@@ -107020,14 +106558,6 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
107020
106558
|
includeInBoardPinout?: boolean | undefined;
|
|
107021
106559
|
highlightColor?: string | undefined;
|
|
107022
106560
|
mustBeConnected?: boolean | undefined;
|
|
107023
|
-
isI2cSda?: boolean | undefined;
|
|
107024
|
-
isI2cScl?: boolean | undefined;
|
|
107025
|
-
isSpiMosi?: boolean | undefined;
|
|
107026
|
-
isSpiMiso?: boolean | undefined;
|
|
107027
|
-
isSpiSck?: boolean | undefined;
|
|
107028
|
-
isSpiCs?: boolean | undefined;
|
|
107029
|
-
isUartTx?: boolean | undefined;
|
|
107030
|
-
isUartRx?: boolean | undefined;
|
|
107031
106561
|
canUseInternalPullup?: boolean | undefined;
|
|
107032
106562
|
isUsingInternalPullup?: boolean | undefined;
|
|
107033
106563
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -110651,6 +110181,9 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110651
110181
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
110652
110182
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
110653
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"]>>;
|
|
110654
110187
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
110655
110188
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
110656
110189
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -110661,14 +110194,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110661
110194
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
110662
110195
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
110663
110196
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
110664
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
110665
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
110666
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
110667
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
110668
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
110669
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
110670
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
110671
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
110672
110197
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
110673
110198
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
110674
110199
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -110680,6 +110205,9 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110680
110205
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110681
110206
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110682
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;
|
|
110683
110211
|
providesPower?: boolean | undefined;
|
|
110684
110212
|
requiresPower?: boolean | undefined;
|
|
110685
110213
|
providesGround?: boolean | undefined;
|
|
@@ -110690,14 +110218,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110690
110218
|
includeInBoardPinout?: boolean | undefined;
|
|
110691
110219
|
highlightColor?: string | undefined;
|
|
110692
110220
|
mustBeConnected?: boolean | undefined;
|
|
110693
|
-
isI2cSda?: boolean | undefined;
|
|
110694
|
-
isI2cScl?: boolean | undefined;
|
|
110695
|
-
isSpiMosi?: boolean | undefined;
|
|
110696
|
-
isSpiMiso?: boolean | undefined;
|
|
110697
|
-
isSpiSck?: boolean | undefined;
|
|
110698
|
-
isSpiCs?: boolean | undefined;
|
|
110699
|
-
isUartTx?: boolean | undefined;
|
|
110700
|
-
isUartRx?: boolean | undefined;
|
|
110701
110221
|
canUseInternalPullup?: boolean | undefined;
|
|
110702
110222
|
isUsingInternalPullup?: boolean | undefined;
|
|
110703
110223
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -110709,6 +110229,9 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110709
110229
|
canUsePushPull?: boolean | undefined;
|
|
110710
110230
|
isUsingPushPull?: boolean | undefined;
|
|
110711
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;
|
|
110712
110235
|
providesPower?: boolean | undefined;
|
|
110713
110236
|
requiresPower?: boolean | undefined;
|
|
110714
110237
|
providesGround?: boolean | undefined;
|
|
@@ -110719,14 +110242,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110719
110242
|
includeInBoardPinout?: boolean | undefined;
|
|
110720
110243
|
highlightColor?: string | undefined;
|
|
110721
110244
|
mustBeConnected?: boolean | undefined;
|
|
110722
|
-
isI2cSda?: boolean | undefined;
|
|
110723
|
-
isI2cScl?: boolean | undefined;
|
|
110724
|
-
isSpiMosi?: boolean | undefined;
|
|
110725
|
-
isSpiMiso?: boolean | undefined;
|
|
110726
|
-
isSpiSck?: boolean | undefined;
|
|
110727
|
-
isSpiCs?: boolean | undefined;
|
|
110728
|
-
isUartTx?: boolean | undefined;
|
|
110729
|
-
isUartRx?: boolean | undefined;
|
|
110730
110245
|
canUseInternalPullup?: boolean | undefined;
|
|
110731
110246
|
isUsingInternalPullup?: boolean | undefined;
|
|
110732
110247
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -111093,6 +110608,9 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111093
110608
|
displayName?: string | undefined;
|
|
111094
110609
|
datasheetUrl?: string | undefined;
|
|
111095
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;
|
|
111096
110614
|
providesPower?: boolean | undefined;
|
|
111097
110615
|
requiresPower?: boolean | undefined;
|
|
111098
110616
|
providesGround?: boolean | undefined;
|
|
@@ -111103,14 +110621,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111103
110621
|
includeInBoardPinout?: boolean | undefined;
|
|
111104
110622
|
highlightColor?: string | undefined;
|
|
111105
110623
|
mustBeConnected?: boolean | undefined;
|
|
111106
|
-
isI2cSda?: boolean | undefined;
|
|
111107
|
-
isI2cScl?: boolean | undefined;
|
|
111108
|
-
isSpiMosi?: boolean | undefined;
|
|
111109
|
-
isSpiMiso?: boolean | undefined;
|
|
111110
|
-
isSpiSck?: boolean | undefined;
|
|
111111
|
-
isSpiCs?: boolean | undefined;
|
|
111112
|
-
isUartTx?: boolean | undefined;
|
|
111113
|
-
isUartRx?: boolean | undefined;
|
|
111114
110624
|
canUseInternalPullup?: boolean | undefined;
|
|
111115
110625
|
isUsingInternalPullup?: boolean | undefined;
|
|
111116
110626
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -111693,6 +111203,9 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111693
111203
|
displayName?: string | undefined;
|
|
111694
111204
|
datasheetUrl?: string | undefined;
|
|
111695
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;
|
|
111696
111209
|
providesPower?: boolean | undefined;
|
|
111697
111210
|
requiresPower?: boolean | undefined;
|
|
111698
111211
|
providesGround?: boolean | undefined;
|
|
@@ -111703,14 +111216,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111703
111216
|
includeInBoardPinout?: boolean | undefined;
|
|
111704
111217
|
highlightColor?: string | undefined;
|
|
111705
111218
|
mustBeConnected?: boolean | undefined;
|
|
111706
|
-
isI2cSda?: boolean | undefined;
|
|
111707
|
-
isI2cScl?: boolean | undefined;
|
|
111708
|
-
isSpiMosi?: boolean | undefined;
|
|
111709
|
-
isSpiMiso?: boolean | undefined;
|
|
111710
|
-
isSpiSck?: boolean | undefined;
|
|
111711
|
-
isSpiCs?: boolean | undefined;
|
|
111712
|
-
isUartTx?: boolean | undefined;
|
|
111713
|
-
isUartRx?: boolean | undefined;
|
|
111714
111219
|
canUseInternalPullup?: boolean | undefined;
|
|
111715
111220
|
isUsingInternalPullup?: boolean | undefined;
|
|
111716
111221
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -116690,6 +116195,9 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116690
116195
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
116691
116196
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
116692
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"]>>;
|
|
116693
116201
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
116694
116202
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
116695
116203
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -116700,14 +116208,6 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116700
116208
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
116701
116209
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
116702
116210
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
116703
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
116704
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
116705
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
116706
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
116707
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
116708
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
116709
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
116710
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
116711
116211
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
116712
116212
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
116713
116213
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -116719,6 +116219,9 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116719
116219
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116720
116220
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116721
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;
|
|
116722
116225
|
providesPower?: boolean | undefined;
|
|
116723
116226
|
requiresPower?: boolean | undefined;
|
|
116724
116227
|
providesGround?: boolean | undefined;
|
|
@@ -116729,14 +116232,6 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116729
116232
|
includeInBoardPinout?: boolean | undefined;
|
|
116730
116233
|
highlightColor?: string | undefined;
|
|
116731
116234
|
mustBeConnected?: boolean | undefined;
|
|
116732
|
-
isI2cSda?: boolean | undefined;
|
|
116733
|
-
isI2cScl?: boolean | undefined;
|
|
116734
|
-
isSpiMosi?: boolean | undefined;
|
|
116735
|
-
isSpiMiso?: boolean | undefined;
|
|
116736
|
-
isSpiSck?: boolean | undefined;
|
|
116737
|
-
isSpiCs?: boolean | undefined;
|
|
116738
|
-
isUartTx?: boolean | undefined;
|
|
116739
|
-
isUartRx?: boolean | undefined;
|
|
116740
116235
|
canUseInternalPullup?: boolean | undefined;
|
|
116741
116236
|
isUsingInternalPullup?: boolean | undefined;
|
|
116742
116237
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -116748,6 +116243,9 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116748
116243
|
canUsePushPull?: boolean | undefined;
|
|
116749
116244
|
isUsingPushPull?: boolean | undefined;
|
|
116750
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;
|
|
116751
116249
|
providesPower?: boolean | undefined;
|
|
116752
116250
|
requiresPower?: boolean | undefined;
|
|
116753
116251
|
providesGround?: boolean | undefined;
|
|
@@ -116758,14 +116256,6 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116758
116256
|
includeInBoardPinout?: boolean | undefined;
|
|
116759
116257
|
highlightColor?: string | undefined;
|
|
116760
116258
|
mustBeConnected?: boolean | undefined;
|
|
116761
|
-
isI2cSda?: boolean | undefined;
|
|
116762
|
-
isI2cScl?: boolean | undefined;
|
|
116763
|
-
isSpiMosi?: boolean | undefined;
|
|
116764
|
-
isSpiMiso?: boolean | undefined;
|
|
116765
|
-
isSpiSck?: boolean | undefined;
|
|
116766
|
-
isSpiCs?: boolean | undefined;
|
|
116767
|
-
isUartTx?: boolean | undefined;
|
|
116768
|
-
isUartRx?: boolean | undefined;
|
|
116769
116259
|
canUseInternalPullup?: boolean | undefined;
|
|
116770
116260
|
isUsingInternalPullup?: boolean | undefined;
|
|
116771
116261
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -116839,6 +116329,9 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116839
116329
|
displayName?: string | undefined;
|
|
116840
116330
|
datasheetUrl?: string | undefined;
|
|
116841
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;
|
|
116842
116335
|
providesPower?: boolean | undefined;
|
|
116843
116336
|
requiresPower?: boolean | undefined;
|
|
116844
116337
|
providesGround?: boolean | undefined;
|
|
@@ -116849,14 +116342,6 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116849
116342
|
includeInBoardPinout?: boolean | undefined;
|
|
116850
116343
|
highlightColor?: string | undefined;
|
|
116851
116344
|
mustBeConnected?: boolean | undefined;
|
|
116852
|
-
isI2cSda?: boolean | undefined;
|
|
116853
|
-
isI2cScl?: boolean | undefined;
|
|
116854
|
-
isSpiMosi?: boolean | undefined;
|
|
116855
|
-
isSpiMiso?: boolean | undefined;
|
|
116856
|
-
isSpiSck?: boolean | undefined;
|
|
116857
|
-
isSpiCs?: boolean | undefined;
|
|
116858
|
-
isUartTx?: boolean | undefined;
|
|
116859
|
-
isUartRx?: boolean | undefined;
|
|
116860
116345
|
canUseInternalPullup?: boolean | undefined;
|
|
116861
116346
|
isUsingInternalPullup?: boolean | undefined;
|
|
116862
116347
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -117365,6 +116850,9 @@ declare const transistorProps: z.ZodObject<{
|
|
|
117365
116850
|
displayName?: string | undefined;
|
|
117366
116851
|
datasheetUrl?: string | undefined;
|
|
117367
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;
|
|
117368
116856
|
providesPower?: boolean | undefined;
|
|
117369
116857
|
requiresPower?: boolean | undefined;
|
|
117370
116858
|
providesGround?: boolean | undefined;
|
|
@@ -117375,14 +116863,6 @@ declare const transistorProps: z.ZodObject<{
|
|
|
117375
116863
|
includeInBoardPinout?: boolean | undefined;
|
|
117376
116864
|
highlightColor?: string | undefined;
|
|
117377
116865
|
mustBeConnected?: boolean | undefined;
|
|
117378
|
-
isI2cSda?: boolean | undefined;
|
|
117379
|
-
isI2cScl?: boolean | undefined;
|
|
117380
|
-
isSpiMosi?: boolean | undefined;
|
|
117381
|
-
isSpiMiso?: boolean | undefined;
|
|
117382
|
-
isSpiSck?: boolean | undefined;
|
|
117383
|
-
isSpiCs?: boolean | undefined;
|
|
117384
|
-
isUartTx?: boolean | undefined;
|
|
117385
|
-
isUartRx?: boolean | undefined;
|
|
117386
116866
|
canUseInternalPullup?: boolean | undefined;
|
|
117387
116867
|
isUsingInternalPullup?: boolean | undefined;
|
|
117388
116868
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -120892,6 +120372,9 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120892
120372
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
120893
120373
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
120894
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"]>>;
|
|
120895
120378
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
120896
120379
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
120897
120380
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -120902,14 +120385,6 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120902
120385
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
120903
120386
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
120904
120387
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
120905
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
120906
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
120907
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
120908
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
120909
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
120910
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
120911
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
120912
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
120913
120388
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
120914
120389
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
120915
120390
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -120921,6 +120396,9 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120921
120396
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120922
120397
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120923
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;
|
|
120924
120402
|
providesPower?: boolean | undefined;
|
|
120925
120403
|
requiresPower?: boolean | undefined;
|
|
120926
120404
|
providesGround?: boolean | undefined;
|
|
@@ -120931,14 +120409,6 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120931
120409
|
includeInBoardPinout?: boolean | undefined;
|
|
120932
120410
|
highlightColor?: string | undefined;
|
|
120933
120411
|
mustBeConnected?: boolean | undefined;
|
|
120934
|
-
isI2cSda?: boolean | undefined;
|
|
120935
|
-
isI2cScl?: boolean | undefined;
|
|
120936
|
-
isSpiMosi?: boolean | undefined;
|
|
120937
|
-
isSpiMiso?: boolean | undefined;
|
|
120938
|
-
isSpiSck?: boolean | undefined;
|
|
120939
|
-
isSpiCs?: boolean | undefined;
|
|
120940
|
-
isUartTx?: boolean | undefined;
|
|
120941
|
-
isUartRx?: boolean | undefined;
|
|
120942
120412
|
canUseInternalPullup?: boolean | undefined;
|
|
120943
120413
|
isUsingInternalPullup?: boolean | undefined;
|
|
120944
120414
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -120950,6 +120420,9 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120950
120420
|
canUsePushPull?: boolean | undefined;
|
|
120951
120421
|
isUsingPushPull?: boolean | undefined;
|
|
120952
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;
|
|
120953
120426
|
providesPower?: boolean | undefined;
|
|
120954
120427
|
requiresPower?: boolean | undefined;
|
|
120955
120428
|
providesGround?: boolean | undefined;
|
|
@@ -120960,14 +120433,6 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120960
120433
|
includeInBoardPinout?: boolean | undefined;
|
|
120961
120434
|
highlightColor?: string | undefined;
|
|
120962
120435
|
mustBeConnected?: boolean | undefined;
|
|
120963
|
-
isI2cSda?: boolean | undefined;
|
|
120964
|
-
isI2cScl?: boolean | undefined;
|
|
120965
|
-
isSpiMosi?: boolean | undefined;
|
|
120966
|
-
isSpiMiso?: boolean | undefined;
|
|
120967
|
-
isSpiSck?: boolean | undefined;
|
|
120968
|
-
isSpiCs?: boolean | undefined;
|
|
120969
|
-
isUartTx?: boolean | undefined;
|
|
120970
|
-
isUartRx?: boolean | undefined;
|
|
120971
120436
|
canUseInternalPullup?: boolean | undefined;
|
|
120972
120437
|
isUsingInternalPullup?: boolean | undefined;
|
|
120973
120438
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -121042,6 +120507,9 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121042
120507
|
displayName?: string | undefined;
|
|
121043
120508
|
datasheetUrl?: string | undefined;
|
|
121044
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;
|
|
121045
120513
|
providesPower?: boolean | undefined;
|
|
121046
120514
|
requiresPower?: boolean | undefined;
|
|
121047
120515
|
providesGround?: boolean | undefined;
|
|
@@ -121052,14 +120520,6 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121052
120520
|
includeInBoardPinout?: boolean | undefined;
|
|
121053
120521
|
highlightColor?: string | undefined;
|
|
121054
120522
|
mustBeConnected?: boolean | undefined;
|
|
121055
|
-
isI2cSda?: boolean | undefined;
|
|
121056
|
-
isI2cScl?: boolean | undefined;
|
|
121057
|
-
isSpiMosi?: boolean | undefined;
|
|
121058
|
-
isSpiMiso?: boolean | undefined;
|
|
121059
|
-
isSpiSck?: boolean | undefined;
|
|
121060
|
-
isSpiCs?: boolean | undefined;
|
|
121061
|
-
isUartTx?: boolean | undefined;
|
|
121062
|
-
isUartRx?: boolean | undefined;
|
|
121063
120523
|
canUseInternalPullup?: boolean | undefined;
|
|
121064
120524
|
isUsingInternalPullup?: boolean | undefined;
|
|
121065
120525
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -121568,6 +121028,9 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121568
121028
|
displayName?: string | undefined;
|
|
121569
121029
|
datasheetUrl?: string | undefined;
|
|
121570
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;
|
|
121571
121034
|
providesPower?: boolean | undefined;
|
|
121572
121035
|
requiresPower?: boolean | undefined;
|
|
121573
121036
|
providesGround?: boolean | undefined;
|
|
@@ -121578,14 +121041,6 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121578
121041
|
includeInBoardPinout?: boolean | undefined;
|
|
121579
121042
|
highlightColor?: string | undefined;
|
|
121580
121043
|
mustBeConnected?: boolean | undefined;
|
|
121581
|
-
isI2cSda?: boolean | undefined;
|
|
121582
|
-
isI2cScl?: boolean | undefined;
|
|
121583
|
-
isSpiMosi?: boolean | undefined;
|
|
121584
|
-
isSpiMiso?: boolean | undefined;
|
|
121585
|
-
isSpiSck?: boolean | undefined;
|
|
121586
|
-
isSpiCs?: boolean | undefined;
|
|
121587
|
-
isUartTx?: boolean | undefined;
|
|
121588
|
-
isUartRx?: boolean | undefined;
|
|
121589
121044
|
canUseInternalPullup?: boolean | undefined;
|
|
121590
121045
|
isUsingInternalPullup?: boolean | undefined;
|
|
121591
121046
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -125101,6 +124556,9 @@ declare const opampProps: z.ZodObject<{
|
|
|
125101
124556
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
125102
124557
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
125103
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"]>>;
|
|
125104
124562
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
125105
124563
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
125106
124564
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -125111,14 +124569,6 @@ declare const opampProps: z.ZodObject<{
|
|
|
125111
124569
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
125112
124570
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
125113
124571
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
125114
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
125115
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
125116
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
125117
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
125118
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
125119
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
125120
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
125121
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
125122
124572
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
125123
124573
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
125124
124574
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -125130,6 +124580,9 @@ declare const opampProps: z.ZodObject<{
|
|
|
125130
124580
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
125131
124581
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
125132
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;
|
|
125133
124586
|
providesPower?: boolean | undefined;
|
|
125134
124587
|
requiresPower?: boolean | undefined;
|
|
125135
124588
|
providesGround?: boolean | undefined;
|
|
@@ -125140,14 +124593,6 @@ declare const opampProps: z.ZodObject<{
|
|
|
125140
124593
|
includeInBoardPinout?: boolean | undefined;
|
|
125141
124594
|
highlightColor?: string | undefined;
|
|
125142
124595
|
mustBeConnected?: boolean | undefined;
|
|
125143
|
-
isI2cSda?: boolean | undefined;
|
|
125144
|
-
isI2cScl?: boolean | undefined;
|
|
125145
|
-
isSpiMosi?: boolean | undefined;
|
|
125146
|
-
isSpiMiso?: boolean | undefined;
|
|
125147
|
-
isSpiSck?: boolean | undefined;
|
|
125148
|
-
isSpiCs?: boolean | undefined;
|
|
125149
|
-
isUartTx?: boolean | undefined;
|
|
125150
|
-
isUartRx?: boolean | undefined;
|
|
125151
124596
|
canUseInternalPullup?: boolean | undefined;
|
|
125152
124597
|
isUsingInternalPullup?: boolean | undefined;
|
|
125153
124598
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -125159,6 +124604,9 @@ declare const opampProps: z.ZodObject<{
|
|
|
125159
124604
|
canUsePushPull?: boolean | undefined;
|
|
125160
124605
|
isUsingPushPull?: boolean | undefined;
|
|
125161
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;
|
|
125162
124610
|
providesPower?: boolean | undefined;
|
|
125163
124611
|
requiresPower?: boolean | undefined;
|
|
125164
124612
|
providesGround?: boolean | undefined;
|
|
@@ -125169,14 +124617,6 @@ declare const opampProps: z.ZodObject<{
|
|
|
125169
124617
|
includeInBoardPinout?: boolean | undefined;
|
|
125170
124618
|
highlightColor?: string | undefined;
|
|
125171
124619
|
mustBeConnected?: boolean | undefined;
|
|
125172
|
-
isI2cSda?: boolean | undefined;
|
|
125173
|
-
isI2cScl?: boolean | undefined;
|
|
125174
|
-
isSpiMosi?: boolean | undefined;
|
|
125175
|
-
isSpiMiso?: boolean | undefined;
|
|
125176
|
-
isSpiSck?: boolean | undefined;
|
|
125177
|
-
isSpiCs?: boolean | undefined;
|
|
125178
|
-
isUartTx?: boolean | undefined;
|
|
125179
|
-
isUartRx?: boolean | undefined;
|
|
125180
124620
|
canUseInternalPullup?: boolean | undefined;
|
|
125181
124621
|
isUsingInternalPullup?: boolean | undefined;
|
|
125182
124622
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -125248,6 +124688,9 @@ declare const opampProps: z.ZodObject<{
|
|
|
125248
124688
|
displayName?: string | undefined;
|
|
125249
124689
|
datasheetUrl?: string | undefined;
|
|
125250
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;
|
|
125251
124694
|
providesPower?: boolean | undefined;
|
|
125252
124695
|
requiresPower?: boolean | undefined;
|
|
125253
124696
|
providesGround?: boolean | undefined;
|
|
@@ -125258,14 +124701,6 @@ declare const opampProps: z.ZodObject<{
|
|
|
125258
124701
|
includeInBoardPinout?: boolean | undefined;
|
|
125259
124702
|
highlightColor?: string | undefined;
|
|
125260
124703
|
mustBeConnected?: boolean | undefined;
|
|
125261
|
-
isI2cSda?: boolean | undefined;
|
|
125262
|
-
isI2cScl?: boolean | undefined;
|
|
125263
|
-
isSpiMosi?: boolean | undefined;
|
|
125264
|
-
isSpiMiso?: boolean | undefined;
|
|
125265
|
-
isSpiSck?: boolean | undefined;
|
|
125266
|
-
isSpiCs?: boolean | undefined;
|
|
125267
|
-
isUartTx?: boolean | undefined;
|
|
125268
|
-
isUartRx?: boolean | undefined;
|
|
125269
124704
|
canUseInternalPullup?: boolean | undefined;
|
|
125270
124705
|
isUsingInternalPullup?: boolean | undefined;
|
|
125271
124706
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -125773,6 +125208,9 @@ declare const opampProps: z.ZodObject<{
|
|
|
125773
125208
|
displayName?: string | undefined;
|
|
125774
125209
|
datasheetUrl?: string | undefined;
|
|
125775
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;
|
|
125776
125214
|
providesPower?: boolean | undefined;
|
|
125777
125215
|
requiresPower?: boolean | undefined;
|
|
125778
125216
|
providesGround?: boolean | undefined;
|
|
@@ -125783,14 +125221,6 @@ declare const opampProps: z.ZodObject<{
|
|
|
125783
125221
|
includeInBoardPinout?: boolean | undefined;
|
|
125784
125222
|
highlightColor?: string | undefined;
|
|
125785
125223
|
mustBeConnected?: boolean | undefined;
|
|
125786
|
-
isI2cSda?: boolean | undefined;
|
|
125787
|
-
isI2cScl?: boolean | undefined;
|
|
125788
|
-
isSpiMosi?: boolean | undefined;
|
|
125789
|
-
isSpiMiso?: boolean | undefined;
|
|
125790
|
-
isSpiSck?: boolean | undefined;
|
|
125791
|
-
isSpiCs?: boolean | undefined;
|
|
125792
|
-
isUartTx?: boolean | undefined;
|
|
125793
|
-
isUartRx?: boolean | undefined;
|
|
125794
125224
|
canUseInternalPullup?: boolean | undefined;
|
|
125795
125225
|
isUsingInternalPullup?: boolean | undefined;
|
|
125796
125226
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -129307,6 +128737,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129307
128737
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
129308
128738
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
129309
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"]>>;
|
|
129310
128743
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
129311
128744
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
129312
128745
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -129317,14 +128750,6 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129317
128750
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
129318
128751
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
129319
128752
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
129320
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
129321
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
129322
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
129323
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
129324
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
129325
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
129326
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
129327
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
129328
128753
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
129329
128754
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
129330
128755
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -129336,6 +128761,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129336
128761
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
129337
128762
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
129338
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;
|
|
129339
128767
|
providesPower?: boolean | undefined;
|
|
129340
128768
|
requiresPower?: boolean | undefined;
|
|
129341
128769
|
providesGround?: boolean | undefined;
|
|
@@ -129346,14 +128774,6 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129346
128774
|
includeInBoardPinout?: boolean | undefined;
|
|
129347
128775
|
highlightColor?: string | undefined;
|
|
129348
128776
|
mustBeConnected?: boolean | undefined;
|
|
129349
|
-
isI2cSda?: boolean | undefined;
|
|
129350
|
-
isI2cScl?: boolean | undefined;
|
|
129351
|
-
isSpiMosi?: boolean | undefined;
|
|
129352
|
-
isSpiMiso?: boolean | undefined;
|
|
129353
|
-
isSpiSck?: boolean | undefined;
|
|
129354
|
-
isSpiCs?: boolean | undefined;
|
|
129355
|
-
isUartTx?: boolean | undefined;
|
|
129356
|
-
isUartRx?: boolean | undefined;
|
|
129357
128777
|
canUseInternalPullup?: boolean | undefined;
|
|
129358
128778
|
isUsingInternalPullup?: boolean | undefined;
|
|
129359
128779
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -129365,6 +128785,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129365
128785
|
canUsePushPull?: boolean | undefined;
|
|
129366
128786
|
isUsingPushPull?: boolean | undefined;
|
|
129367
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;
|
|
129368
128791
|
providesPower?: boolean | undefined;
|
|
129369
128792
|
requiresPower?: boolean | undefined;
|
|
129370
128793
|
providesGround?: boolean | undefined;
|
|
@@ -129375,14 +128798,6 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129375
128798
|
includeInBoardPinout?: boolean | undefined;
|
|
129376
128799
|
highlightColor?: string | undefined;
|
|
129377
128800
|
mustBeConnected?: boolean | undefined;
|
|
129378
|
-
isI2cSda?: boolean | undefined;
|
|
129379
|
-
isI2cScl?: boolean | undefined;
|
|
129380
|
-
isSpiMosi?: boolean | undefined;
|
|
129381
|
-
isSpiMiso?: boolean | undefined;
|
|
129382
|
-
isSpiSck?: boolean | undefined;
|
|
129383
|
-
isSpiCs?: boolean | undefined;
|
|
129384
|
-
isUartTx?: boolean | undefined;
|
|
129385
|
-
isUartRx?: boolean | undefined;
|
|
129386
128801
|
canUseInternalPullup?: boolean | undefined;
|
|
129387
128802
|
isUsingInternalPullup?: boolean | undefined;
|
|
129388
128803
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -129458,6 +128873,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129458
128873
|
displayName?: string | undefined;
|
|
129459
128874
|
datasheetUrl?: string | undefined;
|
|
129460
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;
|
|
129461
128879
|
providesPower?: boolean | undefined;
|
|
129462
128880
|
requiresPower?: boolean | undefined;
|
|
129463
128881
|
providesGround?: boolean | undefined;
|
|
@@ -129468,14 +128886,6 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129468
128886
|
includeInBoardPinout?: boolean | undefined;
|
|
129469
128887
|
highlightColor?: string | undefined;
|
|
129470
128888
|
mustBeConnected?: boolean | undefined;
|
|
129471
|
-
isI2cSda?: boolean | undefined;
|
|
129472
|
-
isI2cScl?: boolean | undefined;
|
|
129473
|
-
isSpiMosi?: boolean | undefined;
|
|
129474
|
-
isSpiMiso?: boolean | undefined;
|
|
129475
|
-
isSpiSck?: boolean | undefined;
|
|
129476
|
-
isSpiCs?: boolean | undefined;
|
|
129477
|
-
isUartTx?: boolean | undefined;
|
|
129478
|
-
isUartRx?: boolean | undefined;
|
|
129479
128889
|
canUseInternalPullup?: boolean | undefined;
|
|
129480
128890
|
isUsingInternalPullup?: boolean | undefined;
|
|
129481
128891
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -129986,6 +129396,9 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129986
129396
|
displayName?: string | undefined;
|
|
129987
129397
|
datasheetUrl?: string | undefined;
|
|
129988
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;
|
|
129989
129402
|
providesPower?: boolean | undefined;
|
|
129990
129403
|
requiresPower?: boolean | undefined;
|
|
129991
129404
|
providesGround?: boolean | undefined;
|
|
@@ -129996,14 +129409,6 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129996
129409
|
includeInBoardPinout?: boolean | undefined;
|
|
129997
129410
|
highlightColor?: string | undefined;
|
|
129998
129411
|
mustBeConnected?: boolean | undefined;
|
|
129999
|
-
isI2cSda?: boolean | undefined;
|
|
130000
|
-
isI2cScl?: boolean | undefined;
|
|
130001
|
-
isSpiMosi?: boolean | undefined;
|
|
130002
|
-
isSpiMiso?: boolean | undefined;
|
|
130003
|
-
isSpiSck?: boolean | undefined;
|
|
130004
|
-
isSpiCs?: boolean | undefined;
|
|
130005
|
-
isUartTx?: boolean | undefined;
|
|
130006
|
-
isUartRx?: boolean | undefined;
|
|
130007
129412
|
canUseInternalPullup?: boolean | undefined;
|
|
130008
129413
|
isUsingInternalPullup?: boolean | undefined;
|
|
130009
129414
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -133509,6 +132914,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133509
132914
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
133510
132915
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
133511
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"]>>;
|
|
133512
132920
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
133513
132921
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
133514
132922
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -133519,14 +132927,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133519
132927
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
133520
132928
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
133521
132929
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
133522
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
133523
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
133524
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
133525
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
133526
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
133527
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
133528
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
133529
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
133530
132930
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
133531
132931
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
133532
132932
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -133538,6 +132938,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133538
132938
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133539
132939
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133540
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;
|
|
133541
132944
|
providesPower?: boolean | undefined;
|
|
133542
132945
|
requiresPower?: boolean | undefined;
|
|
133543
132946
|
providesGround?: boolean | undefined;
|
|
@@ -133548,14 +132951,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133548
132951
|
includeInBoardPinout?: boolean | undefined;
|
|
133549
132952
|
highlightColor?: string | undefined;
|
|
133550
132953
|
mustBeConnected?: boolean | undefined;
|
|
133551
|
-
isI2cSda?: boolean | undefined;
|
|
133552
|
-
isI2cScl?: boolean | undefined;
|
|
133553
|
-
isSpiMosi?: boolean | undefined;
|
|
133554
|
-
isSpiMiso?: boolean | undefined;
|
|
133555
|
-
isSpiSck?: boolean | undefined;
|
|
133556
|
-
isSpiCs?: boolean | undefined;
|
|
133557
|
-
isUartTx?: boolean | undefined;
|
|
133558
|
-
isUartRx?: boolean | undefined;
|
|
133559
132954
|
canUseInternalPullup?: boolean | undefined;
|
|
133560
132955
|
isUsingInternalPullup?: boolean | undefined;
|
|
133561
132956
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -133567,6 +132962,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133567
132962
|
canUsePushPull?: boolean | undefined;
|
|
133568
132963
|
isUsingPushPull?: boolean | undefined;
|
|
133569
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;
|
|
133570
132968
|
providesPower?: boolean | undefined;
|
|
133571
132969
|
requiresPower?: boolean | undefined;
|
|
133572
132970
|
providesGround?: boolean | undefined;
|
|
@@ -133577,14 +132975,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133577
132975
|
includeInBoardPinout?: boolean | undefined;
|
|
133578
132976
|
highlightColor?: string | undefined;
|
|
133579
132977
|
mustBeConnected?: boolean | undefined;
|
|
133580
|
-
isI2cSda?: boolean | undefined;
|
|
133581
|
-
isI2cScl?: boolean | undefined;
|
|
133582
|
-
isSpiMosi?: boolean | undefined;
|
|
133583
|
-
isSpiMiso?: boolean | undefined;
|
|
133584
|
-
isSpiSck?: boolean | undefined;
|
|
133585
|
-
isSpiCs?: boolean | undefined;
|
|
133586
|
-
isUartTx?: boolean | undefined;
|
|
133587
|
-
isUartRx?: boolean | undefined;
|
|
133588
132978
|
canUseInternalPullup?: boolean | undefined;
|
|
133589
132979
|
isUsingInternalPullup?: boolean | undefined;
|
|
133590
132980
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -133665,6 +133055,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133665
133055
|
displayName?: string | undefined;
|
|
133666
133056
|
datasheetUrl?: string | undefined;
|
|
133667
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;
|
|
133668
133061
|
providesPower?: boolean | undefined;
|
|
133669
133062
|
requiresPower?: boolean | undefined;
|
|
133670
133063
|
providesGround?: boolean | undefined;
|
|
@@ -133675,14 +133068,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133675
133068
|
includeInBoardPinout?: boolean | undefined;
|
|
133676
133069
|
highlightColor?: string | undefined;
|
|
133677
133070
|
mustBeConnected?: boolean | undefined;
|
|
133678
|
-
isI2cSda?: boolean | undefined;
|
|
133679
|
-
isI2cScl?: boolean | undefined;
|
|
133680
|
-
isSpiMosi?: boolean | undefined;
|
|
133681
|
-
isSpiMiso?: boolean | undefined;
|
|
133682
|
-
isSpiSck?: boolean | undefined;
|
|
133683
|
-
isSpiCs?: boolean | undefined;
|
|
133684
|
-
isUartTx?: boolean | undefined;
|
|
133685
|
-
isUartRx?: boolean | undefined;
|
|
133686
133071
|
canUseInternalPullup?: boolean | undefined;
|
|
133687
133072
|
isUsingInternalPullup?: boolean | undefined;
|
|
133688
133073
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -134197,6 +133582,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134197
133582
|
displayName?: string | undefined;
|
|
134198
133583
|
datasheetUrl?: string | undefined;
|
|
134199
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;
|
|
134200
133588
|
providesPower?: boolean | undefined;
|
|
134201
133589
|
requiresPower?: boolean | undefined;
|
|
134202
133590
|
providesGround?: boolean | undefined;
|
|
@@ -134207,14 +133595,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134207
133595
|
includeInBoardPinout?: boolean | undefined;
|
|
134208
133596
|
highlightColor?: string | undefined;
|
|
134209
133597
|
mustBeConnected?: boolean | undefined;
|
|
134210
|
-
isI2cSda?: boolean | undefined;
|
|
134211
|
-
isI2cScl?: boolean | undefined;
|
|
134212
|
-
isSpiMosi?: boolean | undefined;
|
|
134213
|
-
isSpiMiso?: boolean | undefined;
|
|
134214
|
-
isSpiSck?: boolean | undefined;
|
|
134215
|
-
isSpiCs?: boolean | undefined;
|
|
134216
|
-
isUartTx?: boolean | undefined;
|
|
134217
|
-
isUartRx?: boolean | undefined;
|
|
134218
133598
|
canUseInternalPullup?: boolean | undefined;
|
|
134219
133599
|
isUsingInternalPullup?: boolean | undefined;
|
|
134220
133600
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -134729,6 +134109,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134729
134109
|
displayName?: string | undefined;
|
|
134730
134110
|
datasheetUrl?: string | undefined;
|
|
134731
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;
|
|
134732
134115
|
providesPower?: boolean | undefined;
|
|
134733
134116
|
requiresPower?: boolean | undefined;
|
|
134734
134117
|
providesGround?: boolean | undefined;
|
|
@@ -134739,14 +134122,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134739
134122
|
includeInBoardPinout?: boolean | undefined;
|
|
134740
134123
|
highlightColor?: string | undefined;
|
|
134741
134124
|
mustBeConnected?: boolean | undefined;
|
|
134742
|
-
isI2cSda?: boolean | undefined;
|
|
134743
|
-
isI2cScl?: boolean | undefined;
|
|
134744
|
-
isSpiMosi?: boolean | undefined;
|
|
134745
|
-
isSpiMiso?: boolean | undefined;
|
|
134746
|
-
isSpiSck?: boolean | undefined;
|
|
134747
|
-
isSpiCs?: boolean | undefined;
|
|
134748
|
-
isUartTx?: boolean | undefined;
|
|
134749
|
-
isUartRx?: boolean | undefined;
|
|
134750
134125
|
canUseInternalPullup?: boolean | undefined;
|
|
134751
134126
|
isUsingInternalPullup?: boolean | undefined;
|
|
134752
134127
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -135261,6 +134636,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135261
134636
|
displayName?: string | undefined;
|
|
135262
134637
|
datasheetUrl?: string | undefined;
|
|
135263
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;
|
|
135264
134642
|
providesPower?: boolean | undefined;
|
|
135265
134643
|
requiresPower?: boolean | undefined;
|
|
135266
134644
|
providesGround?: boolean | undefined;
|
|
@@ -135271,14 +134649,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135271
134649
|
includeInBoardPinout?: boolean | undefined;
|
|
135272
134650
|
highlightColor?: string | undefined;
|
|
135273
134651
|
mustBeConnected?: boolean | undefined;
|
|
135274
|
-
isI2cSda?: boolean | undefined;
|
|
135275
|
-
isI2cScl?: boolean | undefined;
|
|
135276
|
-
isSpiMosi?: boolean | undefined;
|
|
135277
|
-
isSpiMiso?: boolean | undefined;
|
|
135278
|
-
isSpiSck?: boolean | undefined;
|
|
135279
|
-
isSpiCs?: boolean | undefined;
|
|
135280
|
-
isUartTx?: boolean | undefined;
|
|
135281
|
-
isUartRx?: boolean | undefined;
|
|
135282
134652
|
canUseInternalPullup?: boolean | undefined;
|
|
135283
134653
|
isUsingInternalPullup?: boolean | undefined;
|
|
135284
134654
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -135799,6 +135169,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135799
135169
|
displayName?: string | undefined;
|
|
135800
135170
|
datasheetUrl?: string | undefined;
|
|
135801
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;
|
|
135802
135175
|
providesPower?: boolean | undefined;
|
|
135803
135176
|
requiresPower?: boolean | undefined;
|
|
135804
135177
|
providesGround?: boolean | undefined;
|
|
@@ -135809,14 +135182,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135809
135182
|
includeInBoardPinout?: boolean | undefined;
|
|
135810
135183
|
highlightColor?: string | undefined;
|
|
135811
135184
|
mustBeConnected?: boolean | undefined;
|
|
135812
|
-
isI2cSda?: boolean | undefined;
|
|
135813
|
-
isI2cScl?: boolean | undefined;
|
|
135814
|
-
isSpiMosi?: boolean | undefined;
|
|
135815
|
-
isSpiMiso?: boolean | undefined;
|
|
135816
|
-
isSpiSck?: boolean | undefined;
|
|
135817
|
-
isSpiCs?: boolean | undefined;
|
|
135818
|
-
isUartTx?: boolean | undefined;
|
|
135819
|
-
isUartRx?: boolean | undefined;
|
|
135820
135185
|
canUseInternalPullup?: boolean | undefined;
|
|
135821
135186
|
isUsingInternalPullup?: boolean | undefined;
|
|
135822
135187
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -136325,6 +135690,9 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136325
135690
|
displayName?: string | undefined;
|
|
136326
135691
|
datasheetUrl?: string | undefined;
|
|
136327
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;
|
|
136328
135696
|
providesPower?: boolean | undefined;
|
|
136329
135697
|
requiresPower?: boolean | undefined;
|
|
136330
135698
|
providesGround?: boolean | undefined;
|
|
@@ -136335,14 +135703,6 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136335
135703
|
includeInBoardPinout?: boolean | undefined;
|
|
136336
135704
|
highlightColor?: string | undefined;
|
|
136337
135705
|
mustBeConnected?: boolean | undefined;
|
|
136338
|
-
isI2cSda?: boolean | undefined;
|
|
136339
|
-
isI2cScl?: boolean | undefined;
|
|
136340
|
-
isSpiMosi?: boolean | undefined;
|
|
136341
|
-
isSpiMiso?: boolean | undefined;
|
|
136342
|
-
isSpiSck?: boolean | undefined;
|
|
136343
|
-
isSpiCs?: boolean | undefined;
|
|
136344
|
-
isUartTx?: boolean | undefined;
|
|
136345
|
-
isUartRx?: boolean | undefined;
|
|
136346
135706
|
canUseInternalPullup?: boolean | undefined;
|
|
136347
135707
|
isUsingInternalPullup?: boolean | undefined;
|
|
136348
135708
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -139876,6 +139236,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
139876
139236
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
139877
139237
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
139878
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"]>>;
|
|
139879
139242
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
139880
139243
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
139881
139244
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -139886,14 +139249,6 @@ declare const ledProps: z.ZodObject<{
|
|
|
139886
139249
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
139887
139250
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
139888
139251
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
139889
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
139890
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
139891
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
139892
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
139893
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
139894
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
139895
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
139896
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
139897
139252
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
139898
139253
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
139899
139254
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -139905,6 +139260,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
139905
139260
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139906
139261
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139907
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;
|
|
139908
139266
|
providesPower?: boolean | undefined;
|
|
139909
139267
|
requiresPower?: boolean | undefined;
|
|
139910
139268
|
providesGround?: boolean | undefined;
|
|
@@ -139915,14 +139273,6 @@ declare const ledProps: z.ZodObject<{
|
|
|
139915
139273
|
includeInBoardPinout?: boolean | undefined;
|
|
139916
139274
|
highlightColor?: string | undefined;
|
|
139917
139275
|
mustBeConnected?: boolean | undefined;
|
|
139918
|
-
isI2cSda?: boolean | undefined;
|
|
139919
|
-
isI2cScl?: boolean | undefined;
|
|
139920
|
-
isSpiMosi?: boolean | undefined;
|
|
139921
|
-
isSpiMiso?: boolean | undefined;
|
|
139922
|
-
isSpiSck?: boolean | undefined;
|
|
139923
|
-
isSpiCs?: boolean | undefined;
|
|
139924
|
-
isUartTx?: boolean | undefined;
|
|
139925
|
-
isUartRx?: boolean | undefined;
|
|
139926
139276
|
canUseInternalPullup?: boolean | undefined;
|
|
139927
139277
|
isUsingInternalPullup?: boolean | undefined;
|
|
139928
139278
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -139934,6 +139284,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
139934
139284
|
canUsePushPull?: boolean | undefined;
|
|
139935
139285
|
isUsingPushPull?: boolean | undefined;
|
|
139936
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;
|
|
139937
139290
|
providesPower?: boolean | undefined;
|
|
139938
139291
|
requiresPower?: boolean | undefined;
|
|
139939
139292
|
providesGround?: boolean | undefined;
|
|
@@ -139944,14 +139297,6 @@ declare const ledProps: z.ZodObject<{
|
|
|
139944
139297
|
includeInBoardPinout?: boolean | undefined;
|
|
139945
139298
|
highlightColor?: string | undefined;
|
|
139946
139299
|
mustBeConnected?: boolean | undefined;
|
|
139947
|
-
isI2cSda?: boolean | undefined;
|
|
139948
|
-
isI2cScl?: boolean | undefined;
|
|
139949
|
-
isSpiMosi?: boolean | undefined;
|
|
139950
|
-
isSpiMiso?: boolean | undefined;
|
|
139951
|
-
isSpiSck?: boolean | undefined;
|
|
139952
|
-
isSpiCs?: boolean | undefined;
|
|
139953
|
-
isUartTx?: boolean | undefined;
|
|
139954
|
-
isUartRx?: boolean | undefined;
|
|
139955
139300
|
canUseInternalPullup?: boolean | undefined;
|
|
139956
139301
|
isUsingInternalPullup?: boolean | undefined;
|
|
139957
139302
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -140028,6 +139373,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
140028
139373
|
displayName?: string | undefined;
|
|
140029
139374
|
datasheetUrl?: string | undefined;
|
|
140030
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;
|
|
140031
139379
|
providesPower?: boolean | undefined;
|
|
140032
139380
|
requiresPower?: boolean | undefined;
|
|
140033
139381
|
providesGround?: boolean | undefined;
|
|
@@ -140038,14 +139386,6 @@ declare const ledProps: z.ZodObject<{
|
|
|
140038
139386
|
includeInBoardPinout?: boolean | undefined;
|
|
140039
139387
|
highlightColor?: string | undefined;
|
|
140040
139388
|
mustBeConnected?: boolean | undefined;
|
|
140041
|
-
isI2cSda?: boolean | undefined;
|
|
140042
|
-
isI2cScl?: boolean | undefined;
|
|
140043
|
-
isSpiMosi?: boolean | undefined;
|
|
140044
|
-
isSpiMiso?: boolean | undefined;
|
|
140045
|
-
isSpiSck?: boolean | undefined;
|
|
140046
|
-
isSpiCs?: boolean | undefined;
|
|
140047
|
-
isUartTx?: boolean | undefined;
|
|
140048
|
-
isUartRx?: boolean | undefined;
|
|
140049
139389
|
canUseInternalPullup?: boolean | undefined;
|
|
140050
139390
|
isUsingInternalPullup?: boolean | undefined;
|
|
140051
139391
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -140558,6 +139898,9 @@ declare const ledProps: z.ZodObject<{
|
|
|
140558
139898
|
displayName?: string | undefined;
|
|
140559
139899
|
datasheetUrl?: string | undefined;
|
|
140560
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;
|
|
140561
139904
|
providesPower?: boolean | undefined;
|
|
140562
139905
|
requiresPower?: boolean | undefined;
|
|
140563
139906
|
providesGround?: boolean | undefined;
|
|
@@ -140568,14 +139911,6 @@ declare const ledProps: z.ZodObject<{
|
|
|
140568
139911
|
includeInBoardPinout?: boolean | undefined;
|
|
140569
139912
|
highlightColor?: string | undefined;
|
|
140570
139913
|
mustBeConnected?: boolean | undefined;
|
|
140571
|
-
isI2cSda?: boolean | undefined;
|
|
140572
|
-
isI2cScl?: boolean | undefined;
|
|
140573
|
-
isSpiMosi?: boolean | undefined;
|
|
140574
|
-
isSpiMiso?: boolean | undefined;
|
|
140575
|
-
isSpiSck?: boolean | undefined;
|
|
140576
|
-
isSpiCs?: boolean | undefined;
|
|
140577
|
-
isUartTx?: boolean | undefined;
|
|
140578
|
-
isUartRx?: boolean | undefined;
|
|
140579
139914
|
canUseInternalPullup?: boolean | undefined;
|
|
140580
139915
|
isUsingInternalPullup?: boolean | undefined;
|
|
140581
139916
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -144100,6 +143435,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144100
143435
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
144101
143436
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
144102
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"]>>;
|
|
144103
143441
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
144104
143442
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
144105
143443
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -144110,14 +143448,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144110
143448
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
144111
143449
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
144112
143450
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
144113
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
144114
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
144115
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
144116
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
144117
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
144118
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
144119
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
144120
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
144121
143451
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
144122
143452
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
144123
143453
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -144129,6 +143459,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144129
143459
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
144130
143460
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
144131
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;
|
|
144132
143465
|
providesPower?: boolean | undefined;
|
|
144133
143466
|
requiresPower?: boolean | undefined;
|
|
144134
143467
|
providesGround?: boolean | undefined;
|
|
@@ -144139,14 +143472,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144139
143472
|
includeInBoardPinout?: boolean | undefined;
|
|
144140
143473
|
highlightColor?: string | undefined;
|
|
144141
143474
|
mustBeConnected?: boolean | undefined;
|
|
144142
|
-
isI2cSda?: boolean | undefined;
|
|
144143
|
-
isI2cScl?: boolean | undefined;
|
|
144144
|
-
isSpiMosi?: boolean | undefined;
|
|
144145
|
-
isSpiMiso?: boolean | undefined;
|
|
144146
|
-
isSpiSck?: boolean | undefined;
|
|
144147
|
-
isSpiCs?: boolean | undefined;
|
|
144148
|
-
isUartTx?: boolean | undefined;
|
|
144149
|
-
isUartRx?: boolean | undefined;
|
|
144150
143475
|
canUseInternalPullup?: boolean | undefined;
|
|
144151
143476
|
isUsingInternalPullup?: boolean | undefined;
|
|
144152
143477
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -144158,6 +143483,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144158
143483
|
canUsePushPull?: boolean | undefined;
|
|
144159
143484
|
isUsingPushPull?: boolean | undefined;
|
|
144160
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;
|
|
144161
143489
|
providesPower?: boolean | undefined;
|
|
144162
143490
|
requiresPower?: boolean | undefined;
|
|
144163
143491
|
providesGround?: boolean | undefined;
|
|
@@ -144168,14 +143496,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144168
143496
|
includeInBoardPinout?: boolean | undefined;
|
|
144169
143497
|
highlightColor?: string | undefined;
|
|
144170
143498
|
mustBeConnected?: boolean | undefined;
|
|
144171
|
-
isI2cSda?: boolean | undefined;
|
|
144172
|
-
isI2cScl?: boolean | undefined;
|
|
144173
|
-
isSpiMosi?: boolean | undefined;
|
|
144174
|
-
isSpiMiso?: boolean | undefined;
|
|
144175
|
-
isSpiSck?: boolean | undefined;
|
|
144176
|
-
isSpiCs?: boolean | undefined;
|
|
144177
|
-
isUartTx?: boolean | undefined;
|
|
144178
|
-
isUartRx?: boolean | undefined;
|
|
144179
143499
|
canUseInternalPullup?: boolean | undefined;
|
|
144180
143500
|
isUsingInternalPullup?: boolean | undefined;
|
|
144181
143501
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -144260,6 +143580,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144260
143580
|
displayName?: string | undefined;
|
|
144261
143581
|
datasheetUrl?: string | undefined;
|
|
144262
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;
|
|
144263
143586
|
providesPower?: boolean | undefined;
|
|
144264
143587
|
requiresPower?: boolean | undefined;
|
|
144265
143588
|
providesGround?: boolean | undefined;
|
|
@@ -144270,14 +143593,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144270
143593
|
includeInBoardPinout?: boolean | undefined;
|
|
144271
143594
|
highlightColor?: string | undefined;
|
|
144272
143595
|
mustBeConnected?: boolean | undefined;
|
|
144273
|
-
isI2cSda?: boolean | undefined;
|
|
144274
|
-
isI2cScl?: boolean | undefined;
|
|
144275
|
-
isSpiMosi?: boolean | undefined;
|
|
144276
|
-
isSpiMiso?: boolean | undefined;
|
|
144277
|
-
isSpiSck?: boolean | undefined;
|
|
144278
|
-
isSpiCs?: boolean | undefined;
|
|
144279
|
-
isUartTx?: boolean | undefined;
|
|
144280
|
-
isUartRx?: boolean | undefined;
|
|
144281
143596
|
canUseInternalPullup?: boolean | undefined;
|
|
144282
143597
|
isUsingInternalPullup?: boolean | undefined;
|
|
144283
143598
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -144795,6 +144110,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144795
144110
|
displayName?: string | undefined;
|
|
144796
144111
|
datasheetUrl?: string | undefined;
|
|
144797
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;
|
|
144798
144116
|
providesPower?: boolean | undefined;
|
|
144799
144117
|
requiresPower?: boolean | undefined;
|
|
144800
144118
|
providesGround?: boolean | undefined;
|
|
@@ -144805,14 +144123,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144805
144123
|
includeInBoardPinout?: boolean | undefined;
|
|
144806
144124
|
highlightColor?: string | undefined;
|
|
144807
144125
|
mustBeConnected?: boolean | undefined;
|
|
144808
|
-
isI2cSda?: boolean | undefined;
|
|
144809
|
-
isI2cScl?: boolean | undefined;
|
|
144810
|
-
isSpiMosi?: boolean | undefined;
|
|
144811
|
-
isSpiMiso?: boolean | undefined;
|
|
144812
|
-
isSpiSck?: boolean | undefined;
|
|
144813
|
-
isSpiCs?: boolean | undefined;
|
|
144814
|
-
isUartTx?: boolean | undefined;
|
|
144815
|
-
isUartRx?: boolean | undefined;
|
|
144816
144126
|
canUseInternalPullup?: boolean | undefined;
|
|
144817
144127
|
isUsingInternalPullup?: boolean | undefined;
|
|
144818
144128
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -145331,6 +144641,9 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
145331
144641
|
displayName?: string | undefined;
|
|
145332
144642
|
datasheetUrl?: string | undefined;
|
|
145333
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;
|
|
145334
144647
|
providesPower?: boolean | undefined;
|
|
145335
144648
|
requiresPower?: boolean | undefined;
|
|
145336
144649
|
providesGround?: boolean | undefined;
|
|
@@ -145341,14 +144654,6 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
145341
144654
|
includeInBoardPinout?: boolean | undefined;
|
|
145342
144655
|
highlightColor?: string | undefined;
|
|
145343
144656
|
mustBeConnected?: boolean | undefined;
|
|
145344
|
-
isI2cSda?: boolean | undefined;
|
|
145345
|
-
isI2cScl?: boolean | undefined;
|
|
145346
|
-
isSpiMosi?: boolean | undefined;
|
|
145347
|
-
isSpiMiso?: boolean | undefined;
|
|
145348
|
-
isSpiSck?: boolean | undefined;
|
|
145349
|
-
isSpiCs?: boolean | undefined;
|
|
145350
|
-
isUartTx?: boolean | undefined;
|
|
145351
|
-
isUartRx?: boolean | undefined;
|
|
145352
144657
|
canUseInternalPullup?: boolean | undefined;
|
|
145353
144658
|
isUsingInternalPullup?: boolean | undefined;
|
|
145354
144659
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -149870,6 +149175,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149870
149175
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
149871
149176
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
149872
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"]>>;
|
|
149873
149181
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
149874
149182
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
149875
149183
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -149880,14 +149188,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149880
149188
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
149881
149189
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
149882
149190
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
149883
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
149884
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
149885
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
149886
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
149887
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
149888
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
149889
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
149890
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
149891
149191
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
149892
149192
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
149893
149193
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -149899,6 +149199,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149899
149199
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149900
149200
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149901
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;
|
|
149902
149205
|
providesPower?: boolean | undefined;
|
|
149903
149206
|
requiresPower?: boolean | undefined;
|
|
149904
149207
|
providesGround?: boolean | undefined;
|
|
@@ -149909,14 +149212,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149909
149212
|
includeInBoardPinout?: boolean | undefined;
|
|
149910
149213
|
highlightColor?: string | undefined;
|
|
149911
149214
|
mustBeConnected?: boolean | undefined;
|
|
149912
|
-
isI2cSda?: boolean | undefined;
|
|
149913
|
-
isI2cScl?: boolean | undefined;
|
|
149914
|
-
isSpiMosi?: boolean | undefined;
|
|
149915
|
-
isSpiMiso?: boolean | undefined;
|
|
149916
|
-
isSpiSck?: boolean | undefined;
|
|
149917
|
-
isSpiCs?: boolean | undefined;
|
|
149918
|
-
isUartTx?: boolean | undefined;
|
|
149919
|
-
isUartRx?: boolean | undefined;
|
|
149920
149215
|
canUseInternalPullup?: boolean | undefined;
|
|
149921
149216
|
isUsingInternalPullup?: boolean | undefined;
|
|
149922
149217
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -149928,6 +149223,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149928
149223
|
canUsePushPull?: boolean | undefined;
|
|
149929
149224
|
isUsingPushPull?: boolean | undefined;
|
|
149930
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;
|
|
149931
149229
|
providesPower?: boolean | undefined;
|
|
149932
149230
|
requiresPower?: boolean | undefined;
|
|
149933
149231
|
providesGround?: boolean | undefined;
|
|
@@ -149938,14 +149236,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149938
149236
|
includeInBoardPinout?: boolean | undefined;
|
|
149939
149237
|
highlightColor?: string | undefined;
|
|
149940
149238
|
mustBeConnected?: boolean | undefined;
|
|
149941
|
-
isI2cSda?: boolean | undefined;
|
|
149942
|
-
isI2cScl?: boolean | undefined;
|
|
149943
|
-
isSpiMosi?: boolean | undefined;
|
|
149944
|
-
isSpiMiso?: boolean | undefined;
|
|
149945
|
-
isSpiSck?: boolean | undefined;
|
|
149946
|
-
isSpiCs?: boolean | undefined;
|
|
149947
|
-
isUartTx?: boolean | undefined;
|
|
149948
|
-
isUartRx?: boolean | undefined;
|
|
149949
149239
|
canUseInternalPullup?: boolean | undefined;
|
|
149950
149240
|
isUsingInternalPullup?: boolean | undefined;
|
|
149951
149241
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -150030,6 +149320,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150030
149320
|
displayName?: string | undefined;
|
|
150031
149321
|
datasheetUrl?: string | undefined;
|
|
150032
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;
|
|
150033
149326
|
providesPower?: boolean | undefined;
|
|
150034
149327
|
requiresPower?: boolean | undefined;
|
|
150035
149328
|
providesGround?: boolean | undefined;
|
|
@@ -150040,14 +149333,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150040
149333
|
includeInBoardPinout?: boolean | undefined;
|
|
150041
149334
|
highlightColor?: string | undefined;
|
|
150042
149335
|
mustBeConnected?: boolean | undefined;
|
|
150043
|
-
isI2cSda?: boolean | undefined;
|
|
150044
|
-
isI2cScl?: boolean | undefined;
|
|
150045
|
-
isSpiMosi?: boolean | undefined;
|
|
150046
|
-
isSpiMiso?: boolean | undefined;
|
|
150047
|
-
isSpiSck?: boolean | undefined;
|
|
150048
|
-
isSpiCs?: boolean | undefined;
|
|
150049
|
-
isUartTx?: boolean | undefined;
|
|
150050
|
-
isUartRx?: boolean | undefined;
|
|
150051
149336
|
canUseInternalPullup?: boolean | undefined;
|
|
150052
149337
|
isUsingInternalPullup?: boolean | undefined;
|
|
150053
149338
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -150562,6 +149847,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150562
149847
|
displayName?: string | undefined;
|
|
150563
149848
|
datasheetUrl?: string | undefined;
|
|
150564
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;
|
|
150565
149853
|
providesPower?: boolean | undefined;
|
|
150566
149854
|
requiresPower?: boolean | undefined;
|
|
150567
149855
|
providesGround?: boolean | undefined;
|
|
@@ -150572,14 +149860,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150572
149860
|
includeInBoardPinout?: boolean | undefined;
|
|
150573
149861
|
highlightColor?: string | undefined;
|
|
150574
149862
|
mustBeConnected?: boolean | undefined;
|
|
150575
|
-
isI2cSda?: boolean | undefined;
|
|
150576
|
-
isI2cScl?: boolean | undefined;
|
|
150577
|
-
isSpiMosi?: boolean | undefined;
|
|
150578
|
-
isSpiMiso?: boolean | undefined;
|
|
150579
|
-
isSpiSck?: boolean | undefined;
|
|
150580
|
-
isSpiCs?: boolean | undefined;
|
|
150581
|
-
isUartTx?: boolean | undefined;
|
|
150582
|
-
isUartRx?: boolean | undefined;
|
|
150583
149863
|
canUseInternalPullup?: boolean | undefined;
|
|
150584
149864
|
isUsingInternalPullup?: boolean | undefined;
|
|
150585
149865
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -151094,6 +150374,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151094
150374
|
displayName?: string | undefined;
|
|
151095
150375
|
datasheetUrl?: string | undefined;
|
|
151096
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;
|
|
151097
150380
|
providesPower?: boolean | undefined;
|
|
151098
150381
|
requiresPower?: boolean | undefined;
|
|
151099
150382
|
providesGround?: boolean | undefined;
|
|
@@ -151104,14 +150387,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151104
150387
|
includeInBoardPinout?: boolean | undefined;
|
|
151105
150388
|
highlightColor?: string | undefined;
|
|
151106
150389
|
mustBeConnected?: boolean | undefined;
|
|
151107
|
-
isI2cSda?: boolean | undefined;
|
|
151108
|
-
isI2cScl?: boolean | undefined;
|
|
151109
|
-
isSpiMosi?: boolean | undefined;
|
|
151110
|
-
isSpiMiso?: boolean | undefined;
|
|
151111
|
-
isSpiSck?: boolean | undefined;
|
|
151112
|
-
isSpiCs?: boolean | undefined;
|
|
151113
|
-
isUartTx?: boolean | undefined;
|
|
151114
|
-
isUartRx?: boolean | undefined;
|
|
151115
150390
|
canUseInternalPullup?: boolean | undefined;
|
|
151116
150391
|
isUsingInternalPullup?: boolean | undefined;
|
|
151117
150392
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -151626,6 +150901,9 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151626
150901
|
displayName?: string | undefined;
|
|
151627
150902
|
datasheetUrl?: string | undefined;
|
|
151628
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;
|
|
151629
150907
|
providesPower?: boolean | undefined;
|
|
151630
150908
|
requiresPower?: boolean | undefined;
|
|
151631
150909
|
providesGround?: boolean | undefined;
|
|
@@ -151636,14 +150914,6 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151636
150914
|
includeInBoardPinout?: boolean | undefined;
|
|
151637
150915
|
highlightColor?: string | undefined;
|
|
151638
150916
|
mustBeConnected?: boolean | undefined;
|
|
151639
|
-
isI2cSda?: boolean | undefined;
|
|
151640
|
-
isI2cScl?: boolean | undefined;
|
|
151641
|
-
isSpiMosi?: boolean | undefined;
|
|
151642
|
-
isSpiMiso?: boolean | undefined;
|
|
151643
|
-
isSpiSck?: boolean | undefined;
|
|
151644
|
-
isSpiCs?: boolean | undefined;
|
|
151645
|
-
isUartTx?: boolean | undefined;
|
|
151646
|
-
isUartRx?: boolean | undefined;
|
|
151647
150917
|
canUseInternalPullup?: boolean | undefined;
|
|
151648
150918
|
isUsingInternalPullup?: boolean | undefined;
|
|
151649
150919
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -156383,6 +155653,9 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156383
155653
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
156384
155654
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
156385
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"]>>;
|
|
156386
155659
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
156387
155660
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
156388
155661
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -156393,14 +155666,6 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156393
155666
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
156394
155667
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
156395
155668
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
156396
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
156397
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
156398
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
156399
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
156400
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
156401
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
156402
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
156403
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
156404
155669
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
156405
155670
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
156406
155671
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -156412,6 +155677,9 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156412
155677
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
156413
155678
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
156414
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;
|
|
156415
155683
|
providesPower?: boolean | undefined;
|
|
156416
155684
|
requiresPower?: boolean | undefined;
|
|
156417
155685
|
providesGround?: boolean | undefined;
|
|
@@ -156422,14 +155690,6 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156422
155690
|
includeInBoardPinout?: boolean | undefined;
|
|
156423
155691
|
highlightColor?: string | undefined;
|
|
156424
155692
|
mustBeConnected?: boolean | undefined;
|
|
156425
|
-
isI2cSda?: boolean | undefined;
|
|
156426
|
-
isI2cScl?: boolean | undefined;
|
|
156427
|
-
isSpiMosi?: boolean | undefined;
|
|
156428
|
-
isSpiMiso?: boolean | undefined;
|
|
156429
|
-
isSpiSck?: boolean | undefined;
|
|
156430
|
-
isSpiCs?: boolean | undefined;
|
|
156431
|
-
isUartTx?: boolean | undefined;
|
|
156432
|
-
isUartRx?: boolean | undefined;
|
|
156433
155693
|
canUseInternalPullup?: boolean | undefined;
|
|
156434
155694
|
isUsingInternalPullup?: boolean | undefined;
|
|
156435
155695
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -156441,6 +155701,9 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156441
155701
|
canUsePushPull?: boolean | undefined;
|
|
156442
155702
|
isUsingPushPull?: boolean | undefined;
|
|
156443
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;
|
|
156444
155707
|
providesPower?: boolean | undefined;
|
|
156445
155708
|
requiresPower?: boolean | undefined;
|
|
156446
155709
|
providesGround?: boolean | undefined;
|
|
@@ -156451,14 +155714,6 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156451
155714
|
includeInBoardPinout?: boolean | undefined;
|
|
156452
155715
|
highlightColor?: string | undefined;
|
|
156453
155716
|
mustBeConnected?: boolean | undefined;
|
|
156454
|
-
isI2cSda?: boolean | undefined;
|
|
156455
|
-
isI2cScl?: boolean | undefined;
|
|
156456
|
-
isSpiMosi?: boolean | undefined;
|
|
156457
|
-
isSpiMiso?: boolean | undefined;
|
|
156458
|
-
isSpiSck?: boolean | undefined;
|
|
156459
|
-
isSpiCs?: boolean | undefined;
|
|
156460
|
-
isUartTx?: boolean | undefined;
|
|
156461
|
-
isUartRx?: boolean | undefined;
|
|
156462
155717
|
canUseInternalPullup?: boolean | undefined;
|
|
156463
155718
|
isUsingInternalPullup?: boolean | undefined;
|
|
156464
155719
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -156531,6 +155786,9 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156531
155786
|
displayName?: string | undefined;
|
|
156532
155787
|
datasheetUrl?: string | undefined;
|
|
156533
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;
|
|
156534
155792
|
providesPower?: boolean | undefined;
|
|
156535
155793
|
requiresPower?: boolean | undefined;
|
|
156536
155794
|
providesGround?: boolean | undefined;
|
|
@@ -156541,14 +155799,6 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156541
155799
|
includeInBoardPinout?: boolean | undefined;
|
|
156542
155800
|
highlightColor?: string | undefined;
|
|
156543
155801
|
mustBeConnected?: boolean | undefined;
|
|
156544
|
-
isI2cSda?: boolean | undefined;
|
|
156545
|
-
isI2cScl?: boolean | undefined;
|
|
156546
|
-
isSpiMosi?: boolean | undefined;
|
|
156547
|
-
isSpiMiso?: boolean | undefined;
|
|
156548
|
-
isSpiSck?: boolean | undefined;
|
|
156549
|
-
isSpiCs?: boolean | undefined;
|
|
156550
|
-
isUartTx?: boolean | undefined;
|
|
156551
|
-
isUartRx?: boolean | undefined;
|
|
156552
155802
|
canUseInternalPullup?: boolean | undefined;
|
|
156553
155803
|
isUsingInternalPullup?: boolean | undefined;
|
|
156554
155804
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -157056,6 +156306,9 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
157056
156306
|
displayName?: string | undefined;
|
|
157057
156307
|
datasheetUrl?: string | undefined;
|
|
157058
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;
|
|
157059
156312
|
providesPower?: boolean | undefined;
|
|
157060
156313
|
requiresPower?: boolean | undefined;
|
|
157061
156314
|
providesGround?: boolean | undefined;
|
|
@@ -157066,14 +156319,6 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
157066
156319
|
includeInBoardPinout?: boolean | undefined;
|
|
157067
156320
|
highlightColor?: string | undefined;
|
|
157068
156321
|
mustBeConnected?: boolean | undefined;
|
|
157069
|
-
isI2cSda?: boolean | undefined;
|
|
157070
|
-
isI2cScl?: boolean | undefined;
|
|
157071
|
-
isSpiMosi?: boolean | undefined;
|
|
157072
|
-
isSpiMiso?: boolean | undefined;
|
|
157073
|
-
isSpiSck?: boolean | undefined;
|
|
157074
|
-
isSpiCs?: boolean | undefined;
|
|
157075
|
-
isUartTx?: boolean | undefined;
|
|
157076
|
-
isUartRx?: boolean | undefined;
|
|
157077
156322
|
canUseInternalPullup?: boolean | undefined;
|
|
157078
156323
|
isUsingInternalPullup?: boolean | undefined;
|
|
157079
156324
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -160589,6 +159834,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160589
159834
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
160590
159835
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
160591
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"]>>;
|
|
160592
159840
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
160593
159841
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
160594
159842
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -160599,14 +159847,6 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160599
159847
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
160600
159848
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
160601
159849
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
160602
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
160603
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
160604
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
160605
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
160606
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
160607
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
160608
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
160609
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
160610
159850
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
160611
159851
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
160612
159852
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -160618,6 +159858,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160618
159858
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160619
159859
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160620
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;
|
|
160621
159864
|
providesPower?: boolean | undefined;
|
|
160622
159865
|
requiresPower?: boolean | undefined;
|
|
160623
159866
|
providesGround?: boolean | undefined;
|
|
@@ -160628,14 +159871,6 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160628
159871
|
includeInBoardPinout?: boolean | undefined;
|
|
160629
159872
|
highlightColor?: string | undefined;
|
|
160630
159873
|
mustBeConnected?: boolean | undefined;
|
|
160631
|
-
isI2cSda?: boolean | undefined;
|
|
160632
|
-
isI2cScl?: boolean | undefined;
|
|
160633
|
-
isSpiMosi?: boolean | undefined;
|
|
160634
|
-
isSpiMiso?: boolean | undefined;
|
|
160635
|
-
isSpiSck?: boolean | undefined;
|
|
160636
|
-
isSpiCs?: boolean | undefined;
|
|
160637
|
-
isUartTx?: boolean | undefined;
|
|
160638
|
-
isUartRx?: boolean | undefined;
|
|
160639
159874
|
canUseInternalPullup?: boolean | undefined;
|
|
160640
159875
|
isUsingInternalPullup?: boolean | undefined;
|
|
160641
159876
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -160647,6 +159882,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160647
159882
|
canUsePushPull?: boolean | undefined;
|
|
160648
159883
|
isUsingPushPull?: boolean | undefined;
|
|
160649
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;
|
|
160650
159888
|
providesPower?: boolean | undefined;
|
|
160651
159889
|
requiresPower?: boolean | undefined;
|
|
160652
159890
|
providesGround?: boolean | undefined;
|
|
@@ -160657,14 +159895,6 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160657
159895
|
includeInBoardPinout?: boolean | undefined;
|
|
160658
159896
|
highlightColor?: string | undefined;
|
|
160659
159897
|
mustBeConnected?: boolean | undefined;
|
|
160660
|
-
isI2cSda?: boolean | undefined;
|
|
160661
|
-
isI2cScl?: boolean | undefined;
|
|
160662
|
-
isSpiMosi?: boolean | undefined;
|
|
160663
|
-
isSpiMiso?: boolean | undefined;
|
|
160664
|
-
isSpiSck?: boolean | undefined;
|
|
160665
|
-
isSpiCs?: boolean | undefined;
|
|
160666
|
-
isUartTx?: boolean | undefined;
|
|
160667
|
-
isUartRx?: boolean | undefined;
|
|
160668
159898
|
canUseInternalPullup?: boolean | undefined;
|
|
160669
159899
|
isUsingInternalPullup?: boolean | undefined;
|
|
160670
159900
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -160742,6 +159972,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160742
159972
|
displayName?: string | undefined;
|
|
160743
159973
|
datasheetUrl?: string | undefined;
|
|
160744
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;
|
|
160745
159978
|
providesPower?: boolean | undefined;
|
|
160746
159979
|
requiresPower?: boolean | undefined;
|
|
160747
159980
|
providesGround?: boolean | undefined;
|
|
@@ -160752,14 +159985,6 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160752
159985
|
includeInBoardPinout?: boolean | undefined;
|
|
160753
159986
|
highlightColor?: string | undefined;
|
|
160754
159987
|
mustBeConnected?: boolean | undefined;
|
|
160755
|
-
isI2cSda?: boolean | undefined;
|
|
160756
|
-
isI2cScl?: boolean | undefined;
|
|
160757
|
-
isSpiMosi?: boolean | undefined;
|
|
160758
|
-
isSpiMiso?: boolean | undefined;
|
|
160759
|
-
isSpiSck?: boolean | undefined;
|
|
160760
|
-
isSpiCs?: boolean | undefined;
|
|
160761
|
-
isUartTx?: boolean | undefined;
|
|
160762
|
-
isUartRx?: boolean | undefined;
|
|
160763
159988
|
canUseInternalPullup?: boolean | undefined;
|
|
160764
159989
|
isUsingInternalPullup?: boolean | undefined;
|
|
160765
159990
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -161273,6 +160498,9 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
161273
160498
|
displayName?: string | undefined;
|
|
161274
160499
|
datasheetUrl?: string | undefined;
|
|
161275
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;
|
|
161276
160504
|
providesPower?: boolean | undefined;
|
|
161277
160505
|
requiresPower?: boolean | undefined;
|
|
161278
160506
|
providesGround?: boolean | undefined;
|
|
@@ -161283,14 +160511,6 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
161283
160511
|
includeInBoardPinout?: boolean | undefined;
|
|
161284
160512
|
highlightColor?: string | undefined;
|
|
161285
160513
|
mustBeConnected?: boolean | undefined;
|
|
161286
|
-
isI2cSda?: boolean | undefined;
|
|
161287
|
-
isI2cScl?: boolean | undefined;
|
|
161288
|
-
isSpiMosi?: boolean | undefined;
|
|
161289
|
-
isSpiMiso?: boolean | undefined;
|
|
161290
|
-
isSpiSck?: boolean | undefined;
|
|
161291
|
-
isSpiCs?: boolean | undefined;
|
|
161292
|
-
isUartTx?: boolean | undefined;
|
|
161293
|
-
isUartRx?: boolean | undefined;
|
|
161294
160514
|
canUseInternalPullup?: boolean | undefined;
|
|
161295
160515
|
isUsingInternalPullup?: boolean | undefined;
|
|
161296
160516
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -164812,6 +164032,9 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164812
164032
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
164813
164033
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
164814
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"]>>;
|
|
164815
164038
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
164816
164039
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
164817
164040
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -164822,14 +164045,6 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164822
164045
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
164823
164046
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
164824
164047
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
164825
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
164826
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
164827
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
164828
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
164829
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
164830
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
164831
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
164832
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
164833
164048
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
164834
164049
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
164835
164050
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -164841,6 +164056,9 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164841
164056
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164842
164057
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164843
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;
|
|
164844
164062
|
providesPower?: boolean | undefined;
|
|
164845
164063
|
requiresPower?: boolean | undefined;
|
|
164846
164064
|
providesGround?: boolean | undefined;
|
|
@@ -164851,14 +164069,6 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164851
164069
|
includeInBoardPinout?: boolean | undefined;
|
|
164852
164070
|
highlightColor?: string | undefined;
|
|
164853
164071
|
mustBeConnected?: boolean | undefined;
|
|
164854
|
-
isI2cSda?: boolean | undefined;
|
|
164855
|
-
isI2cScl?: boolean | undefined;
|
|
164856
|
-
isSpiMosi?: boolean | undefined;
|
|
164857
|
-
isSpiMiso?: boolean | undefined;
|
|
164858
|
-
isSpiSck?: boolean | undefined;
|
|
164859
|
-
isSpiCs?: boolean | undefined;
|
|
164860
|
-
isUartTx?: boolean | undefined;
|
|
164861
|
-
isUartRx?: boolean | undefined;
|
|
164862
164072
|
canUseInternalPullup?: boolean | undefined;
|
|
164863
164073
|
isUsingInternalPullup?: boolean | undefined;
|
|
164864
164074
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -164870,6 +164080,9 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164870
164080
|
canUsePushPull?: boolean | undefined;
|
|
164871
164081
|
isUsingPushPull?: boolean | undefined;
|
|
164872
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;
|
|
164873
164086
|
providesPower?: boolean | undefined;
|
|
164874
164087
|
requiresPower?: boolean | undefined;
|
|
164875
164088
|
providesGround?: boolean | undefined;
|
|
@@ -164880,14 +164093,6 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164880
164093
|
includeInBoardPinout?: boolean | undefined;
|
|
164881
164094
|
highlightColor?: string | undefined;
|
|
164882
164095
|
mustBeConnected?: boolean | undefined;
|
|
164883
|
-
isI2cSda?: boolean | undefined;
|
|
164884
|
-
isI2cScl?: boolean | undefined;
|
|
164885
|
-
isSpiMosi?: boolean | undefined;
|
|
164886
|
-
isSpiMiso?: boolean | undefined;
|
|
164887
|
-
isSpiSck?: boolean | undefined;
|
|
164888
|
-
isSpiCs?: boolean | undefined;
|
|
164889
|
-
isUartTx?: boolean | undefined;
|
|
164890
|
-
isUartRx?: boolean | undefined;
|
|
164891
164096
|
canUseInternalPullup?: boolean | undefined;
|
|
164892
164097
|
isUsingInternalPullup?: boolean | undefined;
|
|
164893
164098
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -164965,6 +164170,9 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164965
164170
|
displayName?: string | undefined;
|
|
164966
164171
|
datasheetUrl?: string | undefined;
|
|
164967
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;
|
|
164968
164176
|
providesPower?: boolean | undefined;
|
|
164969
164177
|
requiresPower?: boolean | undefined;
|
|
164970
164178
|
providesGround?: boolean | undefined;
|
|
@@ -164975,14 +164183,6 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164975
164183
|
includeInBoardPinout?: boolean | undefined;
|
|
164976
164184
|
highlightColor?: string | undefined;
|
|
164977
164185
|
mustBeConnected?: boolean | undefined;
|
|
164978
|
-
isI2cSda?: boolean | undefined;
|
|
164979
|
-
isI2cScl?: boolean | undefined;
|
|
164980
|
-
isSpiMosi?: boolean | undefined;
|
|
164981
|
-
isSpiMiso?: boolean | undefined;
|
|
164982
|
-
isSpiSck?: boolean | undefined;
|
|
164983
|
-
isSpiCs?: boolean | undefined;
|
|
164984
|
-
isUartTx?: boolean | undefined;
|
|
164985
|
-
isUartRx?: boolean | undefined;
|
|
164986
164186
|
canUseInternalPullup?: boolean | undefined;
|
|
164987
164187
|
isUsingInternalPullup?: boolean | undefined;
|
|
164988
164188
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -165496,6 +164696,9 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
165496
164696
|
displayName?: string | undefined;
|
|
165497
164697
|
datasheetUrl?: string | undefined;
|
|
165498
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;
|
|
165499
164702
|
providesPower?: boolean | undefined;
|
|
165500
164703
|
requiresPower?: boolean | undefined;
|
|
165501
164704
|
providesGround?: boolean | undefined;
|
|
@@ -165506,14 +164709,6 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
165506
164709
|
includeInBoardPinout?: boolean | undefined;
|
|
165507
164710
|
highlightColor?: string | undefined;
|
|
165508
164711
|
mustBeConnected?: boolean | undefined;
|
|
165509
|
-
isI2cSda?: boolean | undefined;
|
|
165510
|
-
isI2cScl?: boolean | undefined;
|
|
165511
|
-
isSpiMosi?: boolean | undefined;
|
|
165512
|
-
isSpiMiso?: boolean | undefined;
|
|
165513
|
-
isSpiSck?: boolean | undefined;
|
|
165514
|
-
isSpiCs?: boolean | undefined;
|
|
165515
|
-
isUartTx?: boolean | undefined;
|
|
165516
|
-
isUartRx?: boolean | undefined;
|
|
165517
164712
|
canUseInternalPullup?: boolean | undefined;
|
|
165518
164713
|
isUsingInternalPullup?: boolean | undefined;
|
|
165519
164714
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -169030,6 +168225,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169030
168225
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
169031
168226
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
169032
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"]>>;
|
|
169033
168231
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
169034
168232
|
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
169035
168233
|
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -169040,14 +168238,6 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169040
168238
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
169041
168239
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
169042
168240
|
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
169043
|
-
isI2cSda: z.ZodOptional<z.ZodBoolean>;
|
|
169044
|
-
isI2cScl: z.ZodOptional<z.ZodBoolean>;
|
|
169045
|
-
isSpiMosi: z.ZodOptional<z.ZodBoolean>;
|
|
169046
|
-
isSpiMiso: z.ZodOptional<z.ZodBoolean>;
|
|
169047
|
-
isSpiSck: z.ZodOptional<z.ZodBoolean>;
|
|
169048
|
-
isSpiCs: z.ZodOptional<z.ZodBoolean>;
|
|
169049
|
-
isUartTx: z.ZodOptional<z.ZodBoolean>;
|
|
169050
|
-
isUartRx: z.ZodOptional<z.ZodBoolean>;
|
|
169051
168241
|
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
169052
168242
|
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
169053
168243
|
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -169059,6 +168249,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169059
168249
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
169060
168250
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
169061
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;
|
|
169062
168255
|
providesPower?: boolean | undefined;
|
|
169063
168256
|
requiresPower?: boolean | undefined;
|
|
169064
168257
|
providesGround?: boolean | undefined;
|
|
@@ -169069,14 +168262,6 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169069
168262
|
includeInBoardPinout?: boolean | undefined;
|
|
169070
168263
|
highlightColor?: string | undefined;
|
|
169071
168264
|
mustBeConnected?: boolean | undefined;
|
|
169072
|
-
isI2cSda?: boolean | undefined;
|
|
169073
|
-
isI2cScl?: boolean | undefined;
|
|
169074
|
-
isSpiMosi?: boolean | undefined;
|
|
169075
|
-
isSpiMiso?: boolean | undefined;
|
|
169076
|
-
isSpiSck?: boolean | undefined;
|
|
169077
|
-
isSpiCs?: boolean | undefined;
|
|
169078
|
-
isUartTx?: boolean | undefined;
|
|
169079
|
-
isUartRx?: boolean | undefined;
|
|
169080
168265
|
canUseInternalPullup?: boolean | undefined;
|
|
169081
168266
|
isUsingInternalPullup?: boolean | undefined;
|
|
169082
168267
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -169088,6 +168273,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169088
168273
|
canUsePushPull?: boolean | undefined;
|
|
169089
168274
|
isUsingPushPull?: boolean | undefined;
|
|
169090
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;
|
|
169091
168279
|
providesPower?: boolean | undefined;
|
|
169092
168280
|
requiresPower?: boolean | undefined;
|
|
169093
168281
|
providesGround?: boolean | undefined;
|
|
@@ -169098,14 +168286,6 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169098
168286
|
includeInBoardPinout?: boolean | undefined;
|
|
169099
168287
|
highlightColor?: string | undefined;
|
|
169100
168288
|
mustBeConnected?: boolean | undefined;
|
|
169101
|
-
isI2cSda?: boolean | undefined;
|
|
169102
|
-
isI2cScl?: boolean | undefined;
|
|
169103
|
-
isSpiMosi?: boolean | undefined;
|
|
169104
|
-
isSpiMiso?: boolean | undefined;
|
|
169105
|
-
isSpiSck?: boolean | undefined;
|
|
169106
|
-
isSpiCs?: boolean | undefined;
|
|
169107
|
-
isUartTx?: boolean | undefined;
|
|
169108
|
-
isUartRx?: boolean | undefined;
|
|
169109
168289
|
canUseInternalPullup?: boolean | undefined;
|
|
169110
168290
|
isUsingInternalPullup?: boolean | undefined;
|
|
169111
168291
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -169181,6 +168361,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169181
168361
|
displayName?: string | undefined;
|
|
169182
168362
|
datasheetUrl?: string | undefined;
|
|
169183
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;
|
|
169184
168367
|
providesPower?: boolean | undefined;
|
|
169185
168368
|
requiresPower?: boolean | undefined;
|
|
169186
168369
|
providesGround?: boolean | undefined;
|
|
@@ -169191,14 +168374,6 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169191
168374
|
includeInBoardPinout?: boolean | undefined;
|
|
169192
168375
|
highlightColor?: string | undefined;
|
|
169193
168376
|
mustBeConnected?: boolean | undefined;
|
|
169194
|
-
isI2cSda?: boolean | undefined;
|
|
169195
|
-
isI2cScl?: boolean | undefined;
|
|
169196
|
-
isSpiMosi?: boolean | undefined;
|
|
169197
|
-
isSpiMiso?: boolean | undefined;
|
|
169198
|
-
isSpiSck?: boolean | undefined;
|
|
169199
|
-
isSpiCs?: boolean | undefined;
|
|
169200
|
-
isUartTx?: boolean | undefined;
|
|
169201
|
-
isUartRx?: boolean | undefined;
|
|
169202
168377
|
canUseInternalPullup?: boolean | undefined;
|
|
169203
168378
|
isUsingInternalPullup?: boolean | undefined;
|
|
169204
168379
|
needsExternalPullup?: boolean | undefined;
|
|
@@ -169708,6 +168883,9 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169708
168883
|
displayName?: string | undefined;
|
|
169709
168884
|
datasheetUrl?: string | undefined;
|
|
169710
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;
|
|
169711
168889
|
providesPower?: boolean | undefined;
|
|
169712
168890
|
requiresPower?: boolean | undefined;
|
|
169713
168891
|
providesGround?: boolean | undefined;
|
|
@@ -169718,14 +168896,6 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169718
168896
|
includeInBoardPinout?: boolean | undefined;
|
|
169719
168897
|
highlightColor?: string | undefined;
|
|
169720
168898
|
mustBeConnected?: boolean | undefined;
|
|
169721
|
-
isI2cSda?: boolean | undefined;
|
|
169722
|
-
isI2cScl?: boolean | undefined;
|
|
169723
|
-
isSpiMosi?: boolean | undefined;
|
|
169724
|
-
isSpiMiso?: boolean | undefined;
|
|
169725
|
-
isSpiSck?: boolean | undefined;
|
|
169726
|
-
isSpiCs?: boolean | undefined;
|
|
169727
|
-
isUartTx?: boolean | undefined;
|
|
169728
|
-
isUartRx?: boolean | undefined;
|
|
169729
168899
|
canUseInternalPullup?: boolean | undefined;
|
|
169730
168900
|
isUsingInternalPullup?: boolean | undefined;
|
|
169731
168901
|
needsExternalPullup?: boolean | undefined;
|