@tscircuit/props 0.0.649 → 0.0.650
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 +1810 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/lib/common/pinAttributeMap.ts +30 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8251,6 +8251,26 @@ declare const pcbSx: z.ZodType<PcbSx>;
|
|
|
8251
8251
|
declare const pinCapability: z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>;
|
|
8252
8252
|
type PinCapability = z.input<typeof pinCapability>;
|
|
8253
8253
|
interface PinAttributeMap {
|
|
8254
|
+
/** Whether the pin accepts a signal. */
|
|
8255
|
+
isInput?: boolean;
|
|
8256
|
+
/** Whether the pin drives a signal. */
|
|
8257
|
+
isOutput?: boolean;
|
|
8258
|
+
/** Whether the pin can both accept and drive signals. */
|
|
8259
|
+
isBidirectional?: boolean;
|
|
8260
|
+
/** Whether the pin is a passive component terminal. */
|
|
8261
|
+
isPassive?: boolean;
|
|
8262
|
+
/** Whether the pin supports a high-impedance output state. */
|
|
8263
|
+
canUseTriState?: boolean;
|
|
8264
|
+
/** Whether the pin is configured for tri-state operation, not its instantaneous impedance. */
|
|
8265
|
+
isUsingTriState?: boolean;
|
|
8266
|
+
/** Whether the pin supports an open-collector output. */
|
|
8267
|
+
canUseOpenCollector?: boolean;
|
|
8268
|
+
/** Whether the pin is configured as an open-collector output. */
|
|
8269
|
+
isUsingOpenCollector?: boolean;
|
|
8270
|
+
/** Whether the pin supports an open-emitter output. */
|
|
8271
|
+
canUseOpenEmitter?: boolean;
|
|
8272
|
+
/** Whether the pin is configured as an open-emitter output. */
|
|
8273
|
+
isUsingOpenEmitter?: boolean;
|
|
8254
8274
|
capabilities?: Array<PinCapability>;
|
|
8255
8275
|
activeCapabilities?: Array<PinCapability>;
|
|
8256
8276
|
activeCapability?: PinCapability;
|
|
@@ -8279,6 +8299,16 @@ interface PinAttributeMap {
|
|
|
8279
8299
|
isGpio?: boolean;
|
|
8280
8300
|
}
|
|
8281
8301
|
declare const pinAttributeMap: z.ZodObject<{
|
|
8302
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
8303
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
8304
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
8305
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
8306
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
8307
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
8308
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
8309
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
8310
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
8311
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
8282
8312
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
8283
8313
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
8284
8314
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -8306,6 +8336,16 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
8306
8336
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
8307
8337
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
8308
8338
|
}, "strip", z.ZodTypeAny, {
|
|
8339
|
+
isInput?: boolean | undefined;
|
|
8340
|
+
isOutput?: boolean | undefined;
|
|
8341
|
+
isBidirectional?: boolean | undefined;
|
|
8342
|
+
isPassive?: boolean | undefined;
|
|
8343
|
+
canUseTriState?: boolean | undefined;
|
|
8344
|
+
isUsingTriState?: boolean | undefined;
|
|
8345
|
+
canUseOpenCollector?: boolean | undefined;
|
|
8346
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
8347
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
8348
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
8309
8349
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
8310
8350
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
8311
8351
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -8333,6 +8373,16 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
8333
8373
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
8334
8374
|
isGpio?: boolean | undefined;
|
|
8335
8375
|
}, {
|
|
8376
|
+
isInput?: boolean | undefined;
|
|
8377
|
+
isOutput?: boolean | undefined;
|
|
8378
|
+
isBidirectional?: boolean | undefined;
|
|
8379
|
+
isPassive?: boolean | undefined;
|
|
8380
|
+
canUseTriState?: boolean | undefined;
|
|
8381
|
+
isUsingTriState?: boolean | undefined;
|
|
8382
|
+
canUseOpenCollector?: boolean | undefined;
|
|
8383
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
8384
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
8385
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
8336
8386
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
8337
8387
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
8338
8388
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -12636,6 +12686,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
12636
12686
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
12637
12687
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
12638
12688
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12689
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
12690
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
12691
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
12692
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
12693
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
12694
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
12695
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
12696
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
12697
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
12698
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
12639
12699
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
12640
12700
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
12641
12701
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -12663,6 +12723,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
12663
12723
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12664
12724
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
12665
12725
|
}, "strip", z.ZodTypeAny, {
|
|
12726
|
+
isInput?: boolean | undefined;
|
|
12727
|
+
isOutput?: boolean | undefined;
|
|
12728
|
+
isBidirectional?: boolean | undefined;
|
|
12729
|
+
isPassive?: boolean | undefined;
|
|
12730
|
+
canUseTriState?: boolean | undefined;
|
|
12731
|
+
isUsingTriState?: boolean | undefined;
|
|
12732
|
+
canUseOpenCollector?: boolean | undefined;
|
|
12733
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
12734
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
12735
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
12666
12736
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
12667
12737
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
12668
12738
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -12690,6 +12760,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
12690
12760
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
12691
12761
|
isGpio?: boolean | undefined;
|
|
12692
12762
|
}, {
|
|
12763
|
+
isInput?: boolean | undefined;
|
|
12764
|
+
isOutput?: boolean | undefined;
|
|
12765
|
+
isBidirectional?: boolean | undefined;
|
|
12766
|
+
isPassive?: boolean | undefined;
|
|
12767
|
+
canUseTriState?: boolean | undefined;
|
|
12768
|
+
isUsingTriState?: boolean | undefined;
|
|
12769
|
+
canUseOpenCollector?: boolean | undefined;
|
|
12770
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
12771
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
12772
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
12693
12773
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
12694
12774
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
12695
12775
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -13057,6 +13137,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
13057
13137
|
displayName?: string | undefined;
|
|
13058
13138
|
datasheetUrl?: string | undefined;
|
|
13059
13139
|
pinAttributes?: Record<string, {
|
|
13140
|
+
isInput?: boolean | undefined;
|
|
13141
|
+
isOutput?: boolean | undefined;
|
|
13142
|
+
isBidirectional?: boolean | undefined;
|
|
13143
|
+
isPassive?: boolean | undefined;
|
|
13144
|
+
canUseTriState?: boolean | undefined;
|
|
13145
|
+
isUsingTriState?: boolean | undefined;
|
|
13146
|
+
canUseOpenCollector?: boolean | undefined;
|
|
13147
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
13148
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
13149
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
13060
13150
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13061
13151
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13062
13152
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -13721,6 +13811,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
13721
13811
|
displayName?: string | undefined;
|
|
13722
13812
|
datasheetUrl?: string | undefined;
|
|
13723
13813
|
pinAttributes?: Record<string, {
|
|
13814
|
+
isInput?: boolean | undefined;
|
|
13815
|
+
isOutput?: boolean | undefined;
|
|
13816
|
+
isBidirectional?: boolean | undefined;
|
|
13817
|
+
isPassive?: boolean | undefined;
|
|
13818
|
+
canUseTriState?: boolean | undefined;
|
|
13819
|
+
isUsingTriState?: boolean | undefined;
|
|
13820
|
+
canUseOpenCollector?: boolean | undefined;
|
|
13821
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
13822
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
13823
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
13724
13824
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13725
13825
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13726
13826
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -17840,6 +17940,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
17840
17940
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
17841
17941
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
17842
17942
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
17943
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
17944
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
17945
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
17946
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
17947
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
17948
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
17949
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
17950
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
17951
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
17952
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
17843
17953
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
17844
17954
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
17845
17955
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -17867,6 +17977,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
17867
17977
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
17868
17978
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
17869
17979
|
}, "strip", z.ZodTypeAny, {
|
|
17980
|
+
isInput?: boolean | undefined;
|
|
17981
|
+
isOutput?: boolean | undefined;
|
|
17982
|
+
isBidirectional?: boolean | undefined;
|
|
17983
|
+
isPassive?: boolean | undefined;
|
|
17984
|
+
canUseTriState?: boolean | undefined;
|
|
17985
|
+
isUsingTriState?: boolean | undefined;
|
|
17986
|
+
canUseOpenCollector?: boolean | undefined;
|
|
17987
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
17988
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
17989
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
17870
17990
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
17871
17991
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
17872
17992
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -17894,6 +18014,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
17894
18014
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
17895
18015
|
isGpio?: boolean | undefined;
|
|
17896
18016
|
}, {
|
|
18017
|
+
isInput?: boolean | undefined;
|
|
18018
|
+
isOutput?: boolean | undefined;
|
|
18019
|
+
isBidirectional?: boolean | undefined;
|
|
18020
|
+
isPassive?: boolean | undefined;
|
|
18021
|
+
canUseTriState?: boolean | undefined;
|
|
18022
|
+
isUsingTriState?: boolean | undefined;
|
|
18023
|
+
canUseOpenCollector?: boolean | undefined;
|
|
18024
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
18025
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
18026
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
17897
18027
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
17898
18028
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
17899
18029
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -18261,6 +18391,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
18261
18391
|
displayName?: string | undefined;
|
|
18262
18392
|
datasheetUrl?: string | undefined;
|
|
18263
18393
|
pinAttributes?: Record<string, {
|
|
18394
|
+
isInput?: boolean | undefined;
|
|
18395
|
+
isOutput?: boolean | undefined;
|
|
18396
|
+
isBidirectional?: boolean | undefined;
|
|
18397
|
+
isPassive?: boolean | undefined;
|
|
18398
|
+
canUseTriState?: boolean | undefined;
|
|
18399
|
+
isUsingTriState?: boolean | undefined;
|
|
18400
|
+
canUseOpenCollector?: boolean | undefined;
|
|
18401
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
18402
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
18403
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
18264
18404
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
18265
18405
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
18266
18406
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -18925,6 +19065,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
18925
19065
|
displayName?: string | undefined;
|
|
18926
19066
|
datasheetUrl?: string | undefined;
|
|
18927
19067
|
pinAttributes?: Record<string, {
|
|
19068
|
+
isInput?: boolean | undefined;
|
|
19069
|
+
isOutput?: boolean | undefined;
|
|
19070
|
+
isBidirectional?: boolean | undefined;
|
|
19071
|
+
isPassive?: boolean | undefined;
|
|
19072
|
+
canUseTriState?: boolean | undefined;
|
|
19073
|
+
isUsingTriState?: boolean | undefined;
|
|
19074
|
+
canUseOpenCollector?: boolean | undefined;
|
|
19075
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
19076
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
19077
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
18928
19078
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
18929
19079
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
18930
19080
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -37644,6 +37794,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37644
37794
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
37645
37795
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
37646
37796
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
37797
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
37798
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
37799
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
37800
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
37801
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
37802
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
37803
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
37804
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
37805
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
37806
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
37647
37807
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
37648
37808
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
37649
37809
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -37671,6 +37831,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37671
37831
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
37672
37832
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
37673
37833
|
}, "strip", z.ZodTypeAny, {
|
|
37834
|
+
isInput?: boolean | undefined;
|
|
37835
|
+
isOutput?: boolean | undefined;
|
|
37836
|
+
isBidirectional?: boolean | undefined;
|
|
37837
|
+
isPassive?: boolean | undefined;
|
|
37838
|
+
canUseTriState?: boolean | undefined;
|
|
37839
|
+
isUsingTriState?: boolean | undefined;
|
|
37840
|
+
canUseOpenCollector?: boolean | undefined;
|
|
37841
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
37842
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
37843
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
37674
37844
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37675
37845
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37676
37846
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -37698,6 +37868,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37698
37868
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
37699
37869
|
isGpio?: boolean | undefined;
|
|
37700
37870
|
}, {
|
|
37871
|
+
isInput?: boolean | undefined;
|
|
37872
|
+
isOutput?: boolean | undefined;
|
|
37873
|
+
isBidirectional?: boolean | undefined;
|
|
37874
|
+
isPassive?: boolean | undefined;
|
|
37875
|
+
canUseTriState?: boolean | undefined;
|
|
37876
|
+
isUsingTriState?: boolean | undefined;
|
|
37877
|
+
canUseOpenCollector?: boolean | undefined;
|
|
37878
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
37879
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
37880
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
37701
37881
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37702
37882
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37703
37883
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -38367,6 +38547,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
38367
38547
|
displayName?: string | undefined;
|
|
38368
38548
|
datasheetUrl?: string | undefined;
|
|
38369
38549
|
pinAttributes?: Record<string, {
|
|
38550
|
+
isInput?: boolean | undefined;
|
|
38551
|
+
isOutput?: boolean | undefined;
|
|
38552
|
+
isBidirectional?: boolean | undefined;
|
|
38553
|
+
isPassive?: boolean | undefined;
|
|
38554
|
+
canUseTriState?: boolean | undefined;
|
|
38555
|
+
isUsingTriState?: boolean | undefined;
|
|
38556
|
+
canUseOpenCollector?: boolean | undefined;
|
|
38557
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
38558
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
38559
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
38370
38560
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
38371
38561
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
38372
38562
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -39110,6 +39300,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
39110
39300
|
displayName?: string | undefined;
|
|
39111
39301
|
datasheetUrl?: string | undefined;
|
|
39112
39302
|
pinAttributes?: Record<string, {
|
|
39303
|
+
isInput?: boolean | undefined;
|
|
39304
|
+
isOutput?: boolean | undefined;
|
|
39305
|
+
isBidirectional?: boolean | undefined;
|
|
39306
|
+
isPassive?: boolean | undefined;
|
|
39307
|
+
canUseTriState?: boolean | undefined;
|
|
39308
|
+
isUsingTriState?: boolean | undefined;
|
|
39309
|
+
canUseOpenCollector?: boolean | undefined;
|
|
39310
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
39311
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
39312
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
39113
39313
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
39114
39314
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
39115
39315
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -43310,6 +43510,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43310
43510
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
43311
43511
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
43312
43512
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
43513
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
43514
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
43515
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
43516
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
43517
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
43518
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
43519
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
43520
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
43521
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
43522
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
43313
43523
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
43314
43524
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
43315
43525
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -43337,6 +43547,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43337
43547
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
43338
43548
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
43339
43549
|
}, "strip", z.ZodTypeAny, {
|
|
43550
|
+
isInput?: boolean | undefined;
|
|
43551
|
+
isOutput?: boolean | undefined;
|
|
43552
|
+
isBidirectional?: boolean | undefined;
|
|
43553
|
+
isPassive?: boolean | undefined;
|
|
43554
|
+
canUseTriState?: boolean | undefined;
|
|
43555
|
+
isUsingTriState?: boolean | undefined;
|
|
43556
|
+
canUseOpenCollector?: boolean | undefined;
|
|
43557
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
43558
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
43559
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
43340
43560
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43341
43561
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43342
43562
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -43364,6 +43584,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43364
43584
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
43365
43585
|
isGpio?: boolean | undefined;
|
|
43366
43586
|
}, {
|
|
43587
|
+
isInput?: boolean | undefined;
|
|
43588
|
+
isOutput?: boolean | undefined;
|
|
43589
|
+
isBidirectional?: boolean | undefined;
|
|
43590
|
+
isPassive?: boolean | undefined;
|
|
43591
|
+
canUseTriState?: boolean | undefined;
|
|
43592
|
+
isUsingTriState?: boolean | undefined;
|
|
43593
|
+
canUseOpenCollector?: boolean | undefined;
|
|
43594
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
43595
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
43596
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
43367
43597
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43368
43598
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43369
43599
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -44033,6 +44263,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
44033
44263
|
displayName?: string | undefined;
|
|
44034
44264
|
datasheetUrl?: string | undefined;
|
|
44035
44265
|
pinAttributes?: Record<string, {
|
|
44266
|
+
isInput?: boolean | undefined;
|
|
44267
|
+
isOutput?: boolean | undefined;
|
|
44268
|
+
isBidirectional?: boolean | undefined;
|
|
44269
|
+
isPassive?: boolean | undefined;
|
|
44270
|
+
canUseTriState?: boolean | undefined;
|
|
44271
|
+
isUsingTriState?: boolean | undefined;
|
|
44272
|
+
canUseOpenCollector?: boolean | undefined;
|
|
44273
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
44274
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
44275
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
44036
44276
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44037
44277
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44038
44278
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -44776,6 +45016,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
44776
45016
|
displayName?: string | undefined;
|
|
44777
45017
|
datasheetUrl?: string | undefined;
|
|
44778
45018
|
pinAttributes?: Record<string, {
|
|
45019
|
+
isInput?: boolean | undefined;
|
|
45020
|
+
isOutput?: boolean | undefined;
|
|
45021
|
+
isBidirectional?: boolean | undefined;
|
|
45022
|
+
isPassive?: boolean | undefined;
|
|
45023
|
+
canUseTriState?: boolean | undefined;
|
|
45024
|
+
isUsingTriState?: boolean | undefined;
|
|
45025
|
+
canUseOpenCollector?: boolean | undefined;
|
|
45026
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
45027
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
45028
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
44779
45029
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44780
45030
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44781
45031
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -48975,6 +49225,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
48975
49225
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
48976
49226
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
48977
49227
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
49228
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
49229
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
49230
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
49231
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
49232
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
49233
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
49234
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
49235
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
49236
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
49237
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
48978
49238
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
48979
49239
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
48980
49240
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -49002,6 +49262,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
49002
49262
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49003
49263
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
49004
49264
|
}, "strip", z.ZodTypeAny, {
|
|
49265
|
+
isInput?: boolean | undefined;
|
|
49266
|
+
isOutput?: boolean | undefined;
|
|
49267
|
+
isBidirectional?: boolean | undefined;
|
|
49268
|
+
isPassive?: boolean | undefined;
|
|
49269
|
+
canUseTriState?: boolean | undefined;
|
|
49270
|
+
isUsingTriState?: boolean | undefined;
|
|
49271
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49272
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49273
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
49274
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49005
49275
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49006
49276
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49007
49277
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -49029,6 +49299,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
49029
49299
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49030
49300
|
isGpio?: boolean | undefined;
|
|
49031
49301
|
}, {
|
|
49302
|
+
isInput?: boolean | undefined;
|
|
49303
|
+
isOutput?: boolean | undefined;
|
|
49304
|
+
isBidirectional?: boolean | undefined;
|
|
49305
|
+
isPassive?: boolean | undefined;
|
|
49306
|
+
canUseTriState?: boolean | undefined;
|
|
49307
|
+
isUsingTriState?: boolean | undefined;
|
|
49308
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49309
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49310
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
49311
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49032
49312
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49033
49313
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49034
49314
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -49698,6 +49978,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
49698
49978
|
displayName?: string | undefined;
|
|
49699
49979
|
datasheetUrl?: string | undefined;
|
|
49700
49980
|
pinAttributes?: Record<string, {
|
|
49981
|
+
isInput?: boolean | undefined;
|
|
49982
|
+
isOutput?: boolean | undefined;
|
|
49983
|
+
isBidirectional?: boolean | undefined;
|
|
49984
|
+
isPassive?: boolean | undefined;
|
|
49985
|
+
canUseTriState?: boolean | undefined;
|
|
49986
|
+
isUsingTriState?: boolean | undefined;
|
|
49987
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49988
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49989
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
49990
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49701
49991
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49702
49992
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49703
49993
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -50441,6 +50731,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
50441
50731
|
displayName?: string | undefined;
|
|
50442
50732
|
datasheetUrl?: string | undefined;
|
|
50443
50733
|
pinAttributes?: Record<string, {
|
|
50734
|
+
isInput?: boolean | undefined;
|
|
50735
|
+
isOutput?: boolean | undefined;
|
|
50736
|
+
isBidirectional?: boolean | undefined;
|
|
50737
|
+
isPassive?: boolean | undefined;
|
|
50738
|
+
canUseTriState?: boolean | undefined;
|
|
50739
|
+
isUsingTriState?: boolean | undefined;
|
|
50740
|
+
canUseOpenCollector?: boolean | undefined;
|
|
50741
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
50742
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
50743
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
50444
50744
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50445
50745
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50446
50746
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -54673,6 +54973,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54673
54973
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
54674
54974
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
54675
54975
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
54976
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
54977
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
54978
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
54979
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
54980
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
54981
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
54982
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
54983
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
54984
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
54985
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
54676
54986
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
54677
54987
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
54678
54988
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -54700,6 +55010,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54700
55010
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
54701
55011
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
54702
55012
|
}, "strip", z.ZodTypeAny, {
|
|
55013
|
+
isInput?: boolean | undefined;
|
|
55014
|
+
isOutput?: boolean | undefined;
|
|
55015
|
+
isBidirectional?: boolean | undefined;
|
|
55016
|
+
isPassive?: boolean | undefined;
|
|
55017
|
+
canUseTriState?: boolean | undefined;
|
|
55018
|
+
isUsingTriState?: boolean | undefined;
|
|
55019
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55020
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55021
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55022
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
54703
55023
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54704
55024
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54705
55025
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -54727,6 +55047,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54727
55047
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54728
55048
|
isGpio?: boolean | undefined;
|
|
54729
55049
|
}, {
|
|
55050
|
+
isInput?: boolean | undefined;
|
|
55051
|
+
isOutput?: boolean | undefined;
|
|
55052
|
+
isBidirectional?: boolean | undefined;
|
|
55053
|
+
isPassive?: boolean | undefined;
|
|
55054
|
+
canUseTriState?: boolean | undefined;
|
|
55055
|
+
isUsingTriState?: boolean | undefined;
|
|
55056
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55057
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55058
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55059
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
54730
55060
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54731
55061
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54732
55062
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -55380,6 +55710,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
55380
55710
|
displayName?: string | undefined;
|
|
55381
55711
|
datasheetUrl?: string | undefined;
|
|
55382
55712
|
pinAttributes?: Record<string, {
|
|
55713
|
+
isInput?: boolean | undefined;
|
|
55714
|
+
isOutput?: boolean | undefined;
|
|
55715
|
+
isBidirectional?: boolean | undefined;
|
|
55716
|
+
isPassive?: boolean | undefined;
|
|
55717
|
+
canUseTriState?: boolean | undefined;
|
|
55718
|
+
isUsingTriState?: boolean | undefined;
|
|
55719
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55720
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55721
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55722
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
55383
55723
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
55384
55724
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
55385
55725
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -56115,6 +56455,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
56115
56455
|
displayName?: string | undefined;
|
|
56116
56456
|
datasheetUrl?: string | undefined;
|
|
56117
56457
|
pinAttributes?: Record<string, {
|
|
56458
|
+
isInput?: boolean | undefined;
|
|
56459
|
+
isOutput?: boolean | undefined;
|
|
56460
|
+
isBidirectional?: boolean | undefined;
|
|
56461
|
+
isPassive?: boolean | undefined;
|
|
56462
|
+
canUseTriState?: boolean | undefined;
|
|
56463
|
+
isUsingTriState?: boolean | undefined;
|
|
56464
|
+
canUseOpenCollector?: boolean | undefined;
|
|
56465
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
56466
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
56467
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
56118
56468
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
56119
56469
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
56120
56470
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -60314,6 +60664,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60314
60664
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
60315
60665
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
60316
60666
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
60667
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
60668
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
60669
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
60670
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
60671
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
60672
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
60673
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
60674
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
60675
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
60676
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
60317
60677
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
60318
60678
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
60319
60679
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -60341,6 +60701,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60341
60701
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
60342
60702
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
60343
60703
|
}, "strip", z.ZodTypeAny, {
|
|
60704
|
+
isInput?: boolean | undefined;
|
|
60705
|
+
isOutput?: boolean | undefined;
|
|
60706
|
+
isBidirectional?: boolean | undefined;
|
|
60707
|
+
isPassive?: boolean | undefined;
|
|
60708
|
+
canUseTriState?: boolean | undefined;
|
|
60709
|
+
isUsingTriState?: boolean | undefined;
|
|
60710
|
+
canUseOpenCollector?: boolean | undefined;
|
|
60711
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
60712
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
60713
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
60344
60714
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60345
60715
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60346
60716
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -60368,6 +60738,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60368
60738
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
60369
60739
|
isGpio?: boolean | undefined;
|
|
60370
60740
|
}, {
|
|
60741
|
+
isInput?: boolean | undefined;
|
|
60742
|
+
isOutput?: boolean | undefined;
|
|
60743
|
+
isBidirectional?: boolean | undefined;
|
|
60744
|
+
isPassive?: boolean | undefined;
|
|
60745
|
+
canUseTriState?: boolean | undefined;
|
|
60746
|
+
isUsingTriState?: boolean | undefined;
|
|
60747
|
+
canUseOpenCollector?: boolean | undefined;
|
|
60748
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
60749
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
60750
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
60371
60751
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60372
60752
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60373
60753
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -61024,6 +61404,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
61024
61404
|
displayName?: string | undefined;
|
|
61025
61405
|
datasheetUrl?: string | undefined;
|
|
61026
61406
|
pinAttributes?: Record<string, {
|
|
61407
|
+
isInput?: boolean | undefined;
|
|
61408
|
+
isOutput?: boolean | undefined;
|
|
61409
|
+
isBidirectional?: boolean | undefined;
|
|
61410
|
+
isPassive?: boolean | undefined;
|
|
61411
|
+
canUseTriState?: boolean | undefined;
|
|
61412
|
+
isUsingTriState?: boolean | undefined;
|
|
61413
|
+
canUseOpenCollector?: boolean | undefined;
|
|
61414
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
61415
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
61416
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
61027
61417
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61028
61418
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61029
61419
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -61761,6 +62151,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
61761
62151
|
displayName?: string | undefined;
|
|
61762
62152
|
datasheetUrl?: string | undefined;
|
|
61763
62153
|
pinAttributes?: Record<string, {
|
|
62154
|
+
isInput?: boolean | undefined;
|
|
62155
|
+
isOutput?: boolean | undefined;
|
|
62156
|
+
isBidirectional?: boolean | undefined;
|
|
62157
|
+
isPassive?: boolean | undefined;
|
|
62158
|
+
canUseTriState?: boolean | undefined;
|
|
62159
|
+
isUsingTriState?: boolean | undefined;
|
|
62160
|
+
canUseOpenCollector?: boolean | undefined;
|
|
62161
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
62162
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
62163
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
61764
62164
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61765
62165
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61766
62166
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -65964,6 +66364,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
65964
66364
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
65965
66365
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
65966
66366
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
66367
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
66368
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
66369
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
66370
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
66371
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
66372
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
66373
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
66374
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
66375
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
66376
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
65967
66377
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
65968
66378
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
65969
66379
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -65991,6 +66401,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
65991
66401
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
65992
66402
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
65993
66403
|
}, "strip", z.ZodTypeAny, {
|
|
66404
|
+
isInput?: boolean | undefined;
|
|
66405
|
+
isOutput?: boolean | undefined;
|
|
66406
|
+
isBidirectional?: boolean | undefined;
|
|
66407
|
+
isPassive?: boolean | undefined;
|
|
66408
|
+
canUseTriState?: boolean | undefined;
|
|
66409
|
+
isUsingTriState?: boolean | undefined;
|
|
66410
|
+
canUseOpenCollector?: boolean | undefined;
|
|
66411
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
66412
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
66413
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
65994
66414
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
65995
66415
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
65996
66416
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -66018,6 +66438,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
66018
66438
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
66019
66439
|
isGpio?: boolean | undefined;
|
|
66020
66440
|
}, {
|
|
66441
|
+
isInput?: boolean | undefined;
|
|
66442
|
+
isOutput?: boolean | undefined;
|
|
66443
|
+
isBidirectional?: boolean | undefined;
|
|
66444
|
+
isPassive?: boolean | undefined;
|
|
66445
|
+
canUseTriState?: boolean | undefined;
|
|
66446
|
+
isUsingTriState?: boolean | undefined;
|
|
66447
|
+
canUseOpenCollector?: boolean | undefined;
|
|
66448
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
66449
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
66450
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
66021
66451
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66022
66452
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66023
66453
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -66690,6 +67120,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
66690
67120
|
displayName?: string | undefined;
|
|
66691
67121
|
datasheetUrl?: string | undefined;
|
|
66692
67122
|
pinAttributes?: Record<string, {
|
|
67123
|
+
isInput?: boolean | undefined;
|
|
67124
|
+
isOutput?: boolean | undefined;
|
|
67125
|
+
isBidirectional?: boolean | undefined;
|
|
67126
|
+
isPassive?: boolean | undefined;
|
|
67127
|
+
canUseTriState?: boolean | undefined;
|
|
67128
|
+
isUsingTriState?: boolean | undefined;
|
|
67129
|
+
canUseOpenCollector?: boolean | undefined;
|
|
67130
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
67131
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
67132
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
66693
67133
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66694
67134
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66695
67135
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -67435,6 +67875,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
67435
67875
|
displayName?: string | undefined;
|
|
67436
67876
|
datasheetUrl?: string | undefined;
|
|
67437
67877
|
pinAttributes?: Record<string, {
|
|
67878
|
+
isInput?: boolean | undefined;
|
|
67879
|
+
isOutput?: boolean | undefined;
|
|
67880
|
+
isBidirectional?: boolean | undefined;
|
|
67881
|
+
isPassive?: boolean | undefined;
|
|
67882
|
+
canUseTriState?: boolean | undefined;
|
|
67883
|
+
isUsingTriState?: boolean | undefined;
|
|
67884
|
+
canUseOpenCollector?: boolean | undefined;
|
|
67885
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
67886
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
67887
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
67438
67888
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
67439
67889
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
67440
67890
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -71646,6 +72096,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71646
72096
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
71647
72097
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
71648
72098
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
72099
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
72100
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
72101
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
72102
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
72103
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
72104
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
72105
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
72106
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
72107
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
72108
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
71649
72109
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
71650
72110
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
71651
72111
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -71673,6 +72133,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71673
72133
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
71674
72134
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
71675
72135
|
}, "strip", z.ZodTypeAny, {
|
|
72136
|
+
isInput?: boolean | undefined;
|
|
72137
|
+
isOutput?: boolean | undefined;
|
|
72138
|
+
isBidirectional?: boolean | undefined;
|
|
72139
|
+
isPassive?: boolean | undefined;
|
|
72140
|
+
canUseTriState?: boolean | undefined;
|
|
72141
|
+
isUsingTriState?: boolean | undefined;
|
|
72142
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72143
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72144
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72145
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
71676
72146
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71677
72147
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71678
72148
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -71700,6 +72170,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71700
72170
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
71701
72171
|
isGpio?: boolean | undefined;
|
|
71702
72172
|
}, {
|
|
72173
|
+
isInput?: boolean | undefined;
|
|
72174
|
+
isOutput?: boolean | undefined;
|
|
72175
|
+
isBidirectional?: boolean | undefined;
|
|
72176
|
+
isPassive?: boolean | undefined;
|
|
72177
|
+
canUseTriState?: boolean | undefined;
|
|
72178
|
+
isUsingTriState?: boolean | undefined;
|
|
72179
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72180
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72181
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72182
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
71703
72183
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71704
72184
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71705
72185
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -72071,6 +72551,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
72071
72551
|
displayName?: string | undefined;
|
|
72072
72552
|
datasheetUrl?: string | undefined;
|
|
72073
72553
|
pinAttributes?: Record<string, {
|
|
72554
|
+
isInput?: boolean | undefined;
|
|
72555
|
+
isOutput?: boolean | undefined;
|
|
72556
|
+
isBidirectional?: boolean | undefined;
|
|
72557
|
+
isPassive?: boolean | undefined;
|
|
72558
|
+
canUseTriState?: boolean | undefined;
|
|
72559
|
+
isUsingTriState?: boolean | undefined;
|
|
72560
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72561
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72562
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72563
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
72074
72564
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72075
72565
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72076
72566
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -72738,6 +73228,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
72738
73228
|
displayName?: string | undefined;
|
|
72739
73229
|
datasheetUrl?: string | undefined;
|
|
72740
73230
|
pinAttributes?: Record<string, {
|
|
73231
|
+
isInput?: boolean | undefined;
|
|
73232
|
+
isOutput?: boolean | undefined;
|
|
73233
|
+
isBidirectional?: boolean | undefined;
|
|
73234
|
+
isPassive?: boolean | undefined;
|
|
73235
|
+
canUseTriState?: boolean | undefined;
|
|
73236
|
+
isUsingTriState?: boolean | undefined;
|
|
73237
|
+
canUseOpenCollector?: boolean | undefined;
|
|
73238
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
73239
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
73240
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
72741
73241
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72742
73242
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72743
73243
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -76888,6 +77388,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76888
77388
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
76889
77389
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
76890
77390
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
77391
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
77392
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
77393
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
77394
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
77395
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
77396
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
77397
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
77398
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
77399
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
77400
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
76891
77401
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
76892
77402
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
76893
77403
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -76915,6 +77425,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76915
77425
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
76916
77426
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
76917
77427
|
}, "strip", z.ZodTypeAny, {
|
|
77428
|
+
isInput?: boolean | undefined;
|
|
77429
|
+
isOutput?: boolean | undefined;
|
|
77430
|
+
isBidirectional?: boolean | undefined;
|
|
77431
|
+
isPassive?: boolean | undefined;
|
|
77432
|
+
canUseTriState?: boolean | undefined;
|
|
77433
|
+
isUsingTriState?: boolean | undefined;
|
|
77434
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77435
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77436
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77437
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
76918
77438
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76919
77439
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76920
77440
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -76942,6 +77462,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76942
77462
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
76943
77463
|
isGpio?: boolean | undefined;
|
|
76944
77464
|
}, {
|
|
77465
|
+
isInput?: boolean | undefined;
|
|
77466
|
+
isOutput?: boolean | undefined;
|
|
77467
|
+
isBidirectional?: boolean | undefined;
|
|
77468
|
+
isPassive?: boolean | undefined;
|
|
77469
|
+
canUseTriState?: boolean | undefined;
|
|
77470
|
+
isUsingTriState?: boolean | undefined;
|
|
77471
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77472
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77473
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77474
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
76945
77475
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76946
77476
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76947
77477
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -77316,6 +77846,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
77316
77846
|
displayName?: string | undefined;
|
|
77317
77847
|
datasheetUrl?: string | undefined;
|
|
77318
77848
|
pinAttributes?: Record<string, {
|
|
77849
|
+
isInput?: boolean | undefined;
|
|
77850
|
+
isOutput?: boolean | undefined;
|
|
77851
|
+
isBidirectional?: boolean | undefined;
|
|
77852
|
+
isPassive?: boolean | undefined;
|
|
77853
|
+
canUseTriState?: boolean | undefined;
|
|
77854
|
+
isUsingTriState?: boolean | undefined;
|
|
77855
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77856
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77857
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77858
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
77319
77859
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77320
77860
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77321
77861
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -77985,6 +78525,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
77985
78525
|
displayName?: string | undefined;
|
|
77986
78526
|
datasheetUrl?: string | undefined;
|
|
77987
78527
|
pinAttributes?: Record<string, {
|
|
78528
|
+
isInput?: boolean | undefined;
|
|
78529
|
+
isOutput?: boolean | undefined;
|
|
78530
|
+
isBidirectional?: boolean | undefined;
|
|
78531
|
+
isPassive?: boolean | undefined;
|
|
78532
|
+
canUseTriState?: boolean | undefined;
|
|
78533
|
+
isUsingTriState?: boolean | undefined;
|
|
78534
|
+
canUseOpenCollector?: boolean | undefined;
|
|
78535
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
78536
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
78537
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
77988
78538
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77989
78539
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77990
78540
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84055,6 +84605,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84055
84605
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
84056
84606
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
84057
84607
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
84608
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
84609
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
84610
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
84611
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
84612
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
84613
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
84614
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
84615
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
84616
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
84617
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
84058
84618
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
84059
84619
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
84060
84620
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -84082,6 +84642,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84082
84642
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
84083
84643
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
84084
84644
|
}, "strip", z.ZodTypeAny, {
|
|
84645
|
+
isInput?: boolean | undefined;
|
|
84646
|
+
isOutput?: boolean | undefined;
|
|
84647
|
+
isBidirectional?: boolean | undefined;
|
|
84648
|
+
isPassive?: boolean | undefined;
|
|
84649
|
+
canUseTriState?: boolean | undefined;
|
|
84650
|
+
isUsingTriState?: boolean | undefined;
|
|
84651
|
+
canUseOpenCollector?: boolean | undefined;
|
|
84652
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
84653
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
84654
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84085
84655
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84086
84656
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84087
84657
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84109,6 +84679,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84109
84679
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
84110
84680
|
isGpio?: boolean | undefined;
|
|
84111
84681
|
}, {
|
|
84682
|
+
isInput?: boolean | undefined;
|
|
84683
|
+
isOutput?: boolean | undefined;
|
|
84684
|
+
isBidirectional?: boolean | undefined;
|
|
84685
|
+
isPassive?: boolean | undefined;
|
|
84686
|
+
canUseTriState?: boolean | undefined;
|
|
84687
|
+
isUsingTriState?: boolean | undefined;
|
|
84688
|
+
canUseOpenCollector?: boolean | undefined;
|
|
84689
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
84690
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
84691
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84112
84692
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84113
84693
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84114
84694
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84488,6 +85068,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84488
85068
|
displayName?: string | undefined;
|
|
84489
85069
|
datasheetUrl?: string | undefined;
|
|
84490
85070
|
pinAttributes?: Record<string, {
|
|
85071
|
+
isInput?: boolean | undefined;
|
|
85072
|
+
isOutput?: boolean | undefined;
|
|
85073
|
+
isBidirectional?: boolean | undefined;
|
|
85074
|
+
isPassive?: boolean | undefined;
|
|
85075
|
+
canUseTriState?: boolean | undefined;
|
|
85076
|
+
isUsingTriState?: boolean | undefined;
|
|
85077
|
+
canUseOpenCollector?: boolean | undefined;
|
|
85078
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
85079
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
85080
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84491
85081
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84492
85082
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84493
85083
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -85161,6 +85751,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
85161
85751
|
displayName?: string | undefined;
|
|
85162
85752
|
datasheetUrl?: string | undefined;
|
|
85163
85753
|
pinAttributes?: Record<string, {
|
|
85754
|
+
isInput?: boolean | undefined;
|
|
85755
|
+
isOutput?: boolean | undefined;
|
|
85756
|
+
isBidirectional?: boolean | undefined;
|
|
85757
|
+
isPassive?: boolean | undefined;
|
|
85758
|
+
canUseTriState?: boolean | undefined;
|
|
85759
|
+
isUsingTriState?: boolean | undefined;
|
|
85760
|
+
canUseOpenCollector?: boolean | undefined;
|
|
85761
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
85762
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
85763
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
85164
85764
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
85165
85765
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
85166
85766
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89298,6 +89898,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89298
89898
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
89299
89899
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
89300
89900
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
89901
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
89902
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
89903
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
89904
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
89905
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
89906
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
89907
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
89908
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
89909
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
89910
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
89301
89911
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
89302
89912
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
89303
89913
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -89325,6 +89935,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89325
89935
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
89326
89936
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
89327
89937
|
}, "strip", z.ZodTypeAny, {
|
|
89938
|
+
isInput?: boolean | undefined;
|
|
89939
|
+
isOutput?: boolean | undefined;
|
|
89940
|
+
isBidirectional?: boolean | undefined;
|
|
89941
|
+
isPassive?: boolean | undefined;
|
|
89942
|
+
canUseTriState?: boolean | undefined;
|
|
89943
|
+
isUsingTriState?: boolean | undefined;
|
|
89944
|
+
canUseOpenCollector?: boolean | undefined;
|
|
89945
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
89946
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
89947
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89328
89948
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89329
89949
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89330
89950
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89352,6 +89972,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89352
89972
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
89353
89973
|
isGpio?: boolean | undefined;
|
|
89354
89974
|
}, {
|
|
89975
|
+
isInput?: boolean | undefined;
|
|
89976
|
+
isOutput?: boolean | undefined;
|
|
89977
|
+
isBidirectional?: boolean | undefined;
|
|
89978
|
+
isPassive?: boolean | undefined;
|
|
89979
|
+
canUseTriState?: boolean | undefined;
|
|
89980
|
+
isUsingTriState?: boolean | undefined;
|
|
89981
|
+
canUseOpenCollector?: boolean | undefined;
|
|
89982
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
89983
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
89984
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89355
89985
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89356
89986
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89357
89987
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89724,6 +90354,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89724
90354
|
displayName?: string | undefined;
|
|
89725
90355
|
datasheetUrl?: string | undefined;
|
|
89726
90356
|
pinAttributes?: Record<string, {
|
|
90357
|
+
isInput?: boolean | undefined;
|
|
90358
|
+
isOutput?: boolean | undefined;
|
|
90359
|
+
isBidirectional?: boolean | undefined;
|
|
90360
|
+
isPassive?: boolean | undefined;
|
|
90361
|
+
canUseTriState?: boolean | undefined;
|
|
90362
|
+
isUsingTriState?: boolean | undefined;
|
|
90363
|
+
canUseOpenCollector?: boolean | undefined;
|
|
90364
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
90365
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
90366
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89727
90367
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89728
90368
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89729
90369
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -90391,6 +91031,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
90391
91031
|
displayName?: string | undefined;
|
|
90392
91032
|
datasheetUrl?: string | undefined;
|
|
90393
91033
|
pinAttributes?: Record<string, {
|
|
91034
|
+
isInput?: boolean | undefined;
|
|
91035
|
+
isOutput?: boolean | undefined;
|
|
91036
|
+
isBidirectional?: boolean | undefined;
|
|
91037
|
+
isPassive?: boolean | undefined;
|
|
91038
|
+
canUseTriState?: boolean | undefined;
|
|
91039
|
+
isUsingTriState?: boolean | undefined;
|
|
91040
|
+
canUseOpenCollector?: boolean | undefined;
|
|
91041
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
91042
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
91043
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
90394
91044
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
90395
91045
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
90396
91046
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94525,6 +95175,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94525
95175
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
94526
95176
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
94527
95177
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
95178
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
95179
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
95180
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
95181
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
95182
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
95183
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
95184
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
95185
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
95186
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
95187
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
94528
95188
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
94529
95189
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
94530
95190
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -94552,6 +95212,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94552
95212
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
94553
95213
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
94554
95214
|
}, "strip", z.ZodTypeAny, {
|
|
95215
|
+
isInput?: boolean | undefined;
|
|
95216
|
+
isOutput?: boolean | undefined;
|
|
95217
|
+
isBidirectional?: boolean | undefined;
|
|
95218
|
+
isPassive?: boolean | undefined;
|
|
95219
|
+
canUseTriState?: boolean | undefined;
|
|
95220
|
+
isUsingTriState?: boolean | undefined;
|
|
95221
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95222
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95223
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95224
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94555
95225
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94556
95226
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94557
95227
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94579,6 +95249,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94579
95249
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
94580
95250
|
isGpio?: boolean | undefined;
|
|
94581
95251
|
}, {
|
|
95252
|
+
isInput?: boolean | undefined;
|
|
95253
|
+
isOutput?: boolean | undefined;
|
|
95254
|
+
isBidirectional?: boolean | undefined;
|
|
95255
|
+
isPassive?: boolean | undefined;
|
|
95256
|
+
canUseTriState?: boolean | undefined;
|
|
95257
|
+
isUsingTriState?: boolean | undefined;
|
|
95258
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95259
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95260
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95261
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94582
95262
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94583
95263
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94584
95264
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94956,6 +95636,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94956
95636
|
displayName?: string | undefined;
|
|
94957
95637
|
datasheetUrl?: string | undefined;
|
|
94958
95638
|
pinAttributes?: Record<string, {
|
|
95639
|
+
isInput?: boolean | undefined;
|
|
95640
|
+
isOutput?: boolean | undefined;
|
|
95641
|
+
isBidirectional?: boolean | undefined;
|
|
95642
|
+
isPassive?: boolean | undefined;
|
|
95643
|
+
canUseTriState?: boolean | undefined;
|
|
95644
|
+
isUsingTriState?: boolean | undefined;
|
|
95645
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95646
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95647
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95648
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94959
95649
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94960
95650
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94961
95651
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -95627,6 +96317,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
95627
96317
|
displayName?: string | undefined;
|
|
95628
96318
|
datasheetUrl?: string | undefined;
|
|
95629
96319
|
pinAttributes?: Record<string, {
|
|
96320
|
+
isInput?: boolean | undefined;
|
|
96321
|
+
isOutput?: boolean | undefined;
|
|
96322
|
+
isBidirectional?: boolean | undefined;
|
|
96323
|
+
isPassive?: boolean | undefined;
|
|
96324
|
+
canUseTriState?: boolean | undefined;
|
|
96325
|
+
isUsingTriState?: boolean | undefined;
|
|
96326
|
+
canUseOpenCollector?: boolean | undefined;
|
|
96327
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
96328
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
96329
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
95630
96330
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
95631
96331
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
95632
96332
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -99758,6 +100458,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99758
100458
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
99759
100459
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
99760
100460
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
100461
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
100462
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
100463
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
100464
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
100465
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
100466
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
100467
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
100468
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
100469
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
100470
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
99761
100471
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
99762
100472
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
99763
100473
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -99785,6 +100495,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99785
100495
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
99786
100496
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
99787
100497
|
}, "strip", z.ZodTypeAny, {
|
|
100498
|
+
isInput?: boolean | undefined;
|
|
100499
|
+
isOutput?: boolean | undefined;
|
|
100500
|
+
isBidirectional?: boolean | undefined;
|
|
100501
|
+
isPassive?: boolean | undefined;
|
|
100502
|
+
canUseTriState?: boolean | undefined;
|
|
100503
|
+
isUsingTriState?: boolean | undefined;
|
|
100504
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100505
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100506
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100507
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
99788
100508
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99789
100509
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99790
100510
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -99812,6 +100532,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99812
100532
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
99813
100533
|
isGpio?: boolean | undefined;
|
|
99814
100534
|
}, {
|
|
100535
|
+
isInput?: boolean | undefined;
|
|
100536
|
+
isOutput?: boolean | undefined;
|
|
100537
|
+
isBidirectional?: boolean | undefined;
|
|
100538
|
+
isPassive?: boolean | undefined;
|
|
100539
|
+
canUseTriState?: boolean | undefined;
|
|
100540
|
+
isUsingTriState?: boolean | undefined;
|
|
100541
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100542
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100543
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100544
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
99815
100545
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99816
100546
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99817
100547
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -100185,6 +100915,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
100185
100915
|
displayName?: string | undefined;
|
|
100186
100916
|
datasheetUrl?: string | undefined;
|
|
100187
100917
|
pinAttributes?: Record<string, {
|
|
100918
|
+
isInput?: boolean | undefined;
|
|
100919
|
+
isOutput?: boolean | undefined;
|
|
100920
|
+
isBidirectional?: boolean | undefined;
|
|
100921
|
+
isPassive?: boolean | undefined;
|
|
100922
|
+
canUseTriState?: boolean | undefined;
|
|
100923
|
+
isUsingTriState?: boolean | undefined;
|
|
100924
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100925
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100926
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100927
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
100188
100928
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100189
100929
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100190
100930
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -100852,6 +101592,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
100852
101592
|
displayName?: string | undefined;
|
|
100853
101593
|
datasheetUrl?: string | undefined;
|
|
100854
101594
|
pinAttributes?: Record<string, {
|
|
101595
|
+
isInput?: boolean | undefined;
|
|
101596
|
+
isOutput?: boolean | undefined;
|
|
101597
|
+
isBidirectional?: boolean | undefined;
|
|
101598
|
+
isPassive?: boolean | undefined;
|
|
101599
|
+
canUseTriState?: boolean | undefined;
|
|
101600
|
+
isUsingTriState?: boolean | undefined;
|
|
101601
|
+
canUseOpenCollector?: boolean | undefined;
|
|
101602
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
101603
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
101604
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
100855
101605
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100856
101606
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100857
101607
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -106546,6 +107296,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106546
107296
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
106547
107297
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
106548
107298
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
107299
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
107300
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
107301
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
107302
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
107303
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
107304
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
107305
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
107306
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
107307
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
107308
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
106549
107309
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
106550
107310
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
106551
107311
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -106573,6 +107333,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106573
107333
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
106574
107334
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
106575
107335
|
}, "strip", z.ZodTypeAny, {
|
|
107336
|
+
isInput?: boolean | undefined;
|
|
107337
|
+
isOutput?: boolean | undefined;
|
|
107338
|
+
isBidirectional?: boolean | undefined;
|
|
107339
|
+
isPassive?: boolean | undefined;
|
|
107340
|
+
canUseTriState?: boolean | undefined;
|
|
107341
|
+
isUsingTriState?: boolean | undefined;
|
|
107342
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107343
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107344
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107345
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106576
107346
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106577
107347
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106578
107348
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -106600,6 +107370,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106600
107370
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106601
107371
|
isGpio?: boolean | undefined;
|
|
106602
107372
|
}, {
|
|
107373
|
+
isInput?: boolean | undefined;
|
|
107374
|
+
isOutput?: boolean | undefined;
|
|
107375
|
+
isBidirectional?: boolean | undefined;
|
|
107376
|
+
isPassive?: boolean | undefined;
|
|
107377
|
+
canUseTriState?: boolean | undefined;
|
|
107378
|
+
isUsingTriState?: boolean | undefined;
|
|
107379
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107380
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107381
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107382
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106603
107383
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106604
107384
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106605
107385
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -106983,6 +107763,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106983
107763
|
displayName?: string | undefined;
|
|
106984
107764
|
datasheetUrl?: string | undefined;
|
|
106985
107765
|
pinAttributes?: Record<string, {
|
|
107766
|
+
isInput?: boolean | undefined;
|
|
107767
|
+
isOutput?: boolean | undefined;
|
|
107768
|
+
isBidirectional?: boolean | undefined;
|
|
107769
|
+
isPassive?: boolean | undefined;
|
|
107770
|
+
canUseTriState?: boolean | undefined;
|
|
107771
|
+
isUsingTriState?: boolean | undefined;
|
|
107772
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107773
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107774
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107775
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106986
107776
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106987
107777
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106988
107778
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -107657,6 +108447,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
107657
108447
|
displayName?: string | undefined;
|
|
107658
108448
|
datasheetUrl?: string | undefined;
|
|
107659
108449
|
pinAttributes?: Record<string, {
|
|
108450
|
+
isInput?: boolean | undefined;
|
|
108451
|
+
isOutput?: boolean | undefined;
|
|
108452
|
+
isBidirectional?: boolean | undefined;
|
|
108453
|
+
isPassive?: boolean | undefined;
|
|
108454
|
+
canUseTriState?: boolean | undefined;
|
|
108455
|
+
isUsingTriState?: boolean | undefined;
|
|
108456
|
+
canUseOpenCollector?: boolean | undefined;
|
|
108457
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
108458
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
108459
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
107660
108460
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
107661
108461
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
107662
108462
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -111828,6 +112628,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111828
112628
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
111829
112629
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
111830
112630
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
112631
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
112632
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
112633
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
112634
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
112635
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
112636
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
112637
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
112638
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
112639
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
112640
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
111831
112641
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
111832
112642
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
111833
112643
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -111855,6 +112665,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111855
112665
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
111856
112666
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
111857
112667
|
}, "strip", z.ZodTypeAny, {
|
|
112668
|
+
isInput?: boolean | undefined;
|
|
112669
|
+
isOutput?: boolean | undefined;
|
|
112670
|
+
isBidirectional?: boolean | undefined;
|
|
112671
|
+
isPassive?: boolean | undefined;
|
|
112672
|
+
canUseTriState?: boolean | undefined;
|
|
112673
|
+
isUsingTriState?: boolean | undefined;
|
|
112674
|
+
canUseOpenCollector?: boolean | undefined;
|
|
112675
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
112676
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
112677
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
111858
112678
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111859
112679
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111860
112680
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -111882,6 +112702,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111882
112702
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111883
112703
|
isGpio?: boolean | undefined;
|
|
111884
112704
|
}, {
|
|
112705
|
+
isInput?: boolean | undefined;
|
|
112706
|
+
isOutput?: boolean | undefined;
|
|
112707
|
+
isBidirectional?: boolean | undefined;
|
|
112708
|
+
isPassive?: boolean | undefined;
|
|
112709
|
+
canUseTriState?: boolean | undefined;
|
|
112710
|
+
isUsingTriState?: boolean | undefined;
|
|
112711
|
+
canUseOpenCollector?: boolean | undefined;
|
|
112712
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
112713
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
112714
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
111885
112715
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111886
112716
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111887
112717
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -112253,6 +113083,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
112253
113083
|
displayName?: string | undefined;
|
|
112254
113084
|
datasheetUrl?: string | undefined;
|
|
112255
113085
|
pinAttributes?: Record<string, {
|
|
113086
|
+
isInput?: boolean | undefined;
|
|
113087
|
+
isOutput?: boolean | undefined;
|
|
113088
|
+
isBidirectional?: boolean | undefined;
|
|
113089
|
+
isPassive?: boolean | undefined;
|
|
113090
|
+
canUseTriState?: boolean | undefined;
|
|
113091
|
+
isUsingTriState?: boolean | undefined;
|
|
113092
|
+
canUseOpenCollector?: boolean | undefined;
|
|
113093
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
113094
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
113095
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
112256
113096
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112257
113097
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112258
113098
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -112919,6 +113759,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
112919
113759
|
displayName?: string | undefined;
|
|
112920
113760
|
datasheetUrl?: string | undefined;
|
|
112921
113761
|
pinAttributes?: Record<string, {
|
|
113762
|
+
isInput?: boolean | undefined;
|
|
113763
|
+
isOutput?: boolean | undefined;
|
|
113764
|
+
isBidirectional?: boolean | undefined;
|
|
113765
|
+
isPassive?: boolean | undefined;
|
|
113766
|
+
canUseTriState?: boolean | undefined;
|
|
113767
|
+
isUsingTriState?: boolean | undefined;
|
|
113768
|
+
canUseOpenCollector?: boolean | undefined;
|
|
113769
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
113770
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
113771
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
112922
113772
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112923
113773
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112924
113774
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -121541,6 +122391,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121541
122391
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
121542
122392
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
121543
122393
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
122394
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
122395
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
122396
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
122397
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
122398
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
122399
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
122400
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
122401
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
122402
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
122403
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
121544
122404
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
121545
122405
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
121546
122406
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -121568,6 +122428,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121568
122428
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
121569
122429
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
121570
122430
|
}, "strip", z.ZodTypeAny, {
|
|
122431
|
+
isInput?: boolean | undefined;
|
|
122432
|
+
isOutput?: boolean | undefined;
|
|
122433
|
+
isBidirectional?: boolean | undefined;
|
|
122434
|
+
isPassive?: boolean | undefined;
|
|
122435
|
+
canUseTriState?: boolean | undefined;
|
|
122436
|
+
isUsingTriState?: boolean | undefined;
|
|
122437
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122438
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122439
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122440
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
121571
122441
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121572
122442
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121573
122443
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -121595,6 +122465,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121595
122465
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121596
122466
|
isGpio?: boolean | undefined;
|
|
121597
122467
|
}, {
|
|
122468
|
+
isInput?: boolean | undefined;
|
|
122469
|
+
isOutput?: boolean | undefined;
|
|
122470
|
+
isBidirectional?: boolean | undefined;
|
|
122471
|
+
isPassive?: boolean | undefined;
|
|
122472
|
+
canUseTriState?: boolean | undefined;
|
|
122473
|
+
isUsingTriState?: boolean | undefined;
|
|
122474
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122475
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122476
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122477
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
121598
122478
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121599
122479
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121600
122480
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -122021,6 +122901,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
122021
122901
|
displayName?: string | undefined;
|
|
122022
122902
|
datasheetUrl?: string | undefined;
|
|
122023
122903
|
pinAttributes?: Record<string, {
|
|
122904
|
+
isInput?: boolean | undefined;
|
|
122905
|
+
isOutput?: boolean | undefined;
|
|
122906
|
+
isBidirectional?: boolean | undefined;
|
|
122907
|
+
isPassive?: boolean | undefined;
|
|
122908
|
+
canUseTriState?: boolean | undefined;
|
|
122909
|
+
isUsingTriState?: boolean | undefined;
|
|
122910
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122911
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122912
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122913
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
122024
122914
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122025
122915
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122026
122916
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -122694,6 +123584,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
122694
123584
|
displayName?: string | undefined;
|
|
122695
123585
|
datasheetUrl?: string | undefined;
|
|
122696
123586
|
pinAttributes?: Record<string, {
|
|
123587
|
+
isInput?: boolean | undefined;
|
|
123588
|
+
isOutput?: boolean | undefined;
|
|
123589
|
+
isBidirectional?: boolean | undefined;
|
|
123590
|
+
isPassive?: boolean | undefined;
|
|
123591
|
+
canUseTriState?: boolean | undefined;
|
|
123592
|
+
isUsingTriState?: boolean | undefined;
|
|
123593
|
+
canUseOpenCollector?: boolean | undefined;
|
|
123594
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
123595
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
123596
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
122697
123597
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122698
123598
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122699
123599
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -127855,6 +128755,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127855
128755
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
127856
128756
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
127857
128757
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
128758
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
128759
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
128760
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
128761
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
128762
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
128763
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
128764
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
128765
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
128766
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
128767
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
127858
128768
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
127859
128769
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
127860
128770
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -127882,6 +128792,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127882
128792
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
127883
128793
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
127884
128794
|
}, "strip", z.ZodTypeAny, {
|
|
128795
|
+
isInput?: boolean | undefined;
|
|
128796
|
+
isOutput?: boolean | undefined;
|
|
128797
|
+
isBidirectional?: boolean | undefined;
|
|
128798
|
+
isPassive?: boolean | undefined;
|
|
128799
|
+
canUseTriState?: boolean | undefined;
|
|
128800
|
+
isUsingTriState?: boolean | undefined;
|
|
128801
|
+
canUseOpenCollector?: boolean | undefined;
|
|
128802
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
128803
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
128804
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
127885
128805
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127886
128806
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127887
128807
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -127909,6 +128829,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127909
128829
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
127910
128830
|
isGpio?: boolean | undefined;
|
|
127911
128831
|
}, {
|
|
128832
|
+
isInput?: boolean | undefined;
|
|
128833
|
+
isOutput?: boolean | undefined;
|
|
128834
|
+
isBidirectional?: boolean | undefined;
|
|
128835
|
+
isPassive?: boolean | undefined;
|
|
128836
|
+
canUseTriState?: boolean | undefined;
|
|
128837
|
+
isUsingTriState?: boolean | undefined;
|
|
128838
|
+
canUseOpenCollector?: boolean | undefined;
|
|
128839
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
128840
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
128841
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
127912
128842
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127913
128843
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127914
128844
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -128282,6 +129212,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
128282
129212
|
displayName?: string | undefined;
|
|
128283
129213
|
datasheetUrl?: string | undefined;
|
|
128284
129214
|
pinAttributes?: Record<string, {
|
|
129215
|
+
isInput?: boolean | undefined;
|
|
129216
|
+
isOutput?: boolean | undefined;
|
|
129217
|
+
isBidirectional?: boolean | undefined;
|
|
129218
|
+
isPassive?: boolean | undefined;
|
|
129219
|
+
canUseTriState?: boolean | undefined;
|
|
129220
|
+
isUsingTriState?: boolean | undefined;
|
|
129221
|
+
canUseOpenCollector?: boolean | undefined;
|
|
129222
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
129223
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
129224
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
128285
129225
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128286
129226
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128287
129227
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -128951,6 +129891,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
128951
129891
|
displayName?: string | undefined;
|
|
128952
129892
|
datasheetUrl?: string | undefined;
|
|
128953
129893
|
pinAttributes?: Record<string, {
|
|
129894
|
+
isInput?: boolean | undefined;
|
|
129895
|
+
isOutput?: boolean | undefined;
|
|
129896
|
+
isBidirectional?: boolean | undefined;
|
|
129897
|
+
isPassive?: boolean | undefined;
|
|
129898
|
+
canUseTriState?: boolean | undefined;
|
|
129899
|
+
isUsingTriState?: boolean | undefined;
|
|
129900
|
+
canUseOpenCollector?: boolean | undefined;
|
|
129901
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
129902
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
129903
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
128954
129904
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128955
129905
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128956
129906
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -134813,6 +135763,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134813
135763
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
134814
135764
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
134815
135765
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
135766
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
135767
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
135768
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
135769
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
135770
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
135771
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
135772
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
135773
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
135774
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
135775
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
134816
135776
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
134817
135777
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
134818
135778
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -134840,6 +135800,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134840
135800
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
134841
135801
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
134842
135802
|
}, "strip", z.ZodTypeAny, {
|
|
135803
|
+
isInput?: boolean | undefined;
|
|
135804
|
+
isOutput?: boolean | undefined;
|
|
135805
|
+
isBidirectional?: boolean | undefined;
|
|
135806
|
+
isPassive?: boolean | undefined;
|
|
135807
|
+
canUseTriState?: boolean | undefined;
|
|
135808
|
+
isUsingTriState?: boolean | undefined;
|
|
135809
|
+
canUseOpenCollector?: boolean | undefined;
|
|
135810
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
135811
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
135812
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
134843
135813
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134844
135814
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134845
135815
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -134867,6 +135837,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134867
135837
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134868
135838
|
isGpio?: boolean | undefined;
|
|
134869
135839
|
}, {
|
|
135840
|
+
isInput?: boolean | undefined;
|
|
135841
|
+
isOutput?: boolean | undefined;
|
|
135842
|
+
isBidirectional?: boolean | undefined;
|
|
135843
|
+
isPassive?: boolean | undefined;
|
|
135844
|
+
canUseTriState?: boolean | undefined;
|
|
135845
|
+
isUsingTriState?: boolean | undefined;
|
|
135846
|
+
canUseOpenCollector?: boolean | undefined;
|
|
135847
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
135848
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
135849
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
134870
135850
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134871
135851
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134872
135852
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -135408,6 +136388,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135408
136388
|
displayName?: string | undefined;
|
|
135409
136389
|
datasheetUrl?: string | undefined;
|
|
135410
136390
|
pinAttributes?: Record<string, {
|
|
136391
|
+
isInput?: boolean | undefined;
|
|
136392
|
+
isOutput?: boolean | undefined;
|
|
136393
|
+
isBidirectional?: boolean | undefined;
|
|
136394
|
+
isPassive?: boolean | undefined;
|
|
136395
|
+
canUseTriState?: boolean | undefined;
|
|
136396
|
+
isUsingTriState?: boolean | undefined;
|
|
136397
|
+
canUseOpenCollector?: boolean | undefined;
|
|
136398
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
136399
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
136400
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
135411
136401
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135412
136402
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135413
136403
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -136126,6 +137116,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136126
137116
|
displayName?: string | undefined;
|
|
136127
137117
|
datasheetUrl?: string | undefined;
|
|
136128
137118
|
pinAttributes?: Record<string, {
|
|
137119
|
+
isInput?: boolean | undefined;
|
|
137120
|
+
isOutput?: boolean | undefined;
|
|
137121
|
+
isBidirectional?: boolean | undefined;
|
|
137122
|
+
isPassive?: boolean | undefined;
|
|
137123
|
+
canUseTriState?: boolean | undefined;
|
|
137124
|
+
isUsingTriState?: boolean | undefined;
|
|
137125
|
+
canUseOpenCollector?: boolean | undefined;
|
|
137126
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
137127
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
137128
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
136129
137129
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136130
137130
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136131
137131
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -136844,6 +137844,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136844
137844
|
displayName?: string | undefined;
|
|
136845
137845
|
datasheetUrl?: string | undefined;
|
|
136846
137846
|
pinAttributes?: Record<string, {
|
|
137847
|
+
isInput?: boolean | undefined;
|
|
137848
|
+
isOutput?: boolean | undefined;
|
|
137849
|
+
isBidirectional?: boolean | undefined;
|
|
137850
|
+
isPassive?: boolean | undefined;
|
|
137851
|
+
canUseTriState?: boolean | undefined;
|
|
137852
|
+
isUsingTriState?: boolean | undefined;
|
|
137853
|
+
canUseOpenCollector?: boolean | undefined;
|
|
137854
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
137855
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
137856
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
136847
137857
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136848
137858
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136849
137859
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -137562,6 +138572,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
137562
138572
|
displayName?: string | undefined;
|
|
137563
138573
|
datasheetUrl?: string | undefined;
|
|
137564
138574
|
pinAttributes?: Record<string, {
|
|
138575
|
+
isInput?: boolean | undefined;
|
|
138576
|
+
isOutput?: boolean | undefined;
|
|
138577
|
+
isBidirectional?: boolean | undefined;
|
|
138578
|
+
isPassive?: boolean | undefined;
|
|
138579
|
+
canUseTriState?: boolean | undefined;
|
|
138580
|
+
isUsingTriState?: boolean | undefined;
|
|
138581
|
+
canUseOpenCollector?: boolean | undefined;
|
|
138582
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
138583
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
138584
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
137565
138585
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
137566
138586
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
137567
138587
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -138280,6 +139300,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
138280
139300
|
displayName?: string | undefined;
|
|
138281
139301
|
datasheetUrl?: string | undefined;
|
|
138282
139302
|
pinAttributes?: Record<string, {
|
|
139303
|
+
isInput?: boolean | undefined;
|
|
139304
|
+
isOutput?: boolean | undefined;
|
|
139305
|
+
isBidirectional?: boolean | undefined;
|
|
139306
|
+
isPassive?: boolean | undefined;
|
|
139307
|
+
canUseTriState?: boolean | undefined;
|
|
139308
|
+
isUsingTriState?: boolean | undefined;
|
|
139309
|
+
canUseOpenCollector?: boolean | undefined;
|
|
139310
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
139311
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
139312
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
138283
139313
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
138284
139314
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
138285
139315
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -138998,6 +140028,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
138998
140028
|
displayName?: string | undefined;
|
|
138999
140029
|
datasheetUrl?: string | undefined;
|
|
139000
140030
|
pinAttributes?: Record<string, {
|
|
140031
|
+
isInput?: boolean | undefined;
|
|
140032
|
+
isOutput?: boolean | undefined;
|
|
140033
|
+
isBidirectional?: boolean | undefined;
|
|
140034
|
+
isPassive?: boolean | undefined;
|
|
140035
|
+
canUseTriState?: boolean | undefined;
|
|
140036
|
+
isUsingTriState?: boolean | undefined;
|
|
140037
|
+
canUseOpenCollector?: boolean | undefined;
|
|
140038
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
140039
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
140040
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
139001
140041
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139002
140042
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139003
140043
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143250,6 +144290,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143250
144290
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
143251
144291
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
143252
144292
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
144293
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
144294
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
144295
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
144296
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
144297
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
144298
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
144299
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
144300
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
144301
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
144302
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
143253
144303
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
143254
144304
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
143255
144305
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -143277,6 +144327,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143277
144327
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
143278
144328
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
143279
144329
|
}, "strip", z.ZodTypeAny, {
|
|
144330
|
+
isInput?: boolean | undefined;
|
|
144331
|
+
isOutput?: boolean | undefined;
|
|
144332
|
+
isBidirectional?: boolean | undefined;
|
|
144333
|
+
isPassive?: boolean | undefined;
|
|
144334
|
+
canUseTriState?: boolean | undefined;
|
|
144335
|
+
isUsingTriState?: boolean | undefined;
|
|
144336
|
+
canUseOpenCollector?: boolean | undefined;
|
|
144337
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
144338
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
144339
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143280
144340
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143281
144341
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143282
144342
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143304,6 +144364,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143304
144364
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143305
144365
|
isGpio?: boolean | undefined;
|
|
143306
144366
|
}, {
|
|
144367
|
+
isInput?: boolean | undefined;
|
|
144368
|
+
isOutput?: boolean | undefined;
|
|
144369
|
+
isBidirectional?: boolean | undefined;
|
|
144370
|
+
isPassive?: boolean | undefined;
|
|
144371
|
+
canUseTriState?: boolean | undefined;
|
|
144372
|
+
isUsingTriState?: boolean | undefined;
|
|
144373
|
+
canUseOpenCollector?: boolean | undefined;
|
|
144374
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
144375
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
144376
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143307
144377
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143308
144378
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143309
144379
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143973,6 +145043,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143973
145043
|
displayName?: string | undefined;
|
|
143974
145044
|
datasheetUrl?: string | undefined;
|
|
143975
145045
|
pinAttributes?: Record<string, {
|
|
145046
|
+
isInput?: boolean | undefined;
|
|
145047
|
+
isOutput?: boolean | undefined;
|
|
145048
|
+
isBidirectional?: boolean | undefined;
|
|
145049
|
+
isPassive?: boolean | undefined;
|
|
145050
|
+
canUseTriState?: boolean | undefined;
|
|
145051
|
+
isUsingTriState?: boolean | undefined;
|
|
145052
|
+
canUseOpenCollector?: boolean | undefined;
|
|
145053
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
145054
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
145055
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143976
145056
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143977
145057
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143978
145058
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -144716,6 +145796,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
144716
145796
|
displayName?: string | undefined;
|
|
144717
145797
|
datasheetUrl?: string | undefined;
|
|
144718
145798
|
pinAttributes?: Record<string, {
|
|
145799
|
+
isInput?: boolean | undefined;
|
|
145800
|
+
isOutput?: boolean | undefined;
|
|
145801
|
+
isBidirectional?: boolean | undefined;
|
|
145802
|
+
isPassive?: boolean | undefined;
|
|
145803
|
+
canUseTriState?: boolean | undefined;
|
|
145804
|
+
isUsingTriState?: boolean | undefined;
|
|
145805
|
+
canUseOpenCollector?: boolean | undefined;
|
|
145806
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
145807
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
145808
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
144719
145809
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144720
145810
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144721
145811
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151382,6 +152472,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151382
152472
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
151383
152473
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
151384
152474
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
152475
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
152476
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
152477
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
152478
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
152479
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
152480
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
152481
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
152482
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
152483
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
152484
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
151385
152485
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
151386
152486
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
151387
152487
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -151409,6 +152509,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151409
152509
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
151410
152510
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
151411
152511
|
}, "strip", z.ZodTypeAny, {
|
|
152512
|
+
isInput?: boolean | undefined;
|
|
152513
|
+
isOutput?: boolean | undefined;
|
|
152514
|
+
isBidirectional?: boolean | undefined;
|
|
152515
|
+
isPassive?: boolean | undefined;
|
|
152516
|
+
canUseTriState?: boolean | undefined;
|
|
152517
|
+
isUsingTriState?: boolean | undefined;
|
|
152518
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152519
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152520
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152521
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151412
152522
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151413
152523
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151414
152524
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151436,6 +152546,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151436
152546
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151437
152547
|
isGpio?: boolean | undefined;
|
|
151438
152548
|
}, {
|
|
152549
|
+
isInput?: boolean | undefined;
|
|
152550
|
+
isOutput?: boolean | undefined;
|
|
152551
|
+
isBidirectional?: boolean | undefined;
|
|
152552
|
+
isPassive?: boolean | undefined;
|
|
152553
|
+
canUseTriState?: boolean | undefined;
|
|
152554
|
+
isUsingTriState?: boolean | undefined;
|
|
152555
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152556
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152557
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152558
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151439
152559
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151440
152560
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151441
152561
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151807,6 +152927,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151807
152927
|
displayName?: string | undefined;
|
|
151808
152928
|
datasheetUrl?: string | undefined;
|
|
151809
152929
|
pinAttributes?: Record<string, {
|
|
152930
|
+
isInput?: boolean | undefined;
|
|
152931
|
+
isOutput?: boolean | undefined;
|
|
152932
|
+
isBidirectional?: boolean | undefined;
|
|
152933
|
+
isPassive?: boolean | undefined;
|
|
152934
|
+
canUseTriState?: boolean | undefined;
|
|
152935
|
+
isUsingTriState?: boolean | undefined;
|
|
152936
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152937
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152938
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152939
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151810
152940
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151811
152941
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151812
152942
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -152473,6 +153603,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
152473
153603
|
displayName?: string | undefined;
|
|
152474
153604
|
datasheetUrl?: string | undefined;
|
|
152475
153605
|
pinAttributes?: Record<string, {
|
|
153606
|
+
isInput?: boolean | undefined;
|
|
153607
|
+
isOutput?: boolean | undefined;
|
|
153608
|
+
isBidirectional?: boolean | undefined;
|
|
153609
|
+
isPassive?: boolean | undefined;
|
|
153610
|
+
canUseTriState?: boolean | undefined;
|
|
153611
|
+
isUsingTriState?: boolean | undefined;
|
|
153612
|
+
canUseOpenCollector?: boolean | undefined;
|
|
153613
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
153614
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
153615
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
152476
153616
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
152477
153617
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
152478
153618
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -156609,6 +157749,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156609
157749
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
156610
157750
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
156611
157751
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
157752
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
157753
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
157754
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
157755
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
157756
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
157757
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
157758
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
157759
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
157760
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
157761
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
156612
157762
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
156613
157763
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
156614
157764
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -156636,6 +157786,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156636
157786
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
156637
157787
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
156638
157788
|
}, "strip", z.ZodTypeAny, {
|
|
157789
|
+
isInput?: boolean | undefined;
|
|
157790
|
+
isOutput?: boolean | undefined;
|
|
157791
|
+
isBidirectional?: boolean | undefined;
|
|
157792
|
+
isPassive?: boolean | undefined;
|
|
157793
|
+
canUseTriState?: boolean | undefined;
|
|
157794
|
+
isUsingTriState?: boolean | undefined;
|
|
157795
|
+
canUseOpenCollector?: boolean | undefined;
|
|
157796
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
157797
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
157798
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
156639
157799
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156640
157800
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156641
157801
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -156663,6 +157823,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156663
157823
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156664
157824
|
isGpio?: boolean | undefined;
|
|
156665
157825
|
}, {
|
|
157826
|
+
isInput?: boolean | undefined;
|
|
157827
|
+
isOutput?: boolean | undefined;
|
|
157828
|
+
isBidirectional?: boolean | undefined;
|
|
157829
|
+
isPassive?: boolean | undefined;
|
|
157830
|
+
canUseTriState?: boolean | undefined;
|
|
157831
|
+
isUsingTriState?: boolean | undefined;
|
|
157832
|
+
canUseOpenCollector?: boolean | undefined;
|
|
157833
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
157834
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
157835
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
156666
157836
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156667
157837
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156668
157838
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -157039,6 +158209,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
157039
158209
|
displayName?: string | undefined;
|
|
157040
158210
|
datasheetUrl?: string | undefined;
|
|
157041
158211
|
pinAttributes?: Record<string, {
|
|
158212
|
+
isInput?: boolean | undefined;
|
|
158213
|
+
isOutput?: boolean | undefined;
|
|
158214
|
+
isBidirectional?: boolean | undefined;
|
|
158215
|
+
isPassive?: boolean | undefined;
|
|
158216
|
+
canUseTriState?: boolean | undefined;
|
|
158217
|
+
isUsingTriState?: boolean | undefined;
|
|
158218
|
+
canUseOpenCollector?: boolean | undefined;
|
|
158219
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
158220
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
158221
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
157042
158222
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157043
158223
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157044
158224
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -157709,6 +158889,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
157709
158889
|
displayName?: string | undefined;
|
|
157710
158890
|
datasheetUrl?: string | undefined;
|
|
157711
158891
|
pinAttributes?: Record<string, {
|
|
158892
|
+
isInput?: boolean | undefined;
|
|
158893
|
+
isOutput?: boolean | undefined;
|
|
158894
|
+
isBidirectional?: boolean | undefined;
|
|
158895
|
+
isPassive?: boolean | undefined;
|
|
158896
|
+
canUseTriState?: boolean | undefined;
|
|
158897
|
+
isUsingTriState?: boolean | undefined;
|
|
158898
|
+
canUseOpenCollector?: boolean | undefined;
|
|
158899
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
158900
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
158901
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
157712
158902
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157713
158903
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157714
158904
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -161844,6 +163034,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161844
163034
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
161845
163035
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
161846
163036
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
163037
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
163038
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
163039
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
163040
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
163041
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
163042
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
163043
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
163044
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
163045
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
163046
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
161847
163047
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
161848
163048
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
161849
163049
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -161871,6 +163071,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161871
163071
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
161872
163072
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
161873
163073
|
}, "strip", z.ZodTypeAny, {
|
|
163074
|
+
isInput?: boolean | undefined;
|
|
163075
|
+
isOutput?: boolean | undefined;
|
|
163076
|
+
isBidirectional?: boolean | undefined;
|
|
163077
|
+
isPassive?: boolean | undefined;
|
|
163078
|
+
canUseTriState?: boolean | undefined;
|
|
163079
|
+
isUsingTriState?: boolean | undefined;
|
|
163080
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163081
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163082
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163083
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
161874
163084
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161875
163085
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161876
163086
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -161898,6 +163108,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161898
163108
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
161899
163109
|
isGpio?: boolean | undefined;
|
|
161900
163110
|
}, {
|
|
163111
|
+
isInput?: boolean | undefined;
|
|
163112
|
+
isOutput?: boolean | undefined;
|
|
163113
|
+
isBidirectional?: boolean | undefined;
|
|
163114
|
+
isPassive?: boolean | undefined;
|
|
163115
|
+
canUseTriState?: boolean | undefined;
|
|
163116
|
+
isUsingTriState?: boolean | undefined;
|
|
163117
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163118
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163119
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163120
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
161901
163121
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161902
163122
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161903
163123
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -162267,6 +163487,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
162267
163487
|
displayName?: string | undefined;
|
|
162268
163488
|
datasheetUrl?: string | undefined;
|
|
162269
163489
|
pinAttributes?: Record<string, {
|
|
163490
|
+
isInput?: boolean | undefined;
|
|
163491
|
+
isOutput?: boolean | undefined;
|
|
163492
|
+
isBidirectional?: boolean | undefined;
|
|
163493
|
+
isPassive?: boolean | undefined;
|
|
163494
|
+
canUseTriState?: boolean | undefined;
|
|
163495
|
+
isUsingTriState?: boolean | undefined;
|
|
163496
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163497
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163498
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163499
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
162270
163500
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162271
163501
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162272
163502
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -162932,6 +164162,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
162932
164162
|
displayName?: string | undefined;
|
|
162933
164163
|
datasheetUrl?: string | undefined;
|
|
162934
164164
|
pinAttributes?: Record<string, {
|
|
164165
|
+
isInput?: boolean | undefined;
|
|
164166
|
+
isOutput?: boolean | undefined;
|
|
164167
|
+
isBidirectional?: boolean | undefined;
|
|
164168
|
+
isPassive?: boolean | undefined;
|
|
164169
|
+
canUseTriState?: boolean | undefined;
|
|
164170
|
+
isUsingTriState?: boolean | undefined;
|
|
164171
|
+
canUseOpenCollector?: boolean | undefined;
|
|
164172
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
164173
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
164174
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
162935
164175
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162936
164176
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162937
164177
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167066,6 +168306,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167066
168306
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
167067
168307
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
167068
168308
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
168309
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
168310
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
168311
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
168312
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
168313
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
168314
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
168315
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
168316
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
168317
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
168318
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
167069
168319
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
167070
168320
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
167071
168321
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -167093,6 +168343,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167093
168343
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
167094
168344
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
167095
168345
|
}, "strip", z.ZodTypeAny, {
|
|
168346
|
+
isInput?: boolean | undefined;
|
|
168347
|
+
isOutput?: boolean | undefined;
|
|
168348
|
+
isBidirectional?: boolean | undefined;
|
|
168349
|
+
isPassive?: boolean | undefined;
|
|
168350
|
+
canUseTriState?: boolean | undefined;
|
|
168351
|
+
isUsingTriState?: boolean | undefined;
|
|
168352
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168353
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168354
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168355
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167096
168356
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167097
168357
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167098
168358
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167120,6 +168380,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167120
168380
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
167121
168381
|
isGpio?: boolean | undefined;
|
|
167122
168382
|
}, {
|
|
168383
|
+
isInput?: boolean | undefined;
|
|
168384
|
+
isOutput?: boolean | undefined;
|
|
168385
|
+
isBidirectional?: boolean | undefined;
|
|
168386
|
+
isPassive?: boolean | undefined;
|
|
168387
|
+
canUseTriState?: boolean | undefined;
|
|
168388
|
+
isUsingTriState?: boolean | undefined;
|
|
168389
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168390
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168391
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168392
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167123
168393
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167124
168394
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167125
168395
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167493,6 +168763,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167493
168763
|
displayName?: string | undefined;
|
|
167494
168764
|
datasheetUrl?: string | undefined;
|
|
167495
168765
|
pinAttributes?: Record<string, {
|
|
168766
|
+
isInput?: boolean | undefined;
|
|
168767
|
+
isOutput?: boolean | undefined;
|
|
168768
|
+
isBidirectional?: boolean | undefined;
|
|
168769
|
+
isPassive?: boolean | undefined;
|
|
168770
|
+
canUseTriState?: boolean | undefined;
|
|
168771
|
+
isUsingTriState?: boolean | undefined;
|
|
168772
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168773
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168774
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168775
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167496
168776
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167497
168777
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167498
168778
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -168161,6 +169441,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
168161
169441
|
displayName?: string | undefined;
|
|
168162
169442
|
datasheetUrl?: string | undefined;
|
|
168163
169443
|
pinAttributes?: Record<string, {
|
|
169444
|
+
isInput?: boolean | undefined;
|
|
169445
|
+
isOutput?: boolean | undefined;
|
|
169446
|
+
isBidirectional?: boolean | undefined;
|
|
169447
|
+
isPassive?: boolean | undefined;
|
|
169448
|
+
canUseTriState?: boolean | undefined;
|
|
169449
|
+
isUsingTriState?: boolean | undefined;
|
|
169450
|
+
canUseOpenCollector?: boolean | undefined;
|
|
169451
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
169452
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
169453
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
168164
169454
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168165
169455
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168166
169456
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172288,6 +173578,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172288
173578
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
172289
173579
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
172290
173580
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
173581
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
173582
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
173583
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
173584
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
173585
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
173586
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
173587
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
173588
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
173589
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
173590
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
172291
173591
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
172292
173592
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
172293
173593
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -172315,6 +173615,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172315
173615
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
172316
173616
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
172317
173617
|
}, "strip", z.ZodTypeAny, {
|
|
173618
|
+
isInput?: boolean | undefined;
|
|
173619
|
+
isOutput?: boolean | undefined;
|
|
173620
|
+
isBidirectional?: boolean | undefined;
|
|
173621
|
+
isPassive?: boolean | undefined;
|
|
173622
|
+
canUseTriState?: boolean | undefined;
|
|
173623
|
+
isUsingTriState?: boolean | undefined;
|
|
173624
|
+
canUseOpenCollector?: boolean | undefined;
|
|
173625
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
173626
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
173627
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172318
173628
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172319
173629
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172320
173630
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172342,6 +173652,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172342
173652
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
172343
173653
|
isGpio?: boolean | undefined;
|
|
172344
173654
|
}, {
|
|
173655
|
+
isInput?: boolean | undefined;
|
|
173656
|
+
isOutput?: boolean | undefined;
|
|
173657
|
+
isBidirectional?: boolean | undefined;
|
|
173658
|
+
isPassive?: boolean | undefined;
|
|
173659
|
+
canUseTriState?: boolean | undefined;
|
|
173660
|
+
isUsingTriState?: boolean | undefined;
|
|
173661
|
+
canUseOpenCollector?: boolean | undefined;
|
|
173662
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
173663
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
173664
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172345
173665
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172346
173666
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172347
173667
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172721,6 +174041,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172721
174041
|
displayName?: string | undefined;
|
|
172722
174042
|
datasheetUrl?: string | undefined;
|
|
172723
174043
|
pinAttributes?: Record<string, {
|
|
174044
|
+
isInput?: boolean | undefined;
|
|
174045
|
+
isOutput?: boolean | undefined;
|
|
174046
|
+
isBidirectional?: boolean | undefined;
|
|
174047
|
+
isPassive?: boolean | undefined;
|
|
174048
|
+
canUseTriState?: boolean | undefined;
|
|
174049
|
+
isUsingTriState?: boolean | undefined;
|
|
174050
|
+
canUseOpenCollector?: boolean | undefined;
|
|
174051
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
174052
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
174053
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172724
174054
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172725
174055
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172726
174056
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -173394,6 +174724,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
173394
174724
|
displayName?: string | undefined;
|
|
173395
174725
|
datasheetUrl?: string | undefined;
|
|
173396
174726
|
pinAttributes?: Record<string, {
|
|
174727
|
+
isInput?: boolean | undefined;
|
|
174728
|
+
isOutput?: boolean | undefined;
|
|
174729
|
+
isBidirectional?: boolean | undefined;
|
|
174730
|
+
isPassive?: boolean | undefined;
|
|
174731
|
+
canUseTriState?: boolean | undefined;
|
|
174732
|
+
isUsingTriState?: boolean | undefined;
|
|
174733
|
+
canUseOpenCollector?: boolean | undefined;
|
|
174734
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
174735
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
174736
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
173397
174737
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
173398
174738
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
173399
174739
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -174067,6 +175407,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
174067
175407
|
displayName?: string | undefined;
|
|
174068
175408
|
datasheetUrl?: string | undefined;
|
|
174069
175409
|
pinAttributes?: Record<string, {
|
|
175410
|
+
isInput?: boolean | undefined;
|
|
175411
|
+
isOutput?: boolean | undefined;
|
|
175412
|
+
isBidirectional?: boolean | undefined;
|
|
175413
|
+
isPassive?: boolean | undefined;
|
|
175414
|
+
canUseTriState?: boolean | undefined;
|
|
175415
|
+
isUsingTriState?: boolean | undefined;
|
|
175416
|
+
canUseOpenCollector?: boolean | undefined;
|
|
175417
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
175418
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
175419
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
174070
175420
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174071
175421
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174072
175422
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -174740,6 +176090,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
174740
176090
|
displayName?: string | undefined;
|
|
174741
176091
|
datasheetUrl?: string | undefined;
|
|
174742
176092
|
pinAttributes?: Record<string, {
|
|
176093
|
+
isInput?: boolean | undefined;
|
|
176094
|
+
isOutput?: boolean | undefined;
|
|
176095
|
+
isBidirectional?: boolean | undefined;
|
|
176096
|
+
isPassive?: boolean | undefined;
|
|
176097
|
+
canUseTriState?: boolean | undefined;
|
|
176098
|
+
isUsingTriState?: boolean | undefined;
|
|
176099
|
+
canUseOpenCollector?: boolean | undefined;
|
|
176100
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
176101
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
176102
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
174743
176103
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174744
176104
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174745
176105
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -175419,6 +176779,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
175419
176779
|
displayName?: string | undefined;
|
|
175420
176780
|
datasheetUrl?: string | undefined;
|
|
175421
176781
|
pinAttributes?: Record<string, {
|
|
176782
|
+
isInput?: boolean | undefined;
|
|
176783
|
+
isOutput?: boolean | undefined;
|
|
176784
|
+
isBidirectional?: boolean | undefined;
|
|
176785
|
+
isPassive?: boolean | undefined;
|
|
176786
|
+
canUseTriState?: boolean | undefined;
|
|
176787
|
+
isUsingTriState?: boolean | undefined;
|
|
176788
|
+
canUseOpenCollector?: boolean | undefined;
|
|
176789
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
176790
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
176791
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
175422
176792
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
175423
176793
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
175424
176794
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -176086,6 +177456,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
176086
177456
|
displayName?: string | undefined;
|
|
176087
177457
|
datasheetUrl?: string | undefined;
|
|
176088
177458
|
pinAttributes?: Record<string, {
|
|
177459
|
+
isInput?: boolean | undefined;
|
|
177460
|
+
isOutput?: boolean | undefined;
|
|
177461
|
+
isBidirectional?: boolean | undefined;
|
|
177462
|
+
isPassive?: boolean | undefined;
|
|
177463
|
+
canUseTriState?: boolean | undefined;
|
|
177464
|
+
isUsingTriState?: boolean | undefined;
|
|
177465
|
+
canUseOpenCollector?: boolean | undefined;
|
|
177466
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
177467
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
177468
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
176089
177469
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
176090
177470
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
176091
177471
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180237,6 +181617,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180237
181617
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
180238
181618
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
180239
181619
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
181620
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
181621
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
181622
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
181623
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
181624
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
181625
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
181626
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
181627
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
181628
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
181629
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
180240
181630
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
180241
181631
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
180242
181632
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -180264,6 +181654,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180264
181654
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
180265
181655
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
180266
181656
|
}, "strip", z.ZodTypeAny, {
|
|
181657
|
+
isInput?: boolean | undefined;
|
|
181658
|
+
isOutput?: boolean | undefined;
|
|
181659
|
+
isBidirectional?: boolean | undefined;
|
|
181660
|
+
isPassive?: boolean | undefined;
|
|
181661
|
+
canUseTriState?: boolean | undefined;
|
|
181662
|
+
isUsingTriState?: boolean | undefined;
|
|
181663
|
+
canUseOpenCollector?: boolean | undefined;
|
|
181664
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
181665
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
181666
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180267
181667
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180268
181668
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180269
181669
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180291,6 +181691,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180291
181691
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
180292
181692
|
isGpio?: boolean | undefined;
|
|
180293
181693
|
}, {
|
|
181694
|
+
isInput?: boolean | undefined;
|
|
181695
|
+
isOutput?: boolean | undefined;
|
|
181696
|
+
isBidirectional?: boolean | undefined;
|
|
181697
|
+
isPassive?: boolean | undefined;
|
|
181698
|
+
canUseTriState?: boolean | undefined;
|
|
181699
|
+
isUsingTriState?: boolean | undefined;
|
|
181700
|
+
canUseOpenCollector?: boolean | undefined;
|
|
181701
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
181702
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
181703
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180294
181704
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180295
181705
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180296
181706
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180669,6 +182079,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180669
182079
|
displayName?: string | undefined;
|
|
180670
182080
|
datasheetUrl?: string | undefined;
|
|
180671
182081
|
pinAttributes?: Record<string, {
|
|
182082
|
+
isInput?: boolean | undefined;
|
|
182083
|
+
isOutput?: boolean | undefined;
|
|
182084
|
+
isBidirectional?: boolean | undefined;
|
|
182085
|
+
isPassive?: boolean | undefined;
|
|
182086
|
+
canUseTriState?: boolean | undefined;
|
|
182087
|
+
isUsingTriState?: boolean | undefined;
|
|
182088
|
+
canUseOpenCollector?: boolean | undefined;
|
|
182089
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
182090
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
182091
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180672
182092
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180673
182093
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180674
182094
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -181343,6 +182763,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
181343
182763
|
displayName?: string | undefined;
|
|
181344
182764
|
datasheetUrl?: string | undefined;
|
|
181345
182765
|
pinAttributes?: Record<string, {
|
|
182766
|
+
isInput?: boolean | undefined;
|
|
182767
|
+
isOutput?: boolean | undefined;
|
|
182768
|
+
isBidirectional?: boolean | undefined;
|
|
182769
|
+
isPassive?: boolean | undefined;
|
|
182770
|
+
canUseTriState?: boolean | undefined;
|
|
182771
|
+
isUsingTriState?: boolean | undefined;
|
|
182772
|
+
canUseOpenCollector?: boolean | undefined;
|
|
182773
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
182774
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
182775
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
181346
182776
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
181347
182777
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
181348
182778
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185487,6 +186917,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185487
186917
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
185488
186918
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
185489
186919
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
186920
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
186921
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
186922
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
186923
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
186924
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
186925
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
186926
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
186927
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
186928
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
186929
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
185490
186930
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
185491
186931
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
185492
186932
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -185514,6 +186954,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185514
186954
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
185515
186955
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
185516
186956
|
}, "strip", z.ZodTypeAny, {
|
|
186957
|
+
isInput?: boolean | undefined;
|
|
186958
|
+
isOutput?: boolean | undefined;
|
|
186959
|
+
isBidirectional?: boolean | undefined;
|
|
186960
|
+
isPassive?: boolean | undefined;
|
|
186961
|
+
canUseTriState?: boolean | undefined;
|
|
186962
|
+
isUsingTriState?: boolean | undefined;
|
|
186963
|
+
canUseOpenCollector?: boolean | undefined;
|
|
186964
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
186965
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
186966
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185517
186967
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185518
186968
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185519
186969
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185541,6 +186991,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185541
186991
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
185542
186992
|
isGpio?: boolean | undefined;
|
|
185543
186993
|
}, {
|
|
186994
|
+
isInput?: boolean | undefined;
|
|
186995
|
+
isOutput?: boolean | undefined;
|
|
186996
|
+
isBidirectional?: boolean | undefined;
|
|
186997
|
+
isPassive?: boolean | undefined;
|
|
186998
|
+
canUseTriState?: boolean | undefined;
|
|
186999
|
+
isUsingTriState?: boolean | undefined;
|
|
187000
|
+
canUseOpenCollector?: boolean | undefined;
|
|
187001
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
187002
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
187003
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185544
187004
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185545
187005
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185546
187006
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185924,6 +187384,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185924
187384
|
displayName?: string | undefined;
|
|
185925
187385
|
datasheetUrl?: string | undefined;
|
|
185926
187386
|
pinAttributes?: Record<string, {
|
|
187387
|
+
isInput?: boolean | undefined;
|
|
187388
|
+
isOutput?: boolean | undefined;
|
|
187389
|
+
isBidirectional?: boolean | undefined;
|
|
187390
|
+
isPassive?: boolean | undefined;
|
|
187391
|
+
canUseTriState?: boolean | undefined;
|
|
187392
|
+
isUsingTriState?: boolean | undefined;
|
|
187393
|
+
canUseOpenCollector?: boolean | undefined;
|
|
187394
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
187395
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
187396
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185927
187397
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185928
187398
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185929
187399
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -186600,6 +188070,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
186600
188070
|
displayName?: string | undefined;
|
|
186601
188071
|
datasheetUrl?: string | undefined;
|
|
186602
188072
|
pinAttributes?: Record<string, {
|
|
188073
|
+
isInput?: boolean | undefined;
|
|
188074
|
+
isOutput?: boolean | undefined;
|
|
188075
|
+
isBidirectional?: boolean | undefined;
|
|
188076
|
+
isPassive?: boolean | undefined;
|
|
188077
|
+
canUseTriState?: boolean | undefined;
|
|
188078
|
+
isUsingTriState?: boolean | undefined;
|
|
188079
|
+
canUseOpenCollector?: boolean | undefined;
|
|
188080
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
188081
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
188082
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
186603
188083
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
186604
188084
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
186605
188085
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -187277,6 +188757,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
187277
188757
|
displayName?: string | undefined;
|
|
187278
188758
|
datasheetUrl?: string | undefined;
|
|
187279
188759
|
pinAttributes?: Record<string, {
|
|
188760
|
+
isInput?: boolean | undefined;
|
|
188761
|
+
isOutput?: boolean | undefined;
|
|
188762
|
+
isBidirectional?: boolean | undefined;
|
|
188763
|
+
isPassive?: boolean | undefined;
|
|
188764
|
+
canUseTriState?: boolean | undefined;
|
|
188765
|
+
isUsingTriState?: boolean | undefined;
|
|
188766
|
+
canUseOpenCollector?: boolean | undefined;
|
|
188767
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
188768
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
188769
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
187280
188770
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
187281
188771
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
187282
188772
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192446,6 +193936,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192446
193936
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
192447
193937
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
192448
193938
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
193939
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
193940
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
193941
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
193942
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
193943
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
193944
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
193945
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
193946
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
193947
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
193948
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
192449
193949
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
192450
193950
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
192451
193951
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -192473,6 +193973,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192473
193973
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
192474
193974
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
192475
193975
|
}, "strip", z.ZodTypeAny, {
|
|
193976
|
+
isInput?: boolean | undefined;
|
|
193977
|
+
isOutput?: boolean | undefined;
|
|
193978
|
+
isBidirectional?: boolean | undefined;
|
|
193979
|
+
isPassive?: boolean | undefined;
|
|
193980
|
+
canUseTriState?: boolean | undefined;
|
|
193981
|
+
isUsingTriState?: boolean | undefined;
|
|
193982
|
+
canUseOpenCollector?: boolean | undefined;
|
|
193983
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
193984
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
193985
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192476
193986
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192477
193987
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192478
193988
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192500,6 +194010,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192500
194010
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
192501
194011
|
isGpio?: boolean | undefined;
|
|
192502
194012
|
}, {
|
|
194013
|
+
isInput?: boolean | undefined;
|
|
194014
|
+
isOutput?: boolean | undefined;
|
|
194015
|
+
isBidirectional?: boolean | undefined;
|
|
194016
|
+
isPassive?: boolean | undefined;
|
|
194017
|
+
canUseTriState?: boolean | undefined;
|
|
194018
|
+
isUsingTriState?: boolean | undefined;
|
|
194019
|
+
canUseOpenCollector?: boolean | undefined;
|
|
194020
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
194021
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
194022
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192503
194023
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192504
194024
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192505
194025
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192884,6 +194404,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192884
194404
|
displayName?: string | undefined;
|
|
192885
194405
|
datasheetUrl?: string | undefined;
|
|
192886
194406
|
pinAttributes?: Record<string, {
|
|
194407
|
+
isInput?: boolean | undefined;
|
|
194408
|
+
isOutput?: boolean | undefined;
|
|
194409
|
+
isBidirectional?: boolean | undefined;
|
|
194410
|
+
isPassive?: boolean | undefined;
|
|
194411
|
+
canUseTriState?: boolean | undefined;
|
|
194412
|
+
isUsingTriState?: boolean | undefined;
|
|
194413
|
+
canUseOpenCollector?: boolean | undefined;
|
|
194414
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
194415
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
194416
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192887
194417
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192888
194418
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192889
194419
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -193556,6 +195086,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
193556
195086
|
displayName?: string | undefined;
|
|
193557
195087
|
datasheetUrl?: string | undefined;
|
|
193558
195088
|
pinAttributes?: Record<string, {
|
|
195089
|
+
isInput?: boolean | undefined;
|
|
195090
|
+
isOutput?: boolean | undefined;
|
|
195091
|
+
isBidirectional?: boolean | undefined;
|
|
195092
|
+
isPassive?: boolean | undefined;
|
|
195093
|
+
canUseTriState?: boolean | undefined;
|
|
195094
|
+
isUsingTriState?: boolean | undefined;
|
|
195095
|
+
canUseOpenCollector?: boolean | undefined;
|
|
195096
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
195097
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
195098
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
193559
195099
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
193560
195100
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
193561
195101
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -194228,6 +195768,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
194228
195768
|
displayName?: string | undefined;
|
|
194229
195769
|
datasheetUrl?: string | undefined;
|
|
194230
195770
|
pinAttributes?: Record<string, {
|
|
195771
|
+
isInput?: boolean | undefined;
|
|
195772
|
+
isOutput?: boolean | undefined;
|
|
195773
|
+
isBidirectional?: boolean | undefined;
|
|
195774
|
+
isPassive?: boolean | undefined;
|
|
195775
|
+
canUseTriState?: boolean | undefined;
|
|
195776
|
+
isUsingTriState?: boolean | undefined;
|
|
195777
|
+
canUseOpenCollector?: boolean | undefined;
|
|
195778
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
195779
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
195780
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
194231
195781
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194232
195782
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194233
195783
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -194900,6 +196450,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
194900
196450
|
displayName?: string | undefined;
|
|
194901
196451
|
datasheetUrl?: string | undefined;
|
|
194902
196452
|
pinAttributes?: Record<string, {
|
|
196453
|
+
isInput?: boolean | undefined;
|
|
196454
|
+
isOutput?: boolean | undefined;
|
|
196455
|
+
isBidirectional?: boolean | undefined;
|
|
196456
|
+
isPassive?: boolean | undefined;
|
|
196457
|
+
canUseTriState?: boolean | undefined;
|
|
196458
|
+
isUsingTriState?: boolean | undefined;
|
|
196459
|
+
canUseOpenCollector?: boolean | undefined;
|
|
196460
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
196461
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
196462
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
194903
196463
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194904
196464
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194905
196465
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200425,6 +201985,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200425
201985
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
200426
201986
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
200427
201987
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
201988
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
201989
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
201990
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
201991
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
201992
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
201993
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
201994
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
201995
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
201996
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
201997
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
200428
201998
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
200429
201999
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
200430
202000
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -200452,6 +202022,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200452
202022
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
200453
202023
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
200454
202024
|
}, "strip", z.ZodTypeAny, {
|
|
202025
|
+
isInput?: boolean | undefined;
|
|
202026
|
+
isOutput?: boolean | undefined;
|
|
202027
|
+
isBidirectional?: boolean | undefined;
|
|
202028
|
+
isPassive?: boolean | undefined;
|
|
202029
|
+
canUseTriState?: boolean | undefined;
|
|
202030
|
+
isUsingTriState?: boolean | undefined;
|
|
202031
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202032
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202033
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202034
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200455
202035
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200456
202036
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200457
202037
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200479,6 +202059,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200479
202059
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
200480
202060
|
isGpio?: boolean | undefined;
|
|
200481
202061
|
}, {
|
|
202062
|
+
isInput?: boolean | undefined;
|
|
202063
|
+
isOutput?: boolean | undefined;
|
|
202064
|
+
isBidirectional?: boolean | undefined;
|
|
202065
|
+
isPassive?: boolean | undefined;
|
|
202066
|
+
canUseTriState?: boolean | undefined;
|
|
202067
|
+
isUsingTriState?: boolean | undefined;
|
|
202068
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202069
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202070
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202071
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200482
202072
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200483
202073
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200484
202074
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200849,6 +202439,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200849
202439
|
displayName?: string | undefined;
|
|
200850
202440
|
datasheetUrl?: string | undefined;
|
|
200851
202441
|
pinAttributes?: Record<string, {
|
|
202442
|
+
isInput?: boolean | undefined;
|
|
202443
|
+
isOutput?: boolean | undefined;
|
|
202444
|
+
isBidirectional?: boolean | undefined;
|
|
202445
|
+
isPassive?: boolean | undefined;
|
|
202446
|
+
canUseTriState?: boolean | undefined;
|
|
202447
|
+
isUsingTriState?: boolean | undefined;
|
|
202448
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202449
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202450
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202451
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200852
202452
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200853
202453
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200854
202454
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -201514,6 +203114,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
201514
203114
|
displayName?: string | undefined;
|
|
201515
203115
|
datasheetUrl?: string | undefined;
|
|
201516
203116
|
pinAttributes?: Record<string, {
|
|
203117
|
+
isInput?: boolean | undefined;
|
|
203118
|
+
isOutput?: boolean | undefined;
|
|
203119
|
+
isBidirectional?: boolean | undefined;
|
|
203120
|
+
isPassive?: boolean | undefined;
|
|
203121
|
+
canUseTriState?: boolean | undefined;
|
|
203122
|
+
isUsingTriState?: boolean | undefined;
|
|
203123
|
+
canUseOpenCollector?: boolean | undefined;
|
|
203124
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
203125
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
203126
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
201517
203127
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
201518
203128
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
201519
203129
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -205656,6 +207266,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205656
207266
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
205657
207267
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
205658
207268
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
207269
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
207270
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
207271
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
207272
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
207273
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
207274
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
207275
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
207276
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
207277
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
207278
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
205659
207279
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
205660
207280
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
205661
207281
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -205683,6 +207303,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205683
207303
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
205684
207304
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
205685
207305
|
}, "strip", z.ZodTypeAny, {
|
|
207306
|
+
isInput?: boolean | undefined;
|
|
207307
|
+
isOutput?: boolean | undefined;
|
|
207308
|
+
isBidirectional?: boolean | undefined;
|
|
207309
|
+
isPassive?: boolean | undefined;
|
|
207310
|
+
canUseTriState?: boolean | undefined;
|
|
207311
|
+
isUsingTriState?: boolean | undefined;
|
|
207312
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207313
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207314
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207315
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
205686
207316
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205687
207317
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205688
207318
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -205710,6 +207340,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205710
207340
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
205711
207341
|
isGpio?: boolean | undefined;
|
|
205712
207342
|
}, {
|
|
207343
|
+
isInput?: boolean | undefined;
|
|
207344
|
+
isOutput?: boolean | undefined;
|
|
207345
|
+
isBidirectional?: boolean | undefined;
|
|
207346
|
+
isPassive?: boolean | undefined;
|
|
207347
|
+
canUseTriState?: boolean | undefined;
|
|
207348
|
+
isUsingTriState?: boolean | undefined;
|
|
207349
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207350
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207351
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207352
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
205713
207353
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205714
207354
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205715
207355
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -206092,6 +207732,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
206092
207732
|
displayName?: string | undefined;
|
|
206093
207733
|
datasheetUrl?: string | undefined;
|
|
206094
207734
|
pinAttributes?: Record<string, {
|
|
207735
|
+
isInput?: boolean | undefined;
|
|
207736
|
+
isOutput?: boolean | undefined;
|
|
207737
|
+
isBidirectional?: boolean | undefined;
|
|
207738
|
+
isPassive?: boolean | undefined;
|
|
207739
|
+
canUseTriState?: boolean | undefined;
|
|
207740
|
+
isUsingTriState?: boolean | undefined;
|
|
207741
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207742
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207743
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207744
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
206095
207745
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206096
207746
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206097
207747
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -206770,6 +208420,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
206770
208420
|
displayName?: string | undefined;
|
|
206771
208421
|
datasheetUrl?: string | undefined;
|
|
206772
208422
|
pinAttributes?: Record<string, {
|
|
208423
|
+
isInput?: boolean | undefined;
|
|
208424
|
+
isOutput?: boolean | undefined;
|
|
208425
|
+
isBidirectional?: boolean | undefined;
|
|
208426
|
+
isPassive?: boolean | undefined;
|
|
208427
|
+
canUseTriState?: boolean | undefined;
|
|
208428
|
+
isUsingTriState?: boolean | undefined;
|
|
208429
|
+
canUseOpenCollector?: boolean | undefined;
|
|
208430
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
208431
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
208432
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
206773
208433
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206774
208434
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206775
208435
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -210920,6 +212580,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210920
212580
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
210921
212581
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
210922
212582
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
212583
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
212584
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
212585
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
212586
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
212587
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
212588
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
212589
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
212590
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
212591
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
212592
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
210923
212593
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
210924
212594
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
210925
212595
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -210947,6 +212617,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210947
212617
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
210948
212618
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
210949
212619
|
}, "strip", z.ZodTypeAny, {
|
|
212620
|
+
isInput?: boolean | undefined;
|
|
212621
|
+
isOutput?: boolean | undefined;
|
|
212622
|
+
isBidirectional?: boolean | undefined;
|
|
212623
|
+
isPassive?: boolean | undefined;
|
|
212624
|
+
canUseTriState?: boolean | undefined;
|
|
212625
|
+
isUsingTriState?: boolean | undefined;
|
|
212626
|
+
canUseOpenCollector?: boolean | undefined;
|
|
212627
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
212628
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
212629
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
210950
212630
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210951
212631
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210952
212632
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -210974,6 +212654,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210974
212654
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
210975
212655
|
isGpio?: boolean | undefined;
|
|
210976
212656
|
}, {
|
|
212657
|
+
isInput?: boolean | undefined;
|
|
212658
|
+
isOutput?: boolean | undefined;
|
|
212659
|
+
isBidirectional?: boolean | undefined;
|
|
212660
|
+
isPassive?: boolean | undefined;
|
|
212661
|
+
canUseTriState?: boolean | undefined;
|
|
212662
|
+
isUsingTriState?: boolean | undefined;
|
|
212663
|
+
canUseOpenCollector?: boolean | undefined;
|
|
212664
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
212665
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
212666
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
210977
212667
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210978
212668
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210979
212669
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -211351,6 +213041,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
211351
213041
|
displayName?: string | undefined;
|
|
211352
213042
|
datasheetUrl?: string | undefined;
|
|
211353
213043
|
pinAttributes?: Record<string, {
|
|
213044
|
+
isInput?: boolean | undefined;
|
|
213045
|
+
isOutput?: boolean | undefined;
|
|
213046
|
+
isBidirectional?: boolean | undefined;
|
|
213047
|
+
isPassive?: boolean | undefined;
|
|
213048
|
+
canUseTriState?: boolean | undefined;
|
|
213049
|
+
isUsingTriState?: boolean | undefined;
|
|
213050
|
+
canUseOpenCollector?: boolean | undefined;
|
|
213051
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
213052
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
213053
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
211354
213054
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
211355
213055
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
211356
213056
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -212024,6 +213724,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
212024
213724
|
displayName?: string | undefined;
|
|
212025
213725
|
datasheetUrl?: string | undefined;
|
|
212026
213726
|
pinAttributes?: Record<string, {
|
|
213727
|
+
isInput?: boolean | undefined;
|
|
213728
|
+
isOutput?: boolean | undefined;
|
|
213729
|
+
isBidirectional?: boolean | undefined;
|
|
213730
|
+
isPassive?: boolean | undefined;
|
|
213731
|
+
canUseTriState?: boolean | undefined;
|
|
213732
|
+
isUsingTriState?: boolean | undefined;
|
|
213733
|
+
canUseOpenCollector?: boolean | undefined;
|
|
213734
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
213735
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
213736
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
212027
213737
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
212028
213738
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
212029
213739
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216164,6 +217874,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216164
217874
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
216165
217875
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
216166
217876
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
217877
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
217878
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
217879
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
217880
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
217881
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
217882
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
217883
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
217884
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
217885
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
217886
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
216167
217887
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
216168
217888
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
216169
217889
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -216191,6 +217911,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216191
217911
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
216192
217912
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
216193
217913
|
}, "strip", z.ZodTypeAny, {
|
|
217914
|
+
isInput?: boolean | undefined;
|
|
217915
|
+
isOutput?: boolean | undefined;
|
|
217916
|
+
isBidirectional?: boolean | undefined;
|
|
217917
|
+
isPassive?: boolean | undefined;
|
|
217918
|
+
canUseTriState?: boolean | undefined;
|
|
217919
|
+
isUsingTriState?: boolean | undefined;
|
|
217920
|
+
canUseOpenCollector?: boolean | undefined;
|
|
217921
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
217922
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
217923
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216194
217924
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216195
217925
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216196
217926
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216218,6 +217948,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216218
217948
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
216219
217949
|
isGpio?: boolean | undefined;
|
|
216220
217950
|
}, {
|
|
217951
|
+
isInput?: boolean | undefined;
|
|
217952
|
+
isOutput?: boolean | undefined;
|
|
217953
|
+
isBidirectional?: boolean | undefined;
|
|
217954
|
+
isPassive?: boolean | undefined;
|
|
217955
|
+
canUseTriState?: boolean | undefined;
|
|
217956
|
+
isUsingTriState?: boolean | undefined;
|
|
217957
|
+
canUseOpenCollector?: boolean | undefined;
|
|
217958
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
217959
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
217960
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216221
217961
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216222
217962
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216223
217963
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216595,6 +218335,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216595
218335
|
displayName?: string | undefined;
|
|
216596
218336
|
datasheetUrl?: string | undefined;
|
|
216597
218337
|
pinAttributes?: Record<string, {
|
|
218338
|
+
isInput?: boolean | undefined;
|
|
218339
|
+
isOutput?: boolean | undefined;
|
|
218340
|
+
isBidirectional?: boolean | undefined;
|
|
218341
|
+
isPassive?: boolean | undefined;
|
|
218342
|
+
canUseTriState?: boolean | undefined;
|
|
218343
|
+
isUsingTriState?: boolean | undefined;
|
|
218344
|
+
canUseOpenCollector?: boolean | undefined;
|
|
218345
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
218346
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
218347
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216598
218348
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216599
218349
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216600
218350
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -217266,6 +219016,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
217266
219016
|
displayName?: string | undefined;
|
|
217267
219017
|
datasheetUrl?: string | undefined;
|
|
217268
219018
|
pinAttributes?: Record<string, {
|
|
219019
|
+
isInput?: boolean | undefined;
|
|
219020
|
+
isOutput?: boolean | undefined;
|
|
219021
|
+
isBidirectional?: boolean | undefined;
|
|
219022
|
+
isPassive?: boolean | undefined;
|
|
219023
|
+
canUseTriState?: boolean | undefined;
|
|
219024
|
+
isUsingTriState?: boolean | undefined;
|
|
219025
|
+
canUseOpenCollector?: boolean | undefined;
|
|
219026
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
219027
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
219028
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
217269
219029
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
217270
219030
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
217271
219031
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221402,6 +223162,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221402
223162
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
221403
223163
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
221404
223164
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
223165
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
223166
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
223167
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
223168
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
223169
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
223170
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
223171
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
223172
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
223173
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
223174
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
221405
223175
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
221406
223176
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
221407
223177
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -221429,6 +223199,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221429
223199
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
221430
223200
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
221431
223201
|
}, "strip", z.ZodTypeAny, {
|
|
223202
|
+
isInput?: boolean | undefined;
|
|
223203
|
+
isOutput?: boolean | undefined;
|
|
223204
|
+
isBidirectional?: boolean | undefined;
|
|
223205
|
+
isPassive?: boolean | undefined;
|
|
223206
|
+
canUseTriState?: boolean | undefined;
|
|
223207
|
+
isUsingTriState?: boolean | undefined;
|
|
223208
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223209
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223210
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223211
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221432
223212
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221433
223213
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221434
223214
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221456,6 +223236,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221456
223236
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
221457
223237
|
isGpio?: boolean | undefined;
|
|
221458
223238
|
}, {
|
|
223239
|
+
isInput?: boolean | undefined;
|
|
223240
|
+
isOutput?: boolean | undefined;
|
|
223241
|
+
isBidirectional?: boolean | undefined;
|
|
223242
|
+
isPassive?: boolean | undefined;
|
|
223243
|
+
canUseTriState?: boolean | undefined;
|
|
223244
|
+
isUsingTriState?: boolean | undefined;
|
|
223245
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223246
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223247
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223248
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221459
223249
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221460
223250
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221461
223251
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221831,6 +223621,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221831
223621
|
displayName?: string | undefined;
|
|
221832
223622
|
datasheetUrl?: string | undefined;
|
|
221833
223623
|
pinAttributes?: Record<string, {
|
|
223624
|
+
isInput?: boolean | undefined;
|
|
223625
|
+
isOutput?: boolean | undefined;
|
|
223626
|
+
isBidirectional?: boolean | undefined;
|
|
223627
|
+
isPassive?: boolean | undefined;
|
|
223628
|
+
canUseTriState?: boolean | undefined;
|
|
223629
|
+
isUsingTriState?: boolean | undefined;
|
|
223630
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223631
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223632
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223633
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221834
223634
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221835
223635
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221836
223636
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -222501,6 +224301,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
222501
224301
|
displayName?: string | undefined;
|
|
222502
224302
|
datasheetUrl?: string | undefined;
|
|
222503
224303
|
pinAttributes?: Record<string, {
|
|
224304
|
+
isInput?: boolean | undefined;
|
|
224305
|
+
isOutput?: boolean | undefined;
|
|
224306
|
+
isBidirectional?: boolean | undefined;
|
|
224307
|
+
isPassive?: boolean | undefined;
|
|
224308
|
+
canUseTriState?: boolean | undefined;
|
|
224309
|
+
isUsingTriState?: boolean | undefined;
|
|
224310
|
+
canUseOpenCollector?: boolean | undefined;
|
|
224311
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
224312
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
224313
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
222504
224314
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
222505
224315
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
222506
224316
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|