20240314-0000

This commit is contained in:
2024-03-14 16:27:58 +08:00
parent 1dff8a3e23
commit 7d2aca55af
6 changed files with 25063 additions and 18 deletions
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because it is too large Load Diff
+16 -18
View File
@@ -47,34 +47,32 @@
<td>给单片机供电</td>
</tr>
<tr>
<td>OUT+</td>
<td>灯光电源正极</td>
</tr>
<tr>
<td>OUT-</td>
<td>LED-</td>
<td>灯光电源负极</td>
</tr>
<tr>
<td>COM</td>
<td>继电器控制端,使用飞线与灯泡正极相连</td>
<td>LDE+0</td>
<td>灯光电源正极0(默认连接点)</td>
</tr>
<tr>
<td>NO</td>
<td>继电器长开端,使用飞线与OUT+相连</td>
<td>LDE+1</td>
<td>灯光电源正极0(默认连接点)</td>
</tr>
</table>
## 5. 电路原理图
![电路原理图](SCH_Schematic1_1-P1_2024-03-02.png)
![电路原理图](SCH_光源控制板_V0.7_1-P1_2024-03-14.png)
## 6. 电路PCB图
![电路PCB图](PCB.png)
## 7. BOM表
[BOM表](BOM_Board1_Schematic1_2024-03-08.xlsx)
| 序号 | 数量 | 名称 | 备注 |
| ---- | ---- | ---- | ---- |
|1 |3 |5.08mm x 2P 接插件 |CN1,CN2,CN3|
|2 |4 |M3螺丝 |SCREW1,SCREW2,SCREW3,SCREW4|
|3 |1 |电压转换小板 24V转5V |U1|
|4 |1 |12V电压控制板 |U3|
|5 |1 |5V单路继电器模块 |U4|
| 序号 | 数量 | 名称 | 备注 | 链接 |
| ---- | ---- | ---- | ---- | ---- |
|1 |2 |5.08mm x 2P 压线端子||[购买链接]()|
|1 |2 |5.08mm x 3P 压线端子||[购买链接]()|
|2 |20 |M3铜柱 ||[购买链接]()|
|3 |2 |电压转换小板 24V转5V ||[购买链接](https://item.taobao.com/item.htm?_u=223gacpk9e24&id=672820218180)|
|4 |1 |12V电压控制板 ||[购买链接](https://detail.tmall.com/item.htm?_u=223gacpk20c2&id=679645885876&spm=a1z09.2.0.0.1d192e8ddSQMWO)|
|5 |1 |5V单路继电器模块 |(红板)1路 5V|[购买链接](https://detail.tmall.com/item.htm?abbucket=11&id=607753600593&ns=1&skuId=4438277830786&spm=a21n57.1.0.0.2d93523cnY5XwH)|
|6 |1 |Orangepi Zero2W开发板|OPi zero2W 4G+OPi zero2W 24P转接板|[购买链接](https://detail.tmall.com/item.htm?abbucket=11&id=607753600593&ns=1&skuId=4438277830786&spm=a21n57.1.0.0.2d93523cnY5XwH)|
|7 |1 |TF卡|128G 读速130MB/s|[购买链接](https://detail.tmall.com/item.htm?_u=e23gacpkd6e7&id=672970757487&spm=a1z09.2.0.0.5a362e8dioYwwM&skuId=5020682171825)|
Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

+80
View File
@@ -0,0 +1,80 @@
![logo](logo.png)
# 12V 卤素光源电路板
## 1. 设计目的
设计并制作一个12V 卤素光源电路板,该电路板能够提供稳定的12V电压,并能够控制卤素光源的开关。
## 2. 设计要求
- 电路板应能够提供范围在0V到12V之间的电压。
- 通过单片机发送PWM信号控制场效应管输出对应电压。
- 通过单片机发送高低电平控制继电器开关卤素光源的开关。
- 外部接入12V电压,通过5V降压小板提供稳定的5V电压给与单片机和继电器模块。
## 3. 使用模块
- 12V PWM MOS管降压模块 [购买链接](https://detail.tmall.com/item.htm?_u=223gacpk20c2&id=679645885876&spm=a1z09.2.0.0.1d192e8ddSQMWO)
- 12V转5V降压小板 [购买链接](https://item.taobao.com/item.htm?_u=223gacpk9e24&id=672820218180)
- 5V 继电器模块 [购买链接](https://detail.tmall.com/item.htm?abbucket=11&id=607753600593&ns=1&skuId=4438277830786&spm=a21n57.1.0.0.2d93523cnY5XwH)
## 4. 输入输出
<table>
<tr>
<td>输入</td>
<td>作用</td>
</tr>
<tr>
<td>+12V</td>
<td>主供电</td>
</tr>
<tr>
<td>PWM</td>
<td>调节电压</td>
</tr>
<tr>
<td>SW</td>
<td>控制开关</td>
</tr>
</table>
<table>
<tr>
<td>输出</td>
<td>作用</td>
</tr>
<tr>
<td>+5V</td>
<td>给单片机供电</td>
</tr>
<tr>
<td>OUT+</td>
<td>灯光电源正极</td>
</tr>
<tr>
<td>OUT-</td>
<td>灯光电源负极</td>
</tr>
<tr>
<td>COM</td>
<td>继电器控制端,使用飞线与灯泡正极相连</td>
</tr>
<tr>
<td>NO</td>
<td>继电器长开端,使用飞线与OUT+相连</td>
</tr>
</table>
## 5. 电路原理图
![电路原理图](SCH_Schematic1_1-P1_2024-03-02.png)
## 6. 电路PCB图
![电路PCB图](PCB.png)
## 7. BOM表
[BOM表](BOM_Board1_Schematic1_2024-03-08.xlsx)
| 序号 | 数量 | 名称 | 备注 | 链接 |
| ---- | ---- | ---- | ---- | ---- |
|1 |3 |5.08mm x 2P 接插件 |CN1,CN2,CN3|[购买链接]()|
|2 |4 |M3螺丝 |SCREW1,SCREW2,SCREW3,SCREW4|[购买链接]()|
|3 |2 |电压转换小板 24V转5V |U1|[购买链接]()|
|4 |1 |12V电压控制板 |U3|[购买链接]()|
|5 |1 |5V单路继电器模块 |U4|[购买链接]()|

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 63 KiB