

ARDUINO
IDE simple introduction
Arduino IDE 是基于 Arduino 硬件产品的软件编辑环境。作为 Arduino 的专业开发工具,IDE主要用于 Arduino 程序代码编写和开发,并将程序内容上传至 Arduino 板,实现代码运行。
Arduino IDE is a software editing environment based on Arduino hardware products. As a professional development tool of Arduino, IDE is mainly used for Arduino program code writing and development, and uploads the program content to Arduino board to realize code operation.
IDE是开源的设计工具,可以用于任何种类的 Arduino 板,且支持多种程序互动,如:Flash、Max/Msp、VVVV、PD、C、Processing等。
IDE is an open source design tool, which can be used for any kind of Arduino board, and supports a variety of program interaction, such as flash, Max / MSP, VV, PD, C, processing, etc.
打开 Arduino IDE 软件,并将 Arduino 板接入端口进行连接。程序编写完成后,可通过IDE对程序进行编译,并检查代码是否正确,编译完成后可上传至 Arduino 板,构建相应的硬件模组,即可实现 Arduino 工具的控制和使用。
Open the Arduino ide software and connect the Arduino board to the port. After the program is written, you can compile the program through the IDE and check whether the code is correct. After the compilation, you can upload it to the Arduino board and build the corresponding hardware module to realize the control and use of Arduino tools.
Case One 开关+LED
我们在课堂上尝试了这个案例,学习了 Arduino 中的基本数字I/O。在这种情况下,我们可以用一个按钮来控制 LED 灯。整个 demo 的逻辑是:LED 的亮灭由开关控制。开关按下,小灯亮;开关松开,小灯灭。如下是本案例的模拟电路图:
We tried this case in class to learn the basic digital I/O in Arduino. in this case we can use a button to control the LED light. The logic of the whole demo is: the LED is controlled by a switch to light up or down. When the switch is pressed, the small light is on; when the switch is released, the small light is off.The following is the analog circuit diagram for this case.


使用 Tinkercad 网站及 Fritzing 对课程案例电路进行模拟,并制作展示图和动态图。如下是本案例的代码:
Use the Tinkercad website and Fritzing to simulate the course case circuits and create display and dynamic diagrams.The following is the code of this case:
实际组装中,我们进行了两轮的迭代:
For the actual assembly, two iterations were performed.

BEFORE
我们按照功能要求组装电路,并进行测试
The WooHoo group is a small industrial design team with a not too long history and an out

NOW
我们根据老师的意见,规范了杜邦线的使用,依照规范调整杜邦线接线顺序,将红色接 5V,黑色接 GND,彩色线接信号接口,同时统一了线条长度,使视觉效果更规整和统一。
We standardized the use of Dupont wire according to the teacher's comments, and adjusted the order of Dupont wire wiring according to the specification, connecting red to 5V, black to GND, and colored wire to the signal interface, while unifying the line length to make the visual effect more neat and uniform.