Compare commits

..

4 Commits

11 changed files with 55 additions and 3 deletions

3
.idea/.gitignore generated vendored Normal file
View File

@ -0,0 +1,3 @@
# 默认忽略的文件
/shelf/
/workspace.xml

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

10
.idea/markdocs.iml generated Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.venv" />
</content>
<orderEntry type="jdk" jdkName="Python 3.13 (markdocs)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

7
.idea/misc.xml generated Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.13 (markdocs)" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.13 (markdocs)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml generated Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/markdocs.iml" filepath="$PROJECT_DIR$/.idea/markdocs.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

BIN
docs/img.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -1,4 +1,11 @@
## 软件安装 ## 软件安装
- [👇arduinoIDE(windows系统)](./installer/win/arduino-ide_2.3.3_Windows_64bit.exe) - [👇arduinoIDE(windows系统)](http://Hugemaker.quickconnect.cn/d/s/10ukAFnVfhVr5mp1V9PfCNJ3z6ioveTg/xjsn90jbO2miAYcc20e3xXF9V9JY0iZh-fL-gn2GqUAw)
- [👇arduinoIDE(mac系统)](./installer/mac/arduino-ide_2.3.6_macOS_64bit.dmg) - [👇arduinoIDE(mac系统)](http://Hugemaker.quickconnect.cn/d/s/13YHfpV0RZDcQjdsTEq1FlVPQqybmPcG/ScWuIXLGjquFAkJQiNQTW2WPwUzs4aje-vr8gTZKqUAw)
- 在安装过程中直接下一步即可
- 安装完成打开软件后会弹出安装驱动的选项,点击安装即可
## 软件界面设置 ## 软件界面设置
### 语言选择
- 选择`file --> Prefrences... --> Langunge选项`改为简体中文
- ![img.png](img.png)
### 库文件导入
-

5
main.py Normal file
View File

@ -0,0 +1,5 @@
import os
import subprocess
# 运行 mkdocs serve 命令
subprocess.run(['mkdocs', 'serve'])