制造商零件编号 ABX00052
ARDUINO NANO RP2040 CONNECT
Arduino
所订产品一般在 7-10个工作日 内送达中国,具体时间取决于收货地点。
最低订购金额为人民币 300 元,顺丰快递免运费配送。
当用人民币下单时,按照国际贸易条款 DDP(DigiKey 支付关税、海关费用和当地税款)方式结算。
电汇预付
更多来自全授权合作伙伴的产品
下单后,从合作伙伴发货平均需要时间 1-3 天,也可能产生额外运费。可能另外收取运费。 实际发货时间请留意产品详情页、购物车和结账页面上的说明。
国际贸易结算方式:CPT(交货时支付关税、海关费用和适用 VAT/应付税金)
有关详情,请访问帮助和支持
The Arduino RP2040 Connect is an IoT development board that comes in the well-known Arduino Nano form factor. Recent articles investigated the main features of the RP2040 Connect and how to program it using OpenMV, a popular MicroPython IDE. This article outlines programming the RP2040 Connect using C++ and the classic Arduino IDE.
The Arduino RP2040 Connect is a fantastic IoT development board that features a uBlox NINA module.
Start by downloading the most recent version of the Arduino IDE. If you’ve previously uploaded the OpenMV firmware and MicroPython interpreter to your RP2040 Connect board, make sure that you put the development board into bootloader mode before uploading an Arduino sketch. Otherwise, the Arduino IDE won’t detect the board. Note that this step is only necessary if you’ve previously flashed the OpenMV firmware. You only need to do this once and only if you’ve previously uploaded custom firmware to the board. By default, the Arduino IDE detects the Arduino RP2040 Connect as soon as you connect it to your PC without you having to take any further action.
The Arduino RP2040 Connect board runs on the Mbed OS core for Nano form factor Arduinos. Therefore, you have to install the board support files before uploading a sketch to your Arduino RP2040 Connect. To get started, navigate to the Arduino IDE’s boards manager using the app’s top menu bar:
Open the boards manager using the Arduino IDE’s top menu bar.
In the boards manager pop-up window, search for “Arduino Mbed OS Nano Boards” and then install the following standalone package:
Install the highlighted package in the boards manager window.
Do not install the deprecated package. Once done, select RP2040 Connect from the list of supported devices in the Arduino IDE:
Select RP2040 Connect from the list of supported devices in the Arduino IDE.
Instead of using the simple blink example that typically runs on every Arduino board out of the box, I ran a test to check a few more advanced features of the RP2040 with the following short Arduino sketch:
#include <Arduino_LSM6DSOX.h>
#include <WiFiNINA.h>
float x, y, z;
void setup()
{
IMU.begin();
// Set up the RGB LED pins
pinMode(LEDR, OUTPUT);
pinMode(LEDG, OUTPUT);
pinMode(LEDB, OUTPUT);
}
void loop()
{
if (IMU.gyroscopeAvailable())
IMU.readGyroscope(x, y, z);
analogWrite(LEDR, abs(x) - 127);
analogWrite(LEDG, abs(y) - 127);
analogWrite(LEDB, abs(z) - 127);
}
This short test script uses the built-in IMU and RGB LED of the Arduino RP2040 Connect. The setup method initializes the IMU and the onboard LED. Then, the loop function reads the gyroscope data in every iteration and stores the results in the three float variables defined at the top of the sketch. Then, the Arduino sets the RGB values of the LED relative to its orientation in 3D space.
I subtracted 127 to reduce the brightness of the LED, and I used the absolute value returned by the IMU. Note, you have to install the LSM6DSOX library using the Arduino IDE’s built-in library manager to enable the board to communicate with the IMU. Also, include the WiFiNINA library, as the RGB LED is connected to the WiFi module.
You can find a complete API of supported libraries, the RP2040 pinout, and more practical tips and tricks on this official page.
The Arduino RP2040 Connect is a versatile IoT development board based on the RP2040 microcontroller. Besides MicroPython, you can also use C++ with the Arduino IDE to program the Arduino RP2040 Connect development board. To do so, use the IDE to install the board support files for the Mbed OS Arduino Nano boards. Once done, you can upload sketches to your Arduino RP2040 like you would do with any other Arduino. Note that you have to put the RP2040 Connect into bootloader mode when you first upload a sketch to it if you’ve previously installed the OpenMV MicroPython interpreter on the development board.
谢谢!
敬请关注收件箱中的 DigiKey 新闻与更新!
请输入电子邮件地址