【Follow me第二季第4期】-开箱贴+必做任务一-点灯串口打印
[复制链接]
【Follow me第二季第4期】-开箱贴+必做任务一-点灯/串口打印
极速发货,包装一如既往的好,静电袋+泡沫袋
拆开包装就是这次的主角:Nano RP2040 Connect
板子很小,下面有对比图,全是0201封装的电容电阻!
比我最小的esp32c3还有窄一点
下面开始做任务:必做任务一:搭建环境并开启第一步Blink三色LED / 串口打印Hello DigiKey & EEWorld!;
看看怎么添加板级支持包
在开发板管理里面按照这个包
选择对应的板子
然后可以愉快的开始开发了
首先要实现点亮rbg灯
我查阅手册发现rgb在那个wifi模块的引脚上,不会控制了,怎么办?有问题看文档,在上面arduino板子的页面中我找到了控制方式。
按照这份教程,尝试一下~
报错了,提示我没有安装这个库,好办,安装一次再试试就ok了
【Follow me第二季第4期】-开箱贴+必做任务一-点灯串口打印
上面是视频效果,代码如下
#include <WiFiNINA.h>
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
Serial.begin(9600); // 初始化串口通信
while (!Serial) {} // 等待串口连接
pinMode(LEDR, OUTPUT);
pinMode(LEDG, OUTPUT);
pinMode(LEDB, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
Serial.println("Hello DigiKey & EEWorld!"); // 打印信息
digitalWrite(LEDR, HIGH); //RED
delay(1000);
digitalWrite(LEDG, HIGH); //GREEN
delay(1000);
digitalWrite(LEDB, HIGH); //BLUE
delay(1000); // wait for a second
digitalWrite(LEDR, LOW); //RED
delay(1000); // wait for a second
digitalWrite(LEDG, LOW); //GREEN
delay(1000); // wait for a second
digitalWrite(LEDB, LOW); //BLUE
delay(1000); // wait for a second
}
在第一次使用上传没反应的时候,可以试试按下板子上的按键进入下载模式
这次任务就到这里了.
|