Arduino:修订间差异
(创建页面,内容为“Arduino是一款开源的硬件和软件电子平台,适用于制作交互式项目。 ==简介== ===时间轴=== ==基础知识== ==资源== ===官网=== * Arduino 官网:https://www.arduino.cc * Arduino 文档:https://docs.arduino.cc * Arduino 源代码:https://github.com/arduino ===网站=== ===视频教程=== *[https://www.bilibili.com/video/BV1YW411Z76E/ bilibili:《别再找了!这是有史以来最棒的Arduino教程系列》感谢佑來…”) |
无编辑摘要 |
||
第3行: | 第3行: | ||
===时间轴=== | ===时间轴=== | ||
== | |||
===相似=== | |||
==快速入门== | |||
*1.买一块Arduino版,如Arduino UNO R3。 | |||
*2.下载Arduino IDE,https://www.arduino.cc/en/software | |||
*3.打开Arduino IDE,写一个闪灯程序。 | |||
<syntaxhighlight lang="Arduino" > | |||
/* | |||
setup函数块,启动时执行一次, | |||
loop函数块,启动后一直循环执行。 | |||
*/ | |||
void setup() { | |||
pinMode(13,OUTPUT); | |||
} | |||
void loop() { | |||
digitalWrite(13, 1);//点亮LED | |||
delay(1000); | |||
digitalWrite(13, 0);//关闭LED | |||
delay(1000); | |||
} | |||
</syntaxhighlight> | |||
*4.将Arduino连接到电脑,板子选择Arduino UNO,选择连接的接口,点击upload(→图标),将程序上传到板子。 | |||
==硬件== | |||
Arduino 已经发布了 100 多种硬件产品:板、扩展板、载体、套件和其他配件。Arduino硬件主要包括Nano系列,MKR系列,Classic系列和Mega系列。 | |||
{{了解更多 | |||
|[https://www.arduino.cc/en/hardware Arduino 官网:硬件] | |||
}} | |||
===Classic系列=== | |||
Classic系列是Arduino项目的支柱,包括最受欢迎的Arduino UNO,以及Leonardo&Micro等其他经典产品。 | |||
{| class="wikitable" | |||
! 名称 | |||
! 描述 | |||
|- | |||
| Arduino UNO R4 Minima | |||
| | |||
|- | |||
| Arduino UNO R4 WiFi | |||
| | |||
|- | |||
| [https://docs.arduino.cc/hardware/uno-rev3 Arduino UNO R3] | |||
| | |||
|- | |||
| Arduino Leonardo | |||
| | |||
|- | |||
| Arduino UNO Mini Limited Edition | |||
| | |||
|- | |||
| Arduino Micro | |||
| | |||
|- | |||
| Arduino Zero | |||
| | |||
|- | |||
| Arduino UNO WiFi Rev2 | |||
| | |||
|} | |||
{{了解更多 | |||
|[https://www.arduino.cc/en/hardware Arduino 官网:硬件] | |||
}} | |||
===Nano系列=== | |||
Nano 系列是主要特点是小。 | |||
{| class="wikitable" | |||
! 名称 | |||
! 描述 | |||
|- | |||
|Arduino Nano 33 IoT | |||
| | |||
|- | |||
|Arduino Nano RP2040 Connect | |||
| | |||
|- | |||
|Arduino Nano ESP32 | |||
| | |||
|- | |||
|Arduino Nano 33 BLE Sense | |||
| | |||
|- | |||
|nano ble | |||
| | |||
|- | |||
| nano every | |||
| | |||
|- | |||
|nano | |||
| | |||
|- | |||
|nano motor carrier | |||
| | |||
|- | |||
|Arduino Nano 33 BLE | |||
| | |||
|- | |||
|Arduino Nano Every | |||
| | |||
|- | |||
|Arduino Nano | |||
| | |||
|- | |||
|Arduino Nano Motor Carrier | |||
| | |||
|} | |||
{{了解更多 | |||
|[https://www.arduino.cc/en/hardware Arduino 官网:硬件] | |||
}} | |||
===MKR系列=== | |||
{{了解更多 | |||
|[https://www.arduino.cc/en/hardware Arduino 官网:硬件] | |||
}} | |||
===Mega系列=== | |||
{{了解更多 | |||
|[https://www.arduino.cc/en/hardware Arduino 官网:硬件] | |||
}} | |||
===停产产品=== | |||
{{了解更多 | |||
|[https://www.arduino.cc/en/hardware Arduino 官网:硬件] | |||
}} | |||
==资源== | ==资源== |
2024年1月9日 (二) 07:14的版本
Arduino是一款开源的硬件和软件电子平台,适用于制作交互式项目。
简介
时间轴
相似
快速入门
- 1.买一块Arduino版,如Arduino UNO R3。
- 2.下载Arduino IDE,https://www.arduino.cc/en/software
- 3.打开Arduino IDE,写一个闪灯程序。
/*
setup函数块,启动时执行一次,
loop函数块,启动后一直循环执行。
*/
void setup() {
pinMode(13,OUTPUT);
}
void loop() {
digitalWrite(13, 1);//点亮LED
delay(1000);
digitalWrite(13, 0);//关闭LED
delay(1000);
}
- 4.将Arduino连接到电脑,板子选择Arduino UNO,选择连接的接口,点击upload(→图标),将程序上传到板子。
硬件
Arduino 已经发布了 100 多种硬件产品:板、扩展板、载体、套件和其他配件。Arduino硬件主要包括Nano系列,MKR系列,Classic系列和Mega系列。
了解更多 >> Arduino 官网:硬件
Classic系列
Classic系列是Arduino项目的支柱,包括最受欢迎的Arduino UNO,以及Leonardo&Micro等其他经典产品。
名称 | 描述 |
---|---|
Arduino UNO R4 Minima | |
Arduino UNO R4 WiFi | |
Arduino UNO R3 | |
Arduino Leonardo | |
Arduino UNO Mini Limited Edition | |
Arduino Micro | |
Arduino Zero | |
Arduino UNO WiFi Rev2 |
了解更多 >> Arduino 官网:硬件
Nano系列
Nano 系列是主要特点是小。
名称 | 描述 |
---|---|
Arduino Nano 33 IoT | |
Arduino Nano RP2040 Connect | |
Arduino Nano ESP32 | |
Arduino Nano 33 BLE Sense | |
nano ble | |
nano every | |
nano | |
nano motor carrier | |
Arduino Nano 33 BLE | |
Arduino Nano Every | |
Arduino Nano | |
Arduino Nano Motor Carrier |
了解更多 >> Arduino 官网:硬件
MKR系列
了解更多 >> Arduino 官网:硬件
Mega系列
了解更多 >> Arduino 官网:硬件
停产产品
了解更多 >> Arduino 官网:硬件
资源
官网
- Arduino 官网:https://www.arduino.cc
- Arduino 文档:https://docs.arduino.cc
- Arduino 源代码:https://github.com/arduino