记 Arduino 之 Hello World 篇(Getting Started)

Posted quanxi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记 Arduino 之 Hello World 篇(Getting Started)相关的知识,希望对你有一定的参考价值。

开发环境:Ardunio IDE(用于编译、上传运行代码)、VS Code 这种实时的文本编辑器(方便查看、编写代码,编写后再将代码复制到 Arduino IDE 中保存)。

Arduino 驱动:在 Win10 环境,应该会自动安装。插上 Arduino 稍后一会,就能直接上传代码。

打开 Arduino IDE,另存临时工程。用 VS Code 编辑 .ino 源文件:

int ledpin = 13;  //定义数字接口13,对应 Arduino I/O 13口,库中的 LED_BUILTIN 常量

void setup()
{
  // 通过串口收发数据
  Serial.begin(9600); //设置串口的波特率
  pinMode(ledpin, OUTPUT);  //设置13口为输出模式。使用 Arduino 上面的 I/O 口,都需要类似设置
}

void loop()
{
  // int val = Serial.read();  //读取 pc 发送给 Arduino 的数据
  digitalWrite(ledpin, HIGH); //13口输出高电平
  delay(500); //延迟0.5秒

  digitalWrite(ledpin, LOW);  //13口输出低电平
  delay(500);

  Serial.println("Hello World");
}

编写好保存后,用 Arduino IDE 上传代码后,只要 Arduino 通电,代码就会在主板上运行了。

最后打开 Arduino IDE 的串口工具,即可看到 Arduino 不断发送的数据;随便用个小灯泡,阴极接地,阳极接13口,可以看到小灯泡正在 Blink。

Arduino Reference:https://www.arduino.cc/reference/en/

以上是关于记 Arduino 之 Hello World 篇(Getting Started)的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp Arduino平台的Hello World计划

[基础篇]ESP8266-SDK教程之Hello World!

Linkit 7688 DUO 接上各种Arduino传感器和模块—扩展篇

物联网系统与CoAP之Hello,World

第一篇随笔 - Hello world!

Python入门教程第04篇 Hello World程序