1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
| { "Electrical": { "name": "Electrical", "description": "电气零部件 电子元器件 电路组件", "default_location": 0, "default_keywords": "electrical 电子元器件", "parent": null, "structural": true, "icon": "", "subcategories": { "Component": { "name": "Component", "description": "电子元器件", "default_location": 0, "default_keywords": "component 元器件", "parent": "Electrical", "structural": true, "icon": "", "subcategories": { "IC": { "name": "IC", "description": "集成电路", "default_location": 0, "default_keywords": "ic 集成电路", "parent": "Component", "structural": false }, "Resistor": { "name": "Resistor", "description": "电阻", "default_location": 0, "default_keywords": "resistor 电阻", "parent": "Component", "structural": false }, "Capacitor": { "name": "Capacitor", "description": "电容", "default_location": 0, "default_keywords": "capacitor 电容", "parent": "Component", "structural": false }, "Inductor": { "name": "Inductor", "description": "电感", "default_location": 0, "default_keywords": "inductor 电感", "parent": "Component", "structural": false }, "Diode": { "name": "Diode", "description": "二极管", "default_location": 0, "default_keywords": "diode 二极管", "parent": "Component", "structural": false }, "Transistor": { "name": "Transistor", "description": "晶体管 三极管 FET 晶闸管", "default_location": 0, "default_keywords": "transistor 晶体管", "parent": "Component", "structural": false }, "Connector": { "name": "Connector", "description": "连接器 接插件", "default_location": 0, "default_keywords": "connector 连接器", "parent": "Component", "structural": false }, "Switch": { "name": "Switch", "description": "开关 按键", "default_location": 0, "default_keywords": "switch 开关", "parent": "Component", "structural": false }, "Relay": { "name": "Relay", "description": "继电器", "default_location": 0, "default_keywords": "relay 继电器", "parent": "Component", "structural": false }, "Fuse": { "name": "Fuse", "description": "保险丝 保护器件", "default_location": 0, "default_keywords": "fuse 保险丝", "parent": "Component", "structural": false }, "Transformer": { "name": "Transformer", "description": "变压器", "default_location": 0, "default_keywords": "transformer 变压器", "parent": "Component", "structural": false }, "Crystal": { "name": "Crystal", "description": "晶振 晶体 陶振 谐振器 振荡器", "default_location": 0, "default_keywords": "crystal 晶振", "parent": "Component", "structural": false }, "Module": { "name": "Module", "description": "模块 模组", "default_location": 0, "default_keywords": "module 模块", "parent": "Component", "structural": false }, "Other": { "name": "Other", "description": "其它电子元器件", "default_location": 0, "default_keywords": "other 其它", "parent": "Component", "structural": false } } }, "Cable": { "name": "Cable", "description": "线束 线缆", "default_location": 0, "default_keywords": "cable 电缆", "parent": "Electrical", "structural": false }, "PCB": { "name": "PCB", "description": "PCB 印制电路板", "default_location": 0, "default_keywords": "pcb 电路板", "parent": "Electrical", "structural": false }, "PCBA": { "name": "PCBA", "description": "PCBA 已组装电路板", "default_location": 0, "default_keywords": "pcba 电路板", "parent": "Electrical", "structural": false }, "Other": { "name": "Other", "description": "其它电气零部件", "default_location": 0, "default_keywords": "other 其它", "parent": "Electrical", "structural": false } } } }
|